/* PREMIUM RESET & VARS */
        :root {
            --color-black: #050505;
            --color-deep-blue: #08121C;
            --color-warm-grey: #D8D6D2;
            --color-platinum: #B8BCBE;
            --color-charcoal: #5C5D64;
            --color-accent: #C7BCAE;
            --color-white: #FCFBFA;
            --font-primary: 'Space Grotesk', sans-serif;
            --font-secondary: 'EB Garamond', serif;
            --font-mono: 'JetBrains Mono', monospace;
            --cubic: cubic-bezier(0.16, 1, 0.3, 1);
            --transition-slow: 0.8s var(--cubic);
            --transition-normal: 0.5s var(--cubic);
            --transition-fast: 0.3s var(--cubic);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-black);
            background-color: var(--color-white);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            cursor: none;
            /* Custom cursor */
        }

        /* CUSTOM CURSOR */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--color-black);
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, background 0.2s;
            mix-blend-mode: difference;
        }

        .cursor-ring {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(0, 0, 0, 0.2);
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
            mix-blend-mode: difference;
        }

        .cursor-hover .cursor-dot {
            background: var(--color-white);
        }

        .cursor-hover .cursor-ring {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-color: transparent;
            backdrop-filter: blur(2px);
        }

        /* REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s var(--cubic);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* TYPOGRAPHY */
        h1,
        h2,
        h3 {
            font-weight: 400;
            line-height: 1.1;
        }

        .font-serif {
            font-family: var(--font-secondary);
        }

        .font-mono {
            font-family: var(--font-mono);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        a {
            color: inherit;
            text-decoration: none;
            cursor: none;
        }

        /* TOP MARQUEE */
        .top-bar {
            background: var(--color-black);
            color: var(--color-white);
            padding: 8px 0;
            overflow: hidden;
            white-space: nowrap;
            font-size: 11px;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .marquee {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }

        .marquee span {
            margin-right: 50px;
            font-weight: 500;
            opacity: 0.9;
        }

        .marquee b {
            font-weight: 700;
            color: var(--color-accent);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* GLASS HEADER */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252, 251, 250, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all var(--transition-fast);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 40px;
        }

        .header.scrolled {
            padding: 15px 40px;
            background: rgba(252, 251, 250, 0.9);
        }

        .logo {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-main {
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .logo-sub {
            font-size: 9px;
            letter-spacing: 4px;
            font-weight: 600;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a {
            position: relative;
            overflow: hidden;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--color-black);
            transform: translateX(-101%);
            transition: transform var(--transition-normal);
        }

        .nav-links a:hover::after {
            transform: translateX(0);
        }

        .nav-badge {
            background: #a98d75;
            color: #fff;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 12px;
            margin-left: 5px;
            vertical-align: top;
            letter-spacing: 0.5px;
        }

        .has-mega-menu {
            /* Support hovering over the parent to show absolute child */
            height: 100%;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 1px solid rgba(0,0,0,0.05);
            z-index: 100;
        }

        .has-mega-menu:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mega-card {
            position: relative;
            display: block;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: #f5f5f5;
        }

        .mega-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mega-card:hover img {
            transform: scale(1.05);
        }

        .mega-card-label {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: #fff;
            padding: 12px 10px;
            text-align: center;
            font-size: 11px;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #000;
            transition: background 0.3s;
        }

        .mega-card:hover .mega-card-label {
            background: #000;
            color: #fff;
        }

        .header-icons {
            display: flex;
            gap: 20px;
        }

        .icon {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.5;
            transition: transform var(--transition-fast);
        }

        .icon:hover {
            transform: scale(1.1);
        }

        /* HERO - PARALLAX */
        .hero {
            position: relative;
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--color-warm-grey);
        }

        .hero-img-wrap {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.85);
            transform: scale(1.1);
            animation: heroZoomIn 15s ease-out forwards;
        }

        @keyframes heroZoomIn {
            to {
                transform: scale(1);
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--color-white);
            max-width: 800px;
        }

        .hero-title {
            font-size: clamp(4rem, 8vw, 8rem);
            font-style: italic;
            line-height: 0.9;
            margin-bottom: 20px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .hero-title span {
            display: inline-block;
            transform: translateY(100%);
            animation: maskUp 1s var(--cubic) forwards 0.2s;
        }

        .hero-subtitle {
            font-size: 20px;
            letter-spacing: 2px;
            font-weight: 300;
            opacity: 0;
            animation: fadeUp 1s var(--cubic) forwards 0.6s;
        }

        @keyframes maskUp {
            to {
                transform: translateY(0);
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* PAYMENT LOGOS ROW */
        .payment-methods-row {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 40px 5%;
            background: #fff;
            border-top: 1px solid #eaeaea;
        }
        .payment-logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 50px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            background: #fff;
            padding: 8px;
            transition: transform 0.2s;
        }
        .payment-logo-card:hover {
            transform: translateY(-3px);
            border-color: #ddd;
        }
        .payment-logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* CIRCULAR CATEGORIES - RESPONSIVE & CENTERED */
        .section-pads {
            padding: 80px 5%;
        }

        .cat-scroll {
            display: flex;
            gap: clamp(15px, 4vw, 40px);
            justify-content: center;
            flex-wrap: wrap;
            padding-bottom: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
            cursor: pointer;
            text-align: center;
        }

        .cat-image {
            width: clamp(75px, 16vw, 130px);
            height: clamp(75px, 16vw, 130px);
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 12px;
            position: relative;
            background: #f4f4f4;
            transition: transform var(--transition-fast);
        }

        .cat-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .cat-item:hover .cat-image {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .cat-item:hover .cat-image img {
            transform: scale(1.05);
        }

        .cat-item.active .cat-image {
            border: 2px solid var(--color-black);
            padding: 3px;
        }

        .cat-label {
            font-size: clamp(13px, 2.5vw, 16px);
            font-weight: 500;
            color: var(--color-charcoal);
            transition: color var(--transition-fast), font-weight var(--transition-fast);
        }

        .cat-item.active .cat-label {
            font-weight: 700;
            color: var(--color-black);
        }
            color: var(--color-black);
            line-height: 1.2;
        }

        .cat-emoji {
            display: block;
            font-size: 16px;
            margin-top: 4px;
        }

        /* FILTER BAR */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 15px 5%;
            margin-top: 20px;
            margin-bottom: 40px;
        }

        .btn-filter {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid rgba(0,0,0,0.2);
            padding: 8px 15px;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: 14px;
            color: var(--color-black);
            transition: background var(--transition-fast);
        }

        .btn-filter:hover {
            background: rgba(0,0,0,0.05);
        }

        .product-count {
            font-size: 14px;
            color: var(--color-charcoal);
            font-weight: 500;
        }

        /* PRODUCT GRID PREMIUM */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid var(--color-black);
            padding-bottom: 20px;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 40px;
            font-style: italic;
        }

        .section-link {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            border-bottom: 1px solid transparent;
            transition: border-color var(--transition-fast);
        }

        .section-link:hover {
            border-color: var(--color-black);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 50px 30px;
        }

        .product-card {
            position: relative;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .product-card.filtering-hide {
            display: none;
        }
        
        .product-card.filtering-animate {
            opacity: 0;
            transform: scale(0.95);
        }

        .product-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: #e9e9e9;
            margin-bottom: 20px;
        }

        .product-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.05);
        }

        .product-actions {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            opacity: 0;
            display: flex;
            gap: 8px;
            transition: all var(--transition-normal);
            z-index: 2;
        }

        .product-card:hover .product-actions {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .action-btn {
            width: 40px;
            height: 40px;
            background: #fff;
            border: none;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            color: var(--color-black);
            transition: all var(--transition-fast);
        }

        .action-btn:hover {
            background: var(--color-black);
            color: #fff;
        }

        .action-btn svg {
            width: 18px;
            height: 18px;
            stroke-width: 1.5;
            fill: none;
            stroke: currentColor;
        }

        .product-meta {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding-top: 15px;
        }

        .product-title {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .product-price {
            font-family: var(--font-primary);
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .price-current {
            font-weight: 600;
            color: var(--color-black);
        }

        .price-old {
            color: #999;
            text-decoration: line-through;
            font-size: 13px;
        }

        .swatches {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 12px;
        }

        .swatch-wrap {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 1px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .swatch-wrap.active {
            border-color: var(--color-charcoal);
        }

        .swatch {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: block;
        }

        /* EDITORIAL ABOUT SECTION */
        .about-editorial {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 50px;
        }

        .about-text h2 {
            font-size: clamp(3rem, 5vw, 5rem);
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: var(--color-charcoal);
            margin-bottom: 30px;
        }

        .editorial-image {
            aspect-ratio: 4/5;
            overflow: hidden;
            position: relative;
        }

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

        /* FOOTER */
        .footer {
            background: var(--color-deep-blue);
            color: var(--color-white);
            padding: 80px 5% 30px;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-family: var(--font-secondary);
            font-size: 24px;
            font-style: italic;
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color var(--transition-fast);
        }

        .footer-col a:hover {
            color: var(--color-white);
        }

        .newsletter input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            padding: 15px 0;
            color: white;
            outline: none;
            margin-bottom: 15px;
            font-family: var(--font-mono);
            font-size: 12px;
        }

        .newsletter input:focus {
            border-bottom-color: white;
        }

        .newsletter button {
            background: var(--color-white);
            color: var(--color-deep-blue);
            width: 100%;
            border: none;
            padding: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-family: var(--font-mono);
        }

        /* FLOATING WHATSAPP */
        .wa-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 55px;
            height: 55px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        .wa-float:hover {
            transform: scale(1.1);
        }
        .wa-float svg {
            fill: white;
            width: 32px;
            height: 32px;
        }

        /* PREMIUM CART OVERLAY */
        .cart-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(5px);
            z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition-normal);
        }
        .cart-overlay.active { opacity: 1; pointer-events: auto; }
        .cart-drawer {
            position: absolute; right: 0; top: 0; width: 100%; max-width: 480px; height: 100%;
            background: var(--color-white); padding: 40px; transform: translateX(100%);
            transition: transform var(--transition-normal); display: flex; flex-direction: column;
        }
        .cart-overlay.active .cart-drawer { transform: translateX(0); }
        .cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding-bottom: 20px; margin-bottom: 30px; }
        .cart-header h2 { font-family: var(--font-primary); font-size: 24px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .close-cart { background: none; border: none; font-size: 28px; cursor: pointer; }
        .cart-body { flex: 1; overflow-y: auto; }
        .empty-cart { text-align: center; margin-top: 100px; color: var(--color-charcoal); }

        .cart-coupon { display: flex; margin-bottom: 15px; gap: 10px; }
        .cart-coupon input { flex: 1; padding: 12px 15px; border: 1px solid #ddd; border-radius: 6px; font-size: 13px; font-family: var(--font-primary); outline: none; }
        .cart-coupon button { background: #555; color: #fff; border: none; padding: 0 20px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
        .cart-coupon button:hover { background: #333; }
        
        .cart-continue { margin-bottom: 15px; font-size: 14px; font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; border: none; background: transparent; padding: 0;}
        
        .cart-subtotal { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 15px; align-items: center; }
        .cart-subtotal .subtotal-price { font-weight: 600; font-size: 20px;}
        
        .cart-footer .btn-checkout {
            background: #999; color: var(--color-white); padding: 18px; width: 100%; border: none;
            font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 6px; cursor: pointer;
        }
        .cart-footer .btn-checkout:hover { background: #777; }

        /* REVIEWS */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .review-card:hover { transform: translateY(-5px); }
        .review-card .stars {
            color: #000;
            font-size: 20px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        .review-text {
            font-style: italic;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--color-charcoal);
        }
        .review-author {
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* INSTAGRAM FEED */
        .ig-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 5px;
        }
        .ig-item {
            position: relative;
            aspect-ratio: 1/1;
            overflow: hidden;
            display: block;
        }
        .ig-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .ig-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .ig-item:hover img { transform: scale(1.05); }
        .ig-item:hover .ig-overlay { opacity: 1; }

        @media(max-width: 768px) {
            .ig-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-links { display: none; }
            .about-editorial { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .hero-title { font-size: 3rem; }
            body { cursor: auto; }
            .cursor-dot, .cursor-ring { display: none; }
            a, button, .cat-item, .wa-float, .icon { cursor: pointer; }
        }

        /* SPECIAL GIFT POPUP */
        .nl-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
            z-index: 3000; display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity var(--transition-normal);
        }
        .nl-overlay.active { opacity: 1; pointer-events: auto; }
        
        .gift-popup {
            position: relative; max-width: 480px; width: 90%; height: 550px;
            background: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=800&q=80') center/cover;
            border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center;
            text-align: center; color: #fff; transform: translateY(20px); transition: transform var(--transition-normal);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        .nl-overlay.active .gift-popup { transform: translateY(0); }
        .gift-popup::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 1; }
        .nl-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 24px; color: #fff; z-index: 10; cursor: pointer; }
        
        .gift-content { position: relative; z-index: 2; padding: 40px; width: 100%; display: flex; flex-direction: column; align-items: center;}
        .gift-content h2 { font-family: var(--font-primary); font-size: 28px; font-weight: 700; margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
        .gift-content p { font-size: 14px; margin-bottom: 25px; line-height: 1.4; }
        
        .countdown { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .cd-item { display: flex; flex-direction: column; align-items: center; }
        .cd-num { font-size: 38px; font-weight: 700; line-height: 1; }
        .cd-label { font-size: 10px; text-transform: uppercase; margin-top: 5px; letter-spacing: 0.5px; }
        
        .email-capture { display: flex; background: #fff; border-radius: 30px; padding: 5px; margin-bottom: 20px; width: 100%; }
        .email-capture input { flex: 1; border: none; background: transparent; padding: 10px 20px; outline: none; color: #000; font-size: 13px; font-family: var(--font-primary); }
        .email-capture button { background: #000; color: #fff; border: none; padding: 10px 25px; border-radius: 20px; font-weight: 600; font-size: 12px; cursor: pointer; transition: background 0.3s; }
        .email-capture button:hover { background: #333; }
        
        .gift-terms { display: flex; align-items: flex-start; gap: 10px; text-align: left; font-size: 10px; margin-bottom: 30px; color: #fff;}
        .gift-terms a { color: #fff; text-decoration: underline; }
        .gift-terms input { accent-color: #fff; margin-top: 2px; }
        
        .btn-discover { background: #fff; color: #000; border: none; padding: 12px 30px; border-radius: 25px; font-weight: 700; font-size: 12px; cursor: pointer; transition: transform 0.3s; text-transform: uppercase;}
        .btn-discover:hover { transform: scale(1.05); }
