
        :root {
            --white: #ffffff;
            --black: #0a0a0a;
            --off-white: #fafaf8;
            --light-gray: #f0efed;
            --mid-gray: #c8c5be;
            --dark-gray: #4a4a4a;
            --accent: #1a1a1a;
            --accent-red: #e63946;
            --lux-gold: #b08d57;
            --transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: transparent;
            width: 100%;
            max-width: 100vw;
        }
        html.lenis,
        html.lenis body {
            height: auto;
        }
        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }
        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }
        .lenis.lenis-stopped {
            overflow: hidden;
        }
        body {
            background: var(--white);
            color: var(--black);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            width: 100%;
            padding: 0 16px;
        }
        .section-tag {
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent-red);
            font-weight: 600;
            margin-bottom: 16px;
            display: block;
            font-family: 'Inter', sans-serif;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 5vw, 60px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -1px;
        }
        .categories-section {
            padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 40px);
            background: var(--white);
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }
        .categories-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(10px, 1.5vw, 16px);
            width: 100%;
        }
        .cat-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            cursor: pointer;
            background: var(--light-gray);
            border-radius: 6px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            border: 1px solid rgba(0, 0, 0, 0.04);
            width: 100%;
        }
        .cat-card:hover {
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.08);
        }
        .cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.4s cubic-bezier(0.23, 1, 0.32, 1);
            filter: grayscale(15%) brightness(0.92);
            display: block;
        }
        .cat-card:hover img {
            transform: scale(1.07);
            filter: grayscale(0%) brightness(1);
        }
        .cat-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.72) 0%,
                    rgba(0, 0, 0, 0.25) 35%,
                    rgba(0, 0, 0, 0.05) 60%,
                    transparent 100%);
            transition: all 0.5s ease;
            border-radius: 6px;
            pointer-events: none;
        }
        .cat-card:hover .cat-overlay {
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.78) 0%,
                    rgba(0, 0, 0, 0.3) 35%,
                    rgba(0, 0, 0, 0.08) 60%,
                    transparent 100%);
        }
        .cat-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: clamp(24px, 4vw, 44px) clamp(20px, 3.5vw, 38px);
            color: var(--white);
            transform: translateY(6px);
            transition: transform 0.5s ease;
            pointer-events: none;
        }
        .cat-card:hover .cat-content {
            transform: translateY(0);
        }
        .cat-label {
            font-size: 9px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 10px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }
        .cat-name {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4.5vw, 44px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 22px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        }
        .cat-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--white);
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.45);
            padding-bottom: 5px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s 0.1s ease;
            font-family: 'Inter', sans-serif;
            pointer-events: auto;
        }
        .cat-card:hover .cat-btn {
            opacity: 1;
            transform: translateY(0);
        }
        .cat-btn:hover {
            border-bottom-color: #fff;
            color: #fff;
        }
        @media (hover: none) {
            .cat-btn {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
        }

        /* ═══════════════ BESTSELLER CAROUSEL ═══════════════ */
        .bestseller-section {
            padding: clamp(60px, 10vw, 120px) 0;
            background: var(--off-white);
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }
        .bestseller-header {
            padding: 0 clamp(16px, 4vw, 40px);
            max-width: 1400px;
            margin: 0 auto clamp(30px, 5vw, 60px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
        }
        .bestseller-header .view-all-link {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            color: var(--black);
            border-bottom: 1px solid var(--black);
            padding-bottom: 3px;
            font-family: 'Inter', sans-serif;
            margin-top: 18px;
            transition: all 0.3s;
        }
        .bestseller-header .view-all-link:hover {
            color: var(--accent-red);
            border-bottom-color: var(--accent-red);
        }
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            width: 100%;
            max-width: 100vw;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            touch-action: pan-y;
            overscroll-behavior: none;
        }
        .carousel-wrapper:active {
            cursor: grabbing;
        }
        .carousel-wrapper.dragging {
            cursor: grabbing;
        }
        .carousel-track {
            display: flex;
            gap: clamp(12px, 2vw, 25px);
            padding: 0 clamp(14px, 4vw, 40px);
            width: max-content;
            transition: none;
            will-change: transform;
        }
        .carousel-track.smooth-return {
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .product-card {
            position: relative;
            background: transparent;
            width: clamp(240px, 28vw, 320px);
            flex-shrink: 0;
            max-width: 80vw;
        }
        .image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1.25;
            overflow: hidden;
            background-color: #fff;
            border-radius: 2px;
        }
        .image-container img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            display: block;
        }
        .img-hover {
            transform: translateX(-100%);
        }
        .product-card:hover .img-main {
            transform: translateX(100%);
        }
        .product-card:hover .img-hover {
            transform: translateX(0);
        }
        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(230, 57, 70, 0.95);
            backdrop-filter: blur(5px);
            color: white;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            z-index: 5;
            border-radius: 1px;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }
        .badge-bundle {
            background: rgba(176, 141, 87, 0.95);
        }
        .badge-tester {
            background: rgba(74, 74, 74, 0.88);
            letter-spacing: 1.5px;
        }
        .view-more-circle {
            position: absolute;
            width: clamp(60px, 7vw, 90px);
            height: clamp(60px, 7vw, 90px);
            background: rgba(26, 26, 26, 0.85);
            backdrop-filter: blur(8px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: clamp(7px, 0.8vw, 9px);
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            pointer-events: none;
            opacity: 0;
            transform: scale(0) translate(-50%, -50%);
            transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 10;
            font-family: 'Inter', sans-serif;
            will-change: transform, left, top;
            left: 0;
            top: 0;
            text-align: center;
            line-height: 1.2;
        }
        .product-card:hover .view-more-circle {
            opacity: 1;
            transform: scale(1) translate(-50%, -50%);
        }
        @media (hover: none) {
            .view-more-circle {
                display: none !important;
            }
        }
        .info {
            padding: clamp(12px, 1.8vw, 20px) 0;
            position: relative;
            border-top: 1px solid #e0e0e0;
            margin-top: clamp(8px, 1.2vw, 15px);
        }
        .title-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 6px;
        }
        /* Product card text: see components/product-card.css */
        .quantity {
            font-size: 11px;
            color: var(--black);
            opacity: 0.8;
            font-family: 'Inter', sans-serif;
            margin-bottom: 12px;
        }
        .add-to-cart-btn {
            width: 100%;
            padding: clamp(10px, 1.2vw, 12px) 0;
            background: transparent;
            border: 1px solid #d4d0c9;
            color: var(--black);
            font-family: 'Inter', sans-serif;
            font-size: clamp(9px, 0.9vw, 11px);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(4px);
            margin-top: 4px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .add-to-cart-btn:hover {
            background: var(--black);
            color: #fff;
            border-color: var(--black);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        .add-to-cart-btn:active {
            transform: translateY(0);
        }
        .add-to-cart-btn.added {
            pointer-events: none;
            background: var(--black);
            color: transparent;
            border-color: var(--black);
        }
        .add-to-cart-btn.added .btn-text {
            opacity: 0;
            transform: translateY(-8px);
            transition: all 0.3s ease;
        }
        .add-to-cart-btn .anim-package {
            position: absolute;
            right: -18px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            width: 16px;
            height: 16px;
            background: linear-gradient(145deg, #d9b870, #b8924a);
            border-radius: 3px;
            opacity: 0;
            pointer-events: none;
            z-index: 5;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        }
        .add-to-cart-btn.added .anim-package {
            animation: pkgEnter 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        @keyframes pkgEnter {
            0% {
                right: -18px;
                opacity: 1;
                transform: translateY(-50%) scale(0.6);
            }
            25% {
                right: 38%;
                opacity: 1;
                transform: translateY(-55%) scale(1);
            }
            45% {
                right: 38%;
                opacity: 1;
                transform: translateY(-55%) scale(0.9);
            }
            60% {
                right: 52%;
                opacity: 1;
                transform: translateY(-50%) scale(0.55);
            }
            80% {
                right: 55%;
                opacity: 0.6;
                transform: translateY(-50%) scale(0.2);
            }
            100% {
                right: 58%;
                opacity: 0;
                transform: translateY(-50%) scale(0);
            }
        }
        .add-to-cart-btn .anim-bag {
            position: absolute;
            left: -22px;
            top: 50%;
            transform: translateY(-50%) scale(0);
            width: 18px;
            height: 18px;
            opacity: 0;
            pointer-events: none;
            z-index: 4;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .add-to-cart-btn .anim-bag::before {
            content: '';
            display: block;
            width: 16px;
            height: 14px;
            border: 2px solid #fff;
            border-radius: 2px 2px 4px 4px;
            border-top: 2px solid #fff;
            position: relative;
        }
        .add-to-cart-btn .anim-bag::after {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 4px;
            border: 2px solid #fff;
            border-bottom: none;
            border-radius: 4px 4px 0 0;
        }
        .add-to-cart-btn.added .anim-bag {
            animation: bagAppear 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        @keyframes bagAppear {
            0% {
                left: -22px;
                opacity: 0;
                transform: translateY(-50%) scale(0.5);
            }
            20% {
                left: 30%;
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
            45% {
                left: 30%;
                opacity: 1;
                transform: translateY(-50%) scale(1.08);
            }
            70% {
                left: 30%;
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
            85% {
                left: 30%;
                opacity: 1;
                transform: translateY(-50%) scale(0.95);
            }
            100% {
                left: 35%;
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
        }
        .add-to-cart-btn .btn-text {
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
        }

        :root {
            --lux-gold: #b08d57;
            --lux-black: #0a0a0a;
            --lux-white: #ffffff;
            --lux-gray: #f9f9f9;
        }
        .gender-section {
            padding: 0;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }
        .gender-banner {
            position: relative;
            height: clamp(50vh, 70vw, 85vh);
            max-height: 85vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }
        .gender-banner img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1);
            display: block;
        }
        .gender-banner:hover img {
            transform: scale(1.05);
        }
        .gender-banner-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            color: var(--white);
            max-width: 900px;
            width: 100%;
        }
        .gender-banner-tag {
            font-size: clamp(7px, 0.8vw, 9px);
            letter-spacing: 0.6em;
            text-transform: uppercase;
            color: var(--lux-gold);
            font-weight: 700;
            margin-bottom: 24px;
            font-family: 'Inter', sans-serif;
        }
        .gender-banner-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(28px, 6vw, 90px);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }
        .gender-banner-btn {
            position: relative;
            display: inline-block;
            padding: clamp(12px, 1.5vw, 18px) clamp(28px, 3.5vw, 45px);
            font-size: clamp(9px, 0.9vw, 11px);
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: var(--lux-white);
            background: transparent;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
            transition: color 0.5s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .gender-banner-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--lux-white);
            z-index: -1;
            transition: left 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        }
        .gender-banner-btn:hover::before {
            left: 0;
        }
        .gender-banner-btn:hover {
            color: var(--lux-black);
        }
        .gender-products {
            padding: clamp(40px, 8vw, 100px) clamp(14px, 4vw, 40px);
            background: var(--lux-white);
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }
        .gender-products-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(18px, 3vw, 40px) clamp(10px, 2vw, 24px);
            width: 100%;
        }

        .premium-experience {
            padding: clamp(6px, 1vw, 10px) clamp(14px, 4vw, 40px);
            background-color: #fcfcfc;
            text-align: center;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }
        .section-intro {
            margin-bottom: clamp(50px, 8vw, 100px);
            position: relative;
            width: 100%;
            padding: 0 16px;
        }
        .section-intro .line-decor {
            width: 1px;
            height: clamp(40px, 5vw, 60px);
            background: linear-gradient(to bottom, transparent, var(--lux-gold));
            margin: 0 auto 30px;
        }
        .badge-premium {
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5em;
            color: var(--lux-gold);
            display: block;
            margin-bottom: 20px;
        }
        .main-heading-lux {
            font-family: 'Inter', sans-serif;
            font-size: clamp(22px, 3.5vw, 45px);
            font-weight: 200;
            color: var(--lux-black);
            text-transform: uppercase;
            letter-spacing: 8px;
        }
        .services-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0;
            max-width: 1440px;
            margin: 0 auto;
            border: 1px solid #eee;
            width: 100%;
        }
        .lux-card {
            background: #fff;
            padding: clamp(40px, 6vw, 80px) clamp(24px, 4vw, 50px);
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
            transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative;
            overflow: hidden;
        }
        .lux-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background-color: #f9f9f7;
            z-index: 0;
            transition: all 0.6s ease;
        }
        .lux-card:hover::before {
            height: 100%;
        }
        .lux-card-content {
            position: relative;
            z-index: 1;
        }
        .lux-icon-svg {
            width: 45px;
            height: 45px;
            margin-bottom: 40px;
            fill: none;
            stroke: var(--lux-gold);
            stroke-width: 1;
            transition: transform 0.6s ease;
        }
        .lux-card:hover .lux-icon-svg {
            transform: rotateY(180deg);
        }
        .lux-card-title {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--lux-black);
            margin-bottom: 25px;
        }
        .lux-card-text {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: #777;
            line-height: 2;
            letter-spacing: 0.5px;
            font-weight: 300;
        }

        /* ═══════════════ REVIEWS CAROUSEL ═══════════════ */
        .reviews-section {
            padding: clamp(60px, 10vw, 100px) clamp(14px, 4vw, 40px);
            background: var(--off-white);
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }
        .reviews-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }
        .reviews-display-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 5vw, 56px);
            font-weight: 400;
            margin-bottom: 15px;
            text-align: center;
            color: var(--black);
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            /* left: 2%; */
            transform: translateX(-50%);
            width: auto;
            max-width: 90vw;
        }
        .reviews-display-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--lux-gold);
            border-radius: 1px;
        }
        .reviews-carousel-wrapper {
            position: relative;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            margin-top: 30px;
            width: 100%;
            max-width: 100vw;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            touch-action: pan-y;
            overscroll-behavior: none;
        }
        .reviews-carousel-wrapper:active {
            cursor: grabbing;
        }
        .reviews-carousel-wrapper.dragging {
            cursor: grabbing;
        }
        .feedback-track {
            display: flex;
            gap: clamp(12px, 2vw, 24px);
            width: max-content;
            padding: 0 clamp(14px, 4vw, 40px);
            transition: none;
            will-change: transform;
        }
        .feedback-track.smooth-return {
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .review-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: clamp(20px, 3vw, 36px);
            width: clamp(240px, 30vw, 350px);
            flex-shrink: 0;
            transition: box-shadow 0.4s ease, transform 0.4s ease;
            max-width: 80vw;
        }
        .review-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }
        .review-stars {
            color: #f4b740;
            font-size: clamp(13px, 1.3vw, 16px);
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: clamp(12px, 1.2vw, 14px);
            line-height: 1.8;
            color: var(--dark-gray);
            margin-bottom: 24px;
            font-style: italic;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-gray);
            flex-shrink: 0;
        }
        .review-name {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .review-product {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--dark-gray);
            margin-top: 2px;
        }
        .review-date {
            font-size: 10px;
            color: var(--mid-gray);
            margin-left: auto;
        }

        /* ═══════════════ TRY TESTER BOX SECTION ═══════════════ */
        .tester-box-section {
            padding: clamp(50px, 9vw, 100px) clamp(14px, 4vw, 40px);
            background: linear-gradient(180deg, #fefdfb 0%, #f8f5ef 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100vw;
        }
        .tester-box-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -120px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(184, 146, 74, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .tester-box-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(184, 146, 74, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .tester-box-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }
        .tester-box-icon {
            width: 76px;
            height: 76px;
            margin: 0 auto 28px;
            background: rgba(176, 141, 87, 0.07);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(176, 141, 87, 0.2);
            transition: all 0.4s ease;
        }
        .tester-box-container:hover .tester-box-icon {
            background: rgba(176, 141, 87, 0.12);
            border-color: rgba(176, 141, 87, 0.35);
            box-shadow: 0 8px 30px rgba(176, 141, 87, 0.12);
        }
        .tester-box-icon svg {
            width: 34px;
            height: 34px;
            stroke: var(--lux-gold);
            fill: none;
            stroke-width: 1.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .tester-pricing-card {
            display: inline-flex;
            align-items: center;
            gap: clamp(10px, 1.5vw, 20px);
            background: #fff;
            padding: clamp(10px, 1.4vw, 16px) clamp(16px, 2.5vw, 28px);
            border-radius: 8px;
            border: 1px solid rgba(184, 146, 74, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 22px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 100%;
        }
        .tester-pricing-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        .tester-pricing-divider {
            width: 1px;
            height: 36px;
            background: #e8e4de;
        }
        .tester-pricing-value {
            font-family: 'Playfair Display', serif;
            font-size: clamp(20px, 2.2vw, 26px);
            font-weight: 500;
            color: var(--black);
            letter-spacing: 0.3px;
            line-height: 1;
        }
        .tester-pricing-label {
            font-size: clamp(8px, 0.85vw, 10px);
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--dark-gray);
            font-family: 'Inter', sans-serif;
        }
        .tester-box-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 4.5vw, 50px);
            font-weight: 400;
            color: var(--black);
            letter-spacing: -0.5px;
            margin-bottom: 14px;
            line-height: 1.12;
        }
        .tester-box-subtitle {
            font-size: clamp(12px, 1.2vw, 14px);
            color: var(--dark-gray);
            max-width: 580px;
            margin: 0 auto 10px;
            line-height: 1.75;
            font-family: 'Inter', sans-serif;
            padding: 0 10px;
        }
        .tester-box-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(176, 141, 87, 0.06);
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 500;
            color: var(--lux-gold);
            letter-spacing: 1px;
            margin-bottom: 32px;
            font-family: 'Inter', sans-serif;
            border: 1px solid rgba(176, 141, 87, 0.1);
            flex-wrap: wrap;
            justify-content: center;
        }
        .tester-box-highlight .dot {
            width: 7px;
            height: 7px;
            background: var(--lux-gold);
            border-radius: 50%;
            flex-shrink: 0;
        }
        .tester-box-image-wrap {
            max-width: clamp(280px, 40vw, 440px);
            margin: 0 auto 32px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
            aspect-ratio: 16/10;
            border: 1px solid rgba(0, 0, 0, 0.04);
            width: 100%;
        }
        .tester-box-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            display: block;
        }
        .tester-box-image-wrap:hover img {
            transform: scale(1.04);
        }
        .tester-box-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: clamp(13px, 1.4vw, 17px) clamp(32px, 4vw, 48px);
            background: var(--black);
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: clamp(9px, 0.9vw, 11px);
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            white-space: nowrap;
        }
        .tester-box-cta:hover {
            background: var(--lux-gold);
            transform: translateY(-3px);
            box-shadow: 0 16px 38px rgba(176, 141, 87, 0.3);
        }
        .tester-box-cta.buy-now-state {
            background: var(--accent-red);
        }
        .tester-box-cta.buy-now-state:hover {
            background: #c0392b;
            box-shadow: 0 16px 38px rgba(192, 57, 43, 0.35);
        }

        /* Selection Panel */
        .tester-selection-panel {
            display: none;
            max-width: 1000px;
            margin: 40px auto 0;
            background: #fff;
            border-radius: 8px;
            padding: clamp(24px, 4vw, 44px) clamp(16px, 3.5vw, 40px);
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: left;
            width: 100%;
        }
        .tester-selection-panel.open {
            display: block;
        }
        .tester-selection-panel .panel-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(20px, 2.4vw, 26px);
            font-weight: 400;
            margin-bottom: 6px;
            letter-spacing: -0.3px;
            color: var(--black);
        }
        .tester-selection-panel .panel-subtitle {
            font-size: 12px;
            color: var(--dark-gray);
            margin-bottom: 28px;
            letter-spacing: 1px;
            font-family: 'Inter', sans-serif;
        }
        .tester-category-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
            gap: clamp(12px, 2vw, 24px);
            margin-bottom: 20px;
            width: 100%;
            align-items: start;
        }
        .tester-category-col {
            min-width: 0;
        }
        .tester-cat-label {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--lux-gold);
            margin-bottom: 14px;
            display: block;
        }
        .tester-perfume-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 6px;
            cursor: pointer;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            margin-bottom: 4px;
            background: #fafaf8;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }
        .tester-perfume-option:hover {
            background: #fff;
            border-color: rgba(176, 141, 87, 0.25);
            box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
        }
        .tester-perfume-option.selected {
            background: rgba(176, 141, 87, 0.06);
            border-color: var(--lux-gold);
        }
        .tester-perfume-option .checkbox-custom {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #d4d0c9;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }
        .tester-perfume-option.selected .checkbox-custom {
            border-color: var(--lux-gold);
            background: var(--lux-gold);
        }
        .tester-perfume-option.is-unavailable {
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }
        .tester-perfume-option.is-unavailable .option-name em {
            font-style: normal;
            font-size: 10px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #a33;
        }
        .tester-perfume-option.selected .checkbox-custom::after {
            content: '✓';
            color: #fff;
            font-size: 10px;
            font-weight: 700;
        }
        .tester-perfume-option .option-name {
            font-size: 13px;
            font-weight: 500;
            color: var(--black);
            font-family: 'Inter', sans-serif;
        }
        .tester-counter-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .tester-counter {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 500;
            color: var(--black);
        }
        .tester-counter span {
            color: var(--lux-gold);
        }

        footer {
            background: #111;
            color: #bbb;
            padding: clamp(50px, 8vw, 100px) clamp(14px, 4vw, 40px) clamp(20px, 3vw, 40px);
            font-family: 'Inter', sans-serif;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }
        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: clamp(24px, 4vw, 60px);
            padding-bottom: clamp(30px, 5vw, 60px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-brand-logo {
            font-family: 'Playfair Display', serif;
            font-size: clamp(22px, 2.8vw, 32px);
            font-weight: 500;
            letter-spacing: 5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #fff;
        }
        .footer-brand-logo span {
            color: #e63946;
        }
        .footer-desc {
            font-size: clamp(11px, 1.1vw, 13px);
            line-height: 1.9;
            color: #999;
            margin-bottom: 30px;
            max-width: 320px;
        }
        .footer-social {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            border-radius: 50%;
            transition: all 0.3s;
            -webkit-tap-highlight-color: transparent;
        }
        .social-link:hover {
            background: #fff;
            color: #111;
            border-color: #fff;
        }
        .footer-col-title {
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 28px;
            color: #fff;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 14px;
        }
        .footer-col ul li a {
            font-size: 13px;
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            padding-top: clamp(20px, 3vw, 40px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            font-size: 11px;
            color: #777;
            letter-spacing: 1px;
        }
        .footer-legal {
            display: flex;
            gap: clamp(12px, 2vw, 24px);
            flex-wrap: wrap;
        }
        .footer-legal a {
            font-size: 11px;
            color: #777;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .footer-legal a:hover {
            color: #fff;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s ease, transform 0.9s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════ FULL RESPONSIVE BREAKPOINTS ═══════════════ */
        @media (max-width: 1200px) {
            .gender-products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px 18px;
            }
        }
        @media (max-width: 992px) {
            .gender-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 22px 16px;
            }
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .services-wrapper {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                border: none;
                gap: 0;
            }
            .tester-category-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .product-card {
                width: clamp(200px, 35vw, 280px);
            }
            .review-card {
                width: clamp(200px, 38vw, 300px);
            }
        }
        @media (max-width: 768px) {
            .categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 10px;
            }
            .cat-content {
                padding: 20px 18px;
            }
            .gender-products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px 12px;
            }
            .gender-banner {
                height: clamp(40vh, 55vw, 60vh);
            }
            .gender-banner-title {
                font-size: clamp(22px, 6vw, 35px);
            }
            .services-wrapper {
                grid-template-columns: 1fr;
                border: none;
                gap: 12px;
            }
            .lux-card {
                border: 1px solid #eee;
                padding: 40px 24px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            .product-card {
                width: 100%;
                max-width: 100%;
            }
            .image-container {
                aspect-ratio: 1 / 1.2;
            }
            .gender-products {
                padding: 40px 16px;
            }
            .categories-section {
                padding: 60px 16px;
            }
            .bestseller-section {
                padding: 60px 0;
            }
            .bestseller-header {
                margin-bottom: 32px;
            }
            .reviews-section {
                padding: 60px 16px;
            }
            .carousel-track {
                padding: 0 16px;
                gap: 12px;
            }
            .feedback-track {
                padding: 0 16px;
                gap: 14px;
            }
            .tester-box-section {
                padding: 50px 16px;
            }
            .tester-selection-panel {
                padding: 20px 16px;
            }
            .tester-category-row {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .tester-pricing-card {
                gap: 8px;
                padding: 10px 16px;
                flex-direction: column;
            }
            .tester-pricing-divider {
                width: 80%;
                height: 1px;
            }
            .tester-pricing-value {
                font-size: 18px;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .review-card {
                width: clamp(200px, 60vw, 280px);
                padding: 20px 16px;
            }
            .review-text {
                font-size: 12px;
            }
            .cat-name {
                font-size: clamp(22px, 6vw, 32px);
            }
        }
        @media (max-width: 500px) {
            .gender-products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px 8px;
                max-width: 100%;
            }
            .product-card {
                max-width: 100%;
            }
            .image-container {
                aspect-ratio: 1 / 1.1;
            }
            .gender-products {
                padding: 30px 10px;
            }
            .categories-section {
                padding: 40px 10px;
            }
            .categories-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .bestseller-section {
                padding: 40px 0;
            }
            .bestseller-header {
                padding: 0 12px;
                margin-bottom: 24px;
            }
            .reviews-section {
                padding: 40px 10px;
            }
            .review-card {
                width: 220px;
                max-width: 72vw;
                padding: 16px 14px;
            }
            .carousel-track {
                padding: 0 10px;
                gap: 10px;
            }
            .feedback-track {
                padding: 0 10px;
                gap: 10px;
            }
            .product-card {
                max-width: 65vw;
            }
            .section-title {
                font-size: 22px;
            }
            .gender-products-grid .product-card .image-container {
                aspect-ratio: 1 / 1.05;
            }
            .info {
                padding: 10px 0;
                margin-top: 6px;
            }
            .tester-box-section {
                padding: 36px 10px;
            }
            .tester-box-title {
                font-size: 22px;
            }
            .tester-box-subtitle {
                font-size: 11px;
            }
            .add-to-cart-btn {
                font-size: 9px;
                letter-spacing: 1.5px;
                padding: 8px 0;
            }
            .cat-card {
                aspect-ratio: 3/4.5;
            }
            .cat-name {
                font-size: 18px;
            }
            .cat-label {
                font-size: 7px;
                letter-spacing: 3px;
            }
            .cat-btn {
                font-size: 8px;
                letter-spacing: 2px;
            }
            .gender-banner-btn {
                padding: 10px 20px;
                font-size: 8px;
                letter-spacing: 2px;
            }
            .section-tag {
                font-size: 8px;
                letter-spacing: 3px;
            }
            .tester-pricing-value {
                font-size: 16px;
            }
            .tester-pricing-label {
                font-size: 8px;
            }
            .tester-box-cta {
                padding: 12px 24px;
                font-size: 8px;
                letter-spacing: 2px;
            }
            .footer-col-title {
                font-size: 9px;
                letter-spacing: 3px;
            }
            .footer-col ul li a {
                font-size: 12px;
            }
            .badge {
                font-size: 9px;
                padding: 4px 8px;
                top: 8px;
                left: 8px;
            }
            .view-more-circle {
                width: 50px;
                height: 50px;
                font-size: 7px;
                letter-spacing: 1px;
            }
        }
        @media (max-width: 380px) {
            .gender-products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px 6px;
            }
            .product-card {
                max-width: 100%;
            }
            .image-container {
                aspect-ratio: 1 / 1;
            }
            .quantity {
                font-size: 9px;
            }
            .add-to-cart-btn {
                font-size: 8px;
                padding: 7px 0;
                letter-spacing: 1px;
            }
            .cat-name {
                font-size: 16px;
            }
            .cat-content {
                padding: 14px 12px;
            }
            .gender-banner-title {
                font-size: 18px;
            }
            .gender-banner-tag {
                font-size: 6px;
                letter-spacing: 0.3em;
            }
            .review-card {
                width: 180px;
                max-width: 68vw;
                padding: 12px 10px;
            }
            .review-text {
                font-size: 11px;
                line-height: 1.6;
            }
            .review-stars {
                font-size: 12px;
            }
            .tester-box-title {
                font-size: 19px;
            }
            .tester-pricing-value {
                font-size: 14px;
            }
            .tester-pricing-label {
                font-size: 7px;
            }
            .section-title {
                font-size: 19px;
            }
            .main-heading-lux {
                font-size: 16px;
                letter-spacing: 4px;
            }
            .reviews-display-title {
                font-size: 20px;
            }
            .badge {
                font-size: 7px;
                padding: 3px 6px;
                top: 5px;
                left: 5px;
                letter-spacing: 0.5px;
            }
            .view-more-circle {
                width: 44px;
                height: 44px;
                font-size: 6px;
            }
        }

        /* ═══════════════ BEST SELLER CAROUSEL CARD FIX ═══════════════ */
        /* Prevent carousel product cards from stretching full-screen on phones, foldables & tablets */
        @media (max-width: 992px) {
            .carousel-track .product-card {
                width: clamp(200px, 42vw, 300px) !important;
                max-width: 52vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.25 !important;
            }
        }
        @media (max-width: 768px) {
            .carousel-track .product-card {
                width: clamp(180px, 46vw, 280px) !important;
                max-width: 58vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.22 !important;
            }
        }
        @media (max-width: 540px) {
            .carousel-track .product-card {
                width: clamp(170px, 50vw, 260px) !important;
                max-width: 62vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.18 !important;
            }
        }
        @media (max-width: 420px) {
            .carousel-track .product-card {
                width: clamp(155px, 54vw, 240px) !important;
                max-width: 66vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.12 !important;
            }
        }
        @media (max-width: 360px) {
            .carousel-track .product-card {
                width: clamp(145px, 56vw, 220px) !important;
                max-width: 68vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.08 !important;
            }
        }
        @media (max-width: 320px) {
            .carousel-track .product-card {
                width: clamp(135px, 58vw, 200px) !important;
                max-width: 70vw !important;
                flex-shrink: 0;
            }
            .carousel-track .product-card .image-container {
                aspect-ratio: 1 / 1.05 !important;
            }
        }
    