        :root {
            --primary: #bf0000;
            --primary-dark: #d71b1b;
            --primary-light: #e65f53;
            --accent: #be0000;
            --accent-light: #cb1b00;
            --light: #F8F9FA;
            --white: #FFFFFF;
            --dark: #2C3E50;
            --gray: #718096;
            --light-gray: #E2E8F0;
            
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 32px;
            --radius-full: 9999px;
            
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            /* New standard color for Buy Now button */
            --buy-now-color: #bd0000;
            --buy-now-hover: #aa0000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Trust Badges Section */
        .trust-badges-section {
            padding: 6rem 0;
            background: linear-gradient(145deg, #ffffff 0%, #fcf5f3 100%);
            position: relative;
            overflow: hidden;
        }

        .trust-badges-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(191,0,0,0.03) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .trust-badges-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(203,27,0,0.03) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .trust-badges-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Premium Glass-Morphism Badge Card */
        .trust-badge {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            text-align: left;
            box-shadow: 0 15px 35px rgba(191,0,0,0.08);
            transition: var(--transition);
            border: 1px solid rgba(191,0,0,0.1);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.2rem;
            position: relative;
            overflow: hidden;
        }

        .trust-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
            z-index: -1;
        }

        .trust-badge:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(191,0,0,0.15);
            border-color: var(--primary-light);
            background: rgba(255, 255, 255, 0.95);
        }

        /* Icon with modern gradient and glow */
        .trust-badge-icon {
            width: 5.5rem;
            height: 5.5rem;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.2rem;
            margin-bottom: 0.2rem;
            box-shadow: 0 15px 25px -8px rgba(191,0,0,0.3);
            transition: var(--transition);
        }

        .trust-badge:hover .trust-badge-icon {
            transform: scale(1.05) rotate(5deg);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }

        .trust-badge-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.6rem;
            letter-spacing: -0.02em;
        }

        .trust-badge-content p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
            font-weight: 400;
        }

        /* Attractive Image Banner within Trust Section */
        .trust-image-banner {
            grid-column: 1 / -1;
            margin-top: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .trust-image-card {
            background: linear-gradient(145deg, #fceae8, #fff5f2);
            border-radius: var(--radius-xl);
            padding: 2rem 3rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(191,0,0,0.1);
            backdrop-filter: blur(8px);
        }

        .trust-image-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 50%;
        }

        .trust-image-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .trust-image-content p {
            font-size: 1.1rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .trust-image-visual {
            max-width: 45%;
            display: flex;
            justify-content: flex-end;
        }

        .trust-image-visual img {
            max-height: 150px;
            width: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            transition: var(--transition);
            border: 4px solid white;
        }

        .trust-image-visual img:hover {
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(191,0,0,0.2);
        }


        /* Responsive trust badges */
                @media (max-width: 768px) {
            .trust-badges-section { padding: 4rem 0; }
            .trust-badges-container { gap: 1.8rem; }
            .trust-badge { padding: 2rem 1.5rem; }
            .trust-badge-icon { width: 5rem; height: 5rem; font-size: 2rem; }
            .trust-image-card { flex-direction: column; text-align: center; padding: 2rem; }
            .trust-image-content { max-width: 100%; margin-bottom: 1.5rem; }
            .trust-image-visual { max-width: 100%; justify-content: center; }
        }

        @media (max-width: 480px) {
            .trust-badges-container { grid-template-columns: 1fr; }
            .trust-image-content h4 { font-size: 1.8rem; }
        }


        .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .contact-item i {
        color: var(--primary);
        font-size: 1.25rem;
        margin-top: 0.25rem;
        min-width: 1.5rem;
    }

    .contact-item h5 {
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    .footer-newsletter {
        margin-top: 3rem;
        padding: 2.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .newsletter-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .newsletter-content h4 {
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 1rem;
    }

    .newsletter-content p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .newsletter-form .form-group {
        display: flex;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto 1rem;
    }

    .newsletter-form input {
        flex: 1;
        padding: 0.875rem 1.25rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        color: var(--white);
        font-size: 1rem;
        transition: var(--transition);
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.15);
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .newsletter-note {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
    }

    .footer-bottom {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .payment-methods {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .payment-methods span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
    }

    .payment-icons {
        display: flex;
        gap: 1rem;
    }

    .payment-icons i {
        font-size: 1.75rem;
        color: rgba(255, 255, 255, 0.7);
        transition: var(--transition);
    }

    .payment-icons i:hover {
        color: var(--white);
        transform: translateY(-2px);
    }

    .footer-bottom .copyright {
        text-align: center;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        padding-top: 0;
        border-top: none;
    }

    .footer-bottom .copyright a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-bottom .copyright a:hover {
        color: var(--primary);
    }

    /* Responsive Footer */
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .footer-col h4 {
            font-size: 1.25rem;
        }

        .footer-newsletter {
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .newsletter-form .form-group {
            flex-direction: column;
        }

        .newsletter-form .btn-primary {
            width: 100%;
        }

        .payment-methods {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .footer-bottom {
            gap: 1rem;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .contact-item i {
            margin-bottom: 0.5rem;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }
    }

    /* Footer Links Animation */
    .footer-links a {
        position: relative;
        overflow: hidden;
    }

    .footer-links a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--primary);
        transition: var(--transition);
    }

    .footer-links a:hover::after {
        width: 100%;
    }

    /* Newsletter Form Focus */
    .newsletter-form input:focus {
        box-shadow: 0 0 0 3px rgba(93, 156, 89, 0.3);
    }


        @media (min-width: 640px) { .container { padding: 0 1.5rem; } }
        @media (min-width: 1024px) { .container { padding: 0 2rem; } }
        @media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            z-index: 1000;
            padding: 0.75rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.75rem;
            color: var(--primary);
        }

        /* Countdown Timer - Small size at bottom of header */
        .countdown-timer {
            position: absolute;
            bottom: -25px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--accent), var(--accent));
            color: var(--white);
            padding: 0.25rem 0;
            font-size: 0.75rem;
            font-weight: 600;
            text-align: center;
            z-index: 999;
            box-shadow: var(--shadow-sm);
        }

        .countdown-timer span {
            font-weight: 700;
            font-size: 0.8rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link.active {
            color: var(--primary);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .action-btn {
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius-md);
            border: none;
            background: var(--light);
            color: var(--dark);
            font-size: 1.25rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .action-btn:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--accent);
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 600;
            min-width: 1.5rem;
            height: 1.5rem;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section {
            margin-top: 80px;
            padding: 3rem 0 5rem;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        @media (max-width: 640px) {
            .hero-section {
                padding: 2rem 0 3rem;
                margin-top: 70px;
            }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: start;
        }

        @media (min-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1.1fr 1fr;
                gap: 4rem;
                align-items: center;
            }
        }

        /* Modern Image Gallery Container */
        .gallery-container {
            position: relative;
            width: 100%;
            margin: 0 auto;
        }

        /* Main Image Container - Perfect Size for All Screens */
        .main-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            aspect-ratio: 1/1;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: var(--white);
            box-shadow: var(--shadow-xl);
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 1.5rem;
        }

        /* Desktop: Slightly taller image */
        @media (min-width: 768px) {
            .main-image-container {
                aspect-ratio: 4/5;
                max-width: 550px;
            }
        }

        /* Large Screens: Perfect laptop size */
        @media (min-width: 1024px) {
            .main-image-container {
                aspect-ratio: 3/4;
                height: 500px;
                max-width: 100%;
                width: 100%;
            }
        }

        /* Extra large screens */
        @media (min-width: 1400px) {
            .main-image-container {
                height: 550px;
            }
        }

        /* Mobile-specific sizing - Smaller image on phones */
        @media (max-width: 767px) {
            .main-image-container {
                max-width: 100%;
                aspect-ratio: 1/1;
                margin-bottom: 1rem;
            }
        }

        /* Very small phones */
        @media (max-width: 480px) {
            .main-image-container {
                aspect-ratio: 4/5;
                margin-bottom: 0.75rem;
            }
        }

        /* Main Image with Gradient Overlay */
        .main-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .main-image-container:hover .main-image {
            transform: scale(1.05);
        }

        /* Modern Gradient Overlay */
        .image-gradient {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(93, 156, 89, 0.1) 0%,
                rgba(93, 156, 89, 0.05) 25%,
                transparent 50%,
                rgba(0, 0, 0, 0.1) 100%
            );
            pointer-events: none;
        }

        /* Floating Badge with Animation */
        .image-badge {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            animation: float 3s ease-in-out infinite;
        }

        @media (max-width: 480px) {
            .image-badge {
                top: 1rem;
                left: 1rem;
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* Modern Navigation Arrows */
        .arrow-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 1.125rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            opacity: 1;
            z-index: 20;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(10px);
        }

        @media (min-width: 768px) {
            .arrow-nav {
                width: 3.5rem;
                height: 3.5rem;
                font-size: 1.25rem;
                opacity: 0;
            }
            
            .main-image-container:hover .arrow-nav {
                opacity: 1;
            }
        }

        .arrow-nav:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(93, 156, 89, 0.3);
        }

        .arrow-nav.prev {
            left: 1rem;
        }

        .arrow-nav.next {
            right: 1rem;
        }

        @media (max-width: 480px) {
            .arrow-nav {
                width: 2.5rem;
                height: 2.5rem;
                font-size: 1rem;
            }
            
            .arrow-nav.prev {
                left: 0.5rem;
            }
            
            .arrow-nav.next {
                right: 0.5rem;
            }
        }

        /* Thumbnail Gallery Wrapper */
        .thumbnail-gallery-wrapper {
            position: relative;
            overflow: hidden;
        }

        /* Modern Thumbnail Gallery - Always show exactly 3 */
        .thumbnail-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            padding: 0.5rem;
        }

        @media (max-width: 480px) {
            .thumbnail-gallery {
                gap: 0.5rem;
            }
        }

        /* Modern Thumbnail Cards */
        .thumbnail-card {
            position: relative;
            aspect-ratio: 1/1;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        .thumbnail-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .thumbnail-card.active {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(93, 156, 89, 0.2);
        }

        .thumbnail-card.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(93, 156, 89, 0.2), transparent);
            z-index: 2;
        }

        .thumbnail-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .thumbnail-card:hover .thumbnail-image {
            transform: scale(1.1);
        }

        /* Swipe Indicator */
        .swipe-indicator {
            text-align: center;
            color: var(--gray);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: none;
        }

        @media (max-width: 768px) {
            .swipe-indicator {
                display: block;
            }
        }

        /* Zoom Indicator */
        .zoom-indicator {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: var(--radius-full);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        @media (max-width: 768px) {
            .zoom-indicator {
                opacity: 1;
                transform: translateY(0);
                bottom: 1rem;
                right: 1rem;
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }
        }

        .main-image-container:hover .zoom-indicator {
            opacity: 1;
            transform: translateY(0);
        }

        /* Image Counter */
        .image-counter {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.75);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 500;
            z-index: 10;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 480px) {
            .image-counter {
                bottom: 1rem;
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }
        }

        /* Full Size Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .image-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            position: relative;
            max-width: 95%;
            max-height: 95%;
            width: auto;
            height: auto;
        }

        .modal-image {
            max-width: 100%;
            max-height: 95vh;
            object-fit: contain;
            border-radius: var(--radius-md);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Modern Modal Close Button */
        .modal-close {
            position: absolute;
            top: -60px;
            right: 0;
            background: var(--white);
            border: none;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: var(--radius-full);
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .modal-close {
                top: 1rem;
                right: 1rem;
                width: 3rem;
                height: 3rem;
                font-size: 1.25rem;
            }
        }

        .modal-close:hover {
            background: var(--accent);
            color: var(--white);
            transform: rotate(90deg) scale(1.1);
        }

        /* Modern Modal Navigation */
        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 4rem;
            height: 4rem;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
            z-index: 20;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-lg);
        }

        @media (max-width: 768px) {
            .modal-nav {
                width: 3rem;
                height: 3rem;
                font-size: 1.25rem;
            }
        }

        .modal-nav:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-50%) scale(1.1);
            opacity: 1;
        }

        .modal-nav.prev {
            left: -70px;
        }

        @media (max-width: 1024px) {
            .modal-nav.prev {
                left: 20px;
            }
        }

        @media (max-width: 480px) {
            .modal-nav.prev {
                left: 10px;
            }
        }

        .modal-nav.next {
            right: -70px;
        }

        @media (max-width: 1024px) {
            .modal-nav.next {
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .modal-nav.next {
                right: 10px;
            }
        }

        /* Modern Modal Counter */
        .modal-counter {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.75rem 2rem;
            border-radius: var(--radius-full);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .modal-counter {
                bottom: -50px;
                font-size: 0.875rem;
                padding: 0.5rem 1.5rem;
            }
        }

        /* Product Info */
        .product-info {
            padding: 2rem;
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 640px) {
            .product-info {
                padding: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .product-info {
                padding: 3rem;
            }
        }

        .product-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: var(--radius-full);
        }

        .product-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 480px) {
            .product-title {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }
        }

        .product-description {
            font-size: 1.125rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        @media (max-width: 480px) {
            .product-description {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
        }

        .rating-summary {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(93, 156, 89, 0.05), rgba(255, 107, 107, 0.05));
            border-radius: var(--radius-lg);
        }

        @media (max-width: 480px) {
            .rating-summary {
                padding: 1rem;
                margin-bottom: 1.5rem;
                gap: 1rem;
            }
        }

        .stars {
            color: #FFD700;
            display: flex;
            gap: 0.25rem;
            font-size: 1.5rem;
        }

        @media (max-width: 480px) {
            .stars {
                font-size: 1.25rem;
            }
        }

        .rating-text {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.25rem;
        }

        @media (max-width: 480px) {
            .rating-text {
                font-size: 1.125rem;
            }
        }

        .rating-count {
            color: var(--gray);
            font-size: 1rem;
        }

        .price-section {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--light-gray);
        }

        @media (max-width: 480px) {
            .price-section {
                margin-bottom: 1.5rem;
                padding-bottom: 1.5rem;
            }
        }

        .current-price {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            gap: 1rem;
        }

        .original-price {
            font-size: 1.5rem;
            color: var(--gray);
            text-decoration: line-through;
        }

        @media (max-width: 480px) {
            .original-price {
                font-size: 1.25rem;
            }
        }

        .discount-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 1rem;
            font-weight: 600;
        }

        @media (max-width: 480px) {
            .discount-badge {
                padding: 0.4rem 1rem;
                font-size: 0.875rem;
            }
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        @media (max-width: 480px) {
            .quantity-selector {
                margin-bottom: 2rem;
                gap: 1rem;
            }
        }

        .qty-btn {
            width: 3.5rem;
            height: 3.5rem;
            border: 2px solid var(--light-gray);
            background: var(--white);
            border-radius: var(--radius-md);
            color: var(--primary);
            font-size: 1.75rem;
            cursor: pointer;
            transition: var(--transition);
        }

        @media (max-width: 480px) {
            .qty-btn {
                width: 3rem;
                height: 3rem;
                font-size: 1.5rem;
            }
        }

        .qty-btn:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .qty-input {
            width: 6rem;
            height: 3.5rem;
            text-align: center;
            border: 2px solid var(--light-gray);
            background: var(--white);
            border-radius: var(--radius-md);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        @media (max-width: 480px) {
            .qty-input {
                width: 5rem;
                height: 3rem;
                font-size: 1.25rem;
            }
        }

        .action-buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        @media (min-width: 640px) {
            .action-buttons {
                grid-template-columns: 1fr 1fr;
            }
        }

        .btn {
            height: 4rem;
            border-radius: var(--radius-md);
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            border: none;
        }

        @media (max-width: 480px) {
            .btn {
                height: 3.5rem;
                font-size: 1rem;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--buy-now-color), var(--buy-now-hover));
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .stock-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(93, 156, 89, 0.05), rgba(76, 175, 80, 0.05));
            border-radius: var(--radius-lg);
            margin-top: 2rem;
        }

        @media (max-width: 480px) {
            .stock-info {
                padding: 1rem;
                margin-top: 1.5rem;
            }
        }

        .stock-dot {
            width: 14px;
            height: 14px;
            background: #ec1717;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
            }

            .mobile-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--white);
                box-shadow: var(--shadow-xl);
                padding: 5rem 2rem 2rem;
                transition: var(--transition);
                z-index: 999;
            }

            .mobile-nav.active {
                left: 0;
            }

            .mobile-nav .nav-link {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid var(--light-gray);
                font-size: 1.125rem;
            }

            .mobile-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .mobile-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        /* User Experience Videos Section */
        .videos-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        /* Swipe Container for Videos */
        .videos-swipe-container {
            position: relative;
            overflow: hidden;
            margin: 0 -1rem;
            padding: 0 1rem;
        }

        .videos-swipe-wrapper {
            display: flex;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .video-swipe-slide {
            flex: 0 0 100%;
            padding: 0 0.5rem;
            box-sizing: border-box;
        }

        @media (min-width: 769px) {
            .videos-swipe-container {
                margin: 0;
                padding: 0;
            }
            
            .videos-swipe-wrapper {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
                gap: 2.5rem;
                transform: none !important;
            }
            
            .video-swipe-slide {
                flex: none;
                padding: 0;
            }
        }

        .video-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            height: 100%;
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--dark);
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .video-card:hover .video-thumbnail {
            transform: scale(1.1);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 5rem;
            height: 5rem;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 1.75rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button:hover {
            background: var(--primary);
            color: var(--white);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-content {
            padding: 2.5rem;
        }

        .video-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .video-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--light-gray);
        }

        .video-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-avatar {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 0.875rem;
        }

        .author-name {
            font-weight: 500;
            color: var(--dark);
        }

        .video-duration {
            color: var(--gray);
            font-size: 0.875rem;
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
            align-items: center;
            justify-content: center;
        }

        .video-modal-content {
            position: relative;
            width: 90%;
            max-width: 1000px;
            aspect-ratio: 16/9;
        }

        .video-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: var(--radius-md);
        }

        .video-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--white);
            border: none;
            width: 3rem;
            height: 3rem;
            border-radius: var(--radius-full);
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-modal-close:hover {
            background: var(--accent);
            color: var(--white);
            transform: rotate(90deg);
        }

        @media (max-width: 768px) {
            .videos-section {
                padding: 3rem 0;
            }
            
            .video-modal-close {
                top: 1rem;
                right: 1rem;
            }
        }

        /* Real Results Section */
        .results-section {
            padding: 4rem 0;
            background: var(--white);
        }

        /* Swipe Container for Mobile */
        .swipe-container {
            position: relative;
            overflow: hidden;
            margin: 0 -1rem;
            padding: 0 1rem;
        }

        .swipe-wrapper {
            display: flex;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .swipe-slide {
            flex: 0 0 100%;
            padding: 0 0.5rem;
            box-sizing: border-box;
        }

        @media (min-width: 769px) {
            .swipe-container {
                margin: 0;
                padding: 0;
            }
            
            .swipe-wrapper {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
                gap: 2.5rem;
                transform: none !important;
            }
            
            .swipe-slide {
                flex: none;
                padding: 0;
            }
        }

        .result-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            height: 100%;
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .result-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1/1;
            overflow: hidden;
            background: var(--dark);
        }

        .result-before, .result-after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.6s ease;
            
        }

        .result-before {
            opacity: 1;
            z-index: 1;
        }

        .result-after {
            opacity: 0;
            z-index: 2;
        }

        .result-card:hover .result-before {
            opacity: 0;
        }

        .result-card:hover .result-after {
            opacity: 1;
        }

        .result-labels {
            position: absolute;
            top: 1.5rem;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 1.5rem;
            z-index: 3;
        }

        .result-label {
            padding: 0.5rem 1.25rem;
            background: rgba(0, 0, 0, 0.85);
            color: var(--white);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            backdrop-filter: blur(4px);
        }

        .result-content {
            padding: 2.5rem;
        }

        .result-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .result-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .result-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--light-gray);
        }

        .stat {
            text-align: center;
            flex: 1;
        }

        .stat-value {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.5rem;
        }

        /* Swipe Navigation */
        .swipe-nav {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .swipe-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--light-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .swipe-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .swipe-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--light-gray);
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 1rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: var(--shadow-md);
        }

        @media (max-width: 768px) {
            .swipe-arrow {
                display: flex;
            }
            
            .results-section {
                padding: 3rem 0;
            }
            
            .result-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        .swipe-arrow.prev {
            left: 0.5rem;
        }

        .swipe-arrow.next {
            right: 0.5rem;
        }

        .swipe-arrow:hover {
            background: var(--primary);
            color: var(--white);
        }

        @media (min-width: 769px) {
            .swipe-nav {
                display: none;
            }
        }

        /* Features Section */
        .features-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .feature-icon {
            width: 6rem;
            height: 6rem;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            margin: 0 auto 2rem;
        }

        .feature-title {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1.125rem;
        }

        @media (max-width: 768px) {
            .features-section {
                padding: 3rem 0;
            }
        }

        /* Reviews Section - HORIZONTAL SWIPE WITH 2 PER ROW */
        .reviews-section {
            padding: 4rem 0;
            background: var(--white);
        }

        /* Reviews Swipe Container */
        .reviews-swipe-container {
            position: relative;
            overflow: hidden;
            margin: 0 -1rem;
            padding: 0 1rem;
        }

        .reviews-swipe-wrapper {
            display: flex;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            gap: 0.5rem;
        }

        /* Each slide contains 2 review cards */
        .reviews-swipe-slide {
            flex: 0 0 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            padding: 0 0.5rem;
            box-sizing: border-box;
        }

        /* Mobile: 1 card per slide */
        @media (max-width: 768px) {
            .reviews-swipe-slide {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Tablet: 2 cards per slide */
        @media (min-width: 769px) and (max-width: 1024px) {
            .reviews-swipe-slide {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
            }
        }

        /* Desktop: 2 cards per slide with larger gaps */
        @media (min-width: 1025px) {
            .reviews-swipe-slide {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Small Review Card */
        .review-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--light-gray);
            transition: var(--transition);
            height: 100%;
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        /* Smaller Review Header */
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Smaller Avatar */
        .reviewer-avatar {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .reviewer-info h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .reviewer-info p {
            font-size: 0.75rem;
            color: var(--gray);
        }

        /* Smaller Rating Stars */
        .review-rating {
            color: #FFD700;
            font-size: 0.875rem;
        }

        /* Smaller Review Content */
        .review-content {
            color: var(--dark);
            line-height: 1.6;
            margin-bottom: 1rem;
            font-style: italic;
            font-size: 0.875rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Reviews Navigation */
        .reviews-swipe-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--light-gray);
            border-radius: var(--radius-full);
            color: var(--primary);
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: var(--shadow-md);
        }

        .reviews-swipe-arrow:hover {
            background: var(--primary);
            color: var(--white);
        }

        .reviews-swipe-arrow.prev {
            left: 0.5rem;
        }

        .reviews-swipe-arrow.next {
            right: 0.5rem;
        }

        /* Hide arrows on mobile when there's only 1 slide */
        @media (max-width: 768px) {
            .reviews-swipe-arrow {
                display: none;
            }
        }

        /* Show arrows on tablet and desktop */
        @media (min-width: 769px) {
            .reviews-swipe-arrow {
                display: flex;
            }
        }

        .reviews-swipe-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
        }

        .reviews-swipe-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--light-gray);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-swipe-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .reviews-section {
                padding: 3rem 0;
            }
            
            .review-card {
                padding: 1.25rem;
            }
            
            .reviews-swipe-container {
                margin: 0 -0.5rem;
                padding: 0 0.5rem;
            }
        }

        /* Add Review Section */
        .add-review-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .review-form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--radius-xl);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
        }

        .message {
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .message.success {
            background: rgba(93, 156, 89, 0.1);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .message.error {
            background: rgba(255, 107, 107, 0.1);
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .message i {
            font-size: 1.5rem;
        }

        .review-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 640px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .form-group label {
            font-weight: 600;
            color: var(--dark);
            font-size: 1.125rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem 1.5rem;
            border: 2px solid var(--light-gray);
            border-radius: var(--radius-md);
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background: var(--light);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(93, 156, 89, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Star Rating */
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.5rem;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            cursor: pointer;
            color: var(--light-gray);
            font-size: 2.5rem;
            transition: var(--transition);
            padding: 0.5rem;
        }

        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #FFD700;
        }

        .char-count {
            text-align: right;
            font-size: 0.875rem;
            color: var(--gray);
            margin-top: 0.5rem;
        }

        .char-count #charCount {
            font-weight: 600;
            color: var(--primary);
        }

        .submit-review-btn {
            align-self: flex-start;
            padding: 1rem 3rem;
            font-size: 1.25rem;
            height: auto;
        }

        @media (max-width: 768px) {
            .add-review-section {
                padding: 3rem 0;
            }
            
            .review-form-container {
                padding: 2rem;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
            color: var(--white);
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .cta-description {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--white);
            color: var(--primary);
            padding: 1.25rem 3rem;
            border-radius: var(--radius-full);
            font-size: 1.25rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-xl);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 3rem 0;
            }
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 2rem;
            }
        }

        .section-tag {
            display: inline-block;
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 40rem;
            margin: 0 auto;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .section-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
        }

        /* ===== RELATED PRODUCTS SECTION (NEW) ===== */
        .related-products-section {
            padding: 5rem 0;
            background: linear-gradient(145deg, #ffffff 0%, #fffbfa 100%);
            position: relative;
            overflow: hidden;
        }

        .related-products-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(191,0,0,0.02) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        /* ===== UPDATED RELATED PRODUCTS SECTION - FULL IMAGE COVER ===== */
.related-products-section {
    padding: 5rem 0;
    background: linear-gradient(145deg, #ffffff 0%, #fffbfa 100%);
    position: relative;
    overflow: hidden;
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191,0,0,0.02) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Desktop Grid - Hidden on Mobile */
.related-products-desktop-grid {
    display: block;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Product Card - Full Image Cover */
.related-product-card {
    grid-column: span 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(191,0,0,0.08);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

/* Image Container - FULL COVER */
.related-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(145deg, #fceae8, #fff5f2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image - FULL COVER, NO PADDING */
.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes image fill entire container */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.08);
}

.related-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.related-product-content {
    padding: 1.5rem 1.25rem;
    text-align: center;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3rem;
}

.related-product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.related-current-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.related-original-price {
    font-size: 0.95rem;
    color: var(--gray);
    text-decoration: line-through;
}

.related-product-rating {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.related-product-rating span {
    color: var(--gray);
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.related-product-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, var(--buy-now-color), var(--buy-now-hover));
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.related-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

/* Placeholder Cards */
.related-product-card--placeholder {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

/* ===== MOBILE SWIPE CAROUSEL ===== */
.related-products-mobile-swipe {
    display: none;
    position: relative;
    margin-top: 2rem;
}

.related-swipe-container {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
}

.related-swipe-wrapper {
    display: flex;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    gap: 1rem;
}

.related-swipe-slide {
    flex: 0 0 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
}

/* Swipe Navigation Arrows */
.related-swipe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.related-swipe-arrow:hover {
    background: var(--primary);
    color: var(--white);
}

.related-swipe-arrow.prev {
    left: 0.5rem;
}

.related-swipe-arrow.next {
    right: 0.5rem;
}

/* Swipe Dots */
.related-swipe-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.related-swipe-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-swipe-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .related-products-desktop-grid {
        display: none; /* Hide desktop grid on mobile */
    }
    
    .related-products-mobile-swipe {
        display: block; /* Show mobile swipe carousel */
    }
    
    .related-products-section {
        padding: 3rem 0;
    }
    
    .related-product-content {
        padding: 1.25rem 1rem;
    }
    
    .related-product-name {
        font-size: 1rem;
        min-height: 2.8rem;
        margin-bottom: 0.5rem;
    }
    
    .related-current-price {
        font-size: 1.2rem;
    }
    
    .related-product-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .related-swipe-arrow {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .related-product-content {
        padding: 1rem 0.75rem;
    }
    
    .related-product-name {
        font-size: 0.95rem;
        min-height: 2.6rem;
    }
    
    .related-current-price {
        font-size: 1.1rem;
    }
    
    .related-original-price {
        font-size: 0.8rem;
    }
    
    .related-product-rating {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .related-product-btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
}
        /* Footer */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 5rem 0 2.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-col h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .footer-col p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.125rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 3rem;
            height: 3rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.125rem;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            padding: 1.25rem 2rem;
            background: var(--dark);
            color: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            z-index: 1001;
            animation: slideIn 0.3s ease;
            max-width: 350px;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .toast.success {
            background: var(--primary);
        }

        .toast.error {
            background: var(--accent);
        }

        .toast.info {
            background: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .toast {
                right: 1rem;
                left: 1rem;
                max-width: none;
            }
        }

        /* Focus States */
        *:focus {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
