.products-navigation {
    padding: 20px 0;
    background: rgba(19, 19, 19, 0.95);
    margin-bottom: 20px;
}

.nav-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-link {
    flex: 1;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: translateY(-5px);
}

.link-content {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-link:hover .link-content {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.4);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.link-content h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 5px;
}

.link-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.product-sections {
    scroll-behavior: smooth;
}

.product-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    scroll-margin-top: 20px;
}

.product-details {
    max-width: 1000px;
    text-align: center;
    padding: 40px 20px;
}

.product-details h2 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37 0%, #FFE5A0 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite linear;
    background-size: 200% 100%;
}

.product-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.product-details h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.explore-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #A3862B 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

@media screen and (max-width: 768px) {
    .products-navigation {
        padding: 15px;
        position: relative;
        z-index: 10;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .product-link {
        width: 100%;
    }

    .link-content {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
        border-width: 1px;
        min-height: 70px;
    }

    .product-icon {
        width: 40px;
        height: 40px;
        margin: 0 15px 0 0;
        flex-shrink: 0;
    }

    .product-text {
        text-align: left;
        flex-grow: 1;
    }

    .link-content h3 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .link-content p {
        font-size: 13px;
        margin: 0;
    }

    /* Add touch feedback */
    .product-link:active .link-content {
        background: rgba(212, 175, 55, 0.2);
        transform: scale(0.98);
    }

    /* Remove hover effects on mobile */
    .product-link:hover {
        transform: none;
    }

    .explore-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .product-details h2 {
        font-size: 48px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .product-details h2::after {
        width: 60px;
        height: 3px;
    }
}

@media screen and (max-width: 360px) {
    .products-navigation {
        padding: 10px;
    }

    .link-content {
        padding: 12px;
    }

    .product-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

    .link-content h3 {
        font-size: 16px;
    }

    .link-content p {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .product-details h2 {
        font-size: 36px;
        padding-bottom: 15px;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .product-details h2::after {
        width: 40px;
        height: 2px;
    }
}

.background {
    width: 100%;
    height: 100%;
    background-color: rgb(19, 19, 19);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 1;
}

.cart-item-quantity button {
    padding: 11px 20px !important;
}

.main-container {
    width: 100%;
    margin-top: 50px;
    position: relative;
    z-index: 3;
}

/* ----------------------------------------- */

.mobile-paragraph-container {
    display: none;
}

.advertisment-carousel {
    width: 100%;
    margin: 50px 0;
}

.carousel-wrapper {
    width: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: visible;
    position: relative;
}

.progress {
    width: 0;
    height: 100%;
    background: white;
    position: relative;
}

.progress.active {
    animation: progress 4s linear forwards;
}

.progress-indicator {
    position: absolute;
    right: -12px;
    top: -17px;
    width: 35px;
    height: 35px;
    transform: scale(0);
    transition: transform 0.3s;
    z-index: 5;
    pointer-events: none;
}

.progress.active .progress-indicator {
    transform: scale(1);
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* --------------------------------------------------- */

.other-details-container {
    width: 100%;
    min-height: 300px;
    display: flex;
    position: relative;
    gap: 40px;
}

.both-details {
    width: 50%;
    position: relative;
}

.first-part-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.first-part-details > h1 {
    color: white;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #D4AF37 0%, #FFE5A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-bottom: 10px;
}

.first-part-details > h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #D4AF37;
    border-radius: 2px;
}

.first-part-details > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    max-width: 500px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid rgba(212, 175, 55, 0.3);
}

.first-part-details > button {
    width: fit-content;
    background: linear-gradient(135deg, #D4AF37 0%, #A3862B 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.first-part-details > button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.first-part-details > button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.first-part-details > button:hover::before {
    left: 100%;
}

.second-part-details {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.second-part-details > img {
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
    position: absolute;
    right: 0;
}

.second-part-details::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@media screen and (max-width: 1200px) {
    .first-part-details > h1 {
        font-size: 48px;
    }
}

@media screen and (max-width: 992px) {
    .other-details-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .both-details {
        width: 100%;
    }

    .first-part-details {
        align-items: center;
        text-align: center;
    }

    .first-part-details > h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .first-part-details > p {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .second-part-details {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .first-part-details > h1 {
        font-size: 36px;
    }

    .first-part-details > p {
        font-size: 16px;
    }

    .first-part-details > button {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* -------------------------------------------------------- */

.partners-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.partner-card {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.partner-image {
    width: 200px;
    height: 200px;
    position: relative;
    flex-shrink: 0;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.partner-image::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-image::after {
    opacity: 1;
    transform: translate(-10px, -10px);
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-info .role {
    color: #C0C0C0;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.partner-info .quote {
    color: white;
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.partner-info .quote::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 48px;
    color: #D4AF37;
    opacity: 0.5;
}

.partner-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .partner-image {
        width: 150px;
        height: 150px;
    }

    .partner-info .quote {
        padding-left: 0;
        font-size: 16px;
    }

    .partner-social {
        justify-content: center;
    }
}

/* ---------------------------------------------- */
@media screen and (max-width: 769px) {
    .progress-bar {
        width: 100px;
    }
    .second-part-details {
        width: 0% !important;
    }
    .first-part-details {
        width: 100% !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    .first-part-details > h1 {
        font-size: 38px;
    }
    .first-part-details > p {
        font-size: 17px;
    }

    .second-part-details {
        display: none;
    }
}