﻿        /* =============================================
           INDEX-SPECIFIC BASE OVERRIDES
           ============================================= */
        html {
            scroll-snap-type: y proximity;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--forest);
        }

        html::-webkit-scrollbar { width: 6px; }
        html::-webkit-scrollbar-track { background: var(--forest); }
        html::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

        /* =============================================
           PRELOADER
           ============================================= */
        .preloader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: var(--forest-deep);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .preloader-ring {
            width: 60px;
            height: 60px;
            border: 2px solid var(--glass-border);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .preloader-text {
            margin-top: 1.5rem;
            font-family: var(--font-display);
            font-size: 0.85rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.8;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        /* =============================================
           CUSTOM CURSOR
           ============================================= */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.15s var(--ease-out-expo);
            mix-blend-mode: difference;
        }

        .cursor-ring {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(226, 185, 59, 0.4);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s;
            transform: translate(-50%, -50%);
        }

        .cursor-ring.hover {
            width: 60px;
            height: 60px;
            border-color: var(--gold);
        }

        @media (pointer: coarse) {
            .cursor-dot, .cursor-ring { display: none; }
        }

        /* =============================================
           NAVIGATION
           ============================================= */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.5s var(--ease-out-expo);
            background: rgba(10, 26, 15, 0.25);
            backdrop-filter: blur(12px) saturate(1.8);
            -webkit-backdrop-filter: blur(12px) saturate(1.8);
            border-bottom: 1px solid rgba(226, 185, 59, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .nav::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(
                135deg,
                rgba(226, 185, 59, 0.06) 0%,
                transparent 40%,
                rgba(139, 154, 107, 0.04) 60%,
                transparent 100%
            );
            pointer-events: none;
        }

        .nav.scrolled {
            background: rgba(6, 15, 8, 0.55);
            backdrop-filter: blur(24px) saturate(2) brightness(1.1);
            -webkit-backdrop-filter: blur(24px) saturate(2) brightness(1.1);
            padding: 1rem 3rem;
            border-bottom: 1px solid rgba(226, 185, 59, 0.15);
            box-shadow:
                0 4px 30px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(226, 185, 59, 0.08),
                inset 0 -1px 0 rgba(255, 255, 255, 0.03);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s var(--ease-out-expo);
        }

        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.6rem 1.5rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-expo);
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--gold);
            color: var(--forest-deep);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .nav-hamburger span {
            width: 24px;
            height: 1.5px;
            background: var(--white);
            transition: all 0.3s var(--ease-out-expo);
        }

        /* =============================================
           VIDEO SECTION BASE
           ============================================= */
        .video-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            scroll-snap-align: start;
        }

        .video-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .video-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        /* =============================================
           SECTION 1: HERO
           ============================================= */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero .video-overlay {
            background: linear-gradient(
                180deg,
                rgba(6, 15, 8, 0.15) 0%,
                rgba(6, 15, 8, 0.1) 40%,
                rgba(6, 15, 8, 0.3) 80%,
                rgba(6, 15, 8, 0.7) 100%
            );
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--gold-dim);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.2rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
        }

        .hero-badge i { font-size: 0.65rem; }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 400;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--text-secondary);
            max-width: 550px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
        }

        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: float 3s ease-in-out infinite;
        }

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* =============================================
           SECTION: TRUST / AUTHORITY
           ============================================= */
        .trust-section {
            padding: 4.5rem 2rem;
            position: relative;
        }

        .trust-section .video-overlay {
            background: linear-gradient(
                180deg,
                rgba(6, 15, 8, 0.5) 0%,
                rgba(6, 15, 8, 0.3) 50%,
                rgba(6, 15, 8, 0.5) 100%
            );
        }

        .trust-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .trust-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.5s var(--ease-out-expo);
            opacity: 0;
            transform: translateY(40px);
        }

        .trust-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .trust-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(226, 185, 59, 0.1);
        }

        .trust-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: var(--gold-dim);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--gold);
            transition: all 0.4s var(--ease-out-expo);
        }

        .trust-card:hover .trust-icon {
            background: var(--gold);
            color: var(--forest-deep);
            transform: scale(1.1);
        }

        .trust-card h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .trust-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* =============================================
           SECTION: PRODUCTS
           ============================================= */
        .products-section {
            padding: 4.5rem 2rem;
            position: relative;
        }

        .products-section .video-overlay {
            background: linear-gradient(
                180deg,
                rgba(6, 15, 8, 0.5) 0%,
                rgba(6, 15, 8, 0.25) 50%,
                rgba(6, 15, 8, 0.5) 100%
            );
        }

        .products-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 6rem;
        }

        .product-row:last-child { margin-bottom: 0; }

        .product-row.reverse { direction: rtl; }
        .product-row.reverse > * { direction: ltr; }

        .product-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .product-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(226, 185, 59, 0.12), transparent 70%);
            filter: blur(60px);
            animation: pulseGlow 5s ease-in-out infinite alternate;
        }

        @keyframes pulseGlow {
            0% { opacity: 0.5; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.15); }
        }

        .product-bottle {
            position: relative;
            z-index: 1;
        }

        .product-bottle svg {
            width: 120px;
            height: 280px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
        }

        .product-info h3 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .product-info h3 em { font-style: italic; color: var(--gold); }

        .product-info p {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .product-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .product-features li i {
            color: var(--gold);
            font-size: 0.7rem;
        }

        /* =============================================
           SECTION: PRICING
           ============================================= */
        .pricing-section {
            padding: 4.5rem 2rem;
            position: relative;
        }

        .pricing-section .video-overlay {
            background: linear-gradient(
                180deg,
                rgba(6, 15, 8, 0.5) 0%,
                rgba(6, 15, 8, 0.3) 50%,
                rgba(6, 15, 8, 0.5) 100%
            );
        }

        .pricing-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-scroll {
            display: contents;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .pricing-grid-6 {
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
        }

        .pricing-grid-6 .pricing-card {
            padding: 1.8rem 1.2rem;
        }

        .pricing-grid-6 .pricing-value {
            font-size: 2.2rem;
        }

        .pricing-grid-6 .pricing-desc {
            display: none;
        }

        .pricing-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            opacity: 0;
            transform: translateY(40px);
        }

        .pricing-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured {
            border-color: var(--gold);
            background: rgba(226, 185, 59, 0.08);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 1rem;
            right: -2rem;
            background: var(--gold);
            color: var(--forest-deep);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 0.3rem 2.5rem;
            transform: rotate(45deg);
        }

        .pricing-tier {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .pricing-dose {
            display: inline-block;
            background: var(--gold-dim);
            border: 1px solid var(--glass-border);
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
            margin-bottom: 0.5rem;
        }

        .pricing-currency {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .pricing-value {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 500;
            color: var(--white);
            line-height: 1;
        }

        .pricing-period {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .pricing-desc {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .btn-pricing {
            width: 100%;
            padding: 1rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            border: none;
        }

        .btn-pricing.primary {
            background: var(--gold);
            color: var(--forest-deep);
        }

        .btn-pricing.primary:hover {
            background: var(--gold-light);
            box-shadow: 0 10px 30px rgba(226, 185, 59, 0.3);
        }

        .btn-pricing.secondary {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--white);
        }

        .btn-pricing.secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .pricing-logistics {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .logistics-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .logistics-item i { color: var(--gold); font-size: 0.9rem; }

        /* =============================================
           SECTION: ADD-ONS
           ============================================= */
        .addons-section {
            padding: 4.5rem 2rem;
            position: relative;
        }

        .addons-section .video-overlay {
            background: linear-gradient(
                180deg,
                rgba(6, 15, 8, 0.5) 0%,
                rgba(6, 15, 8, 0.25) 50%,
                rgba(6, 15, 8, 0.5) 100%
            );
        }

        .addons-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .addon-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3rem;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: center;
            transition: all 0.5s var(--ease-out-expo);
            opacity: 0;
            transform: translateY(40px);
        }

        .addon-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .addon-card:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(226, 185, 59, 0.08);
        }

        .addon-icon-wrap {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: var(--gold-dim);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--gold);
            transition: all 0.4s var(--ease-out-expo);
        }

        .addon-card:hover .addon-icon-wrap {
            background: var(--gold);
            color: var(--forest-deep);
            transform: rotate(-5deg) scale(1.05);
        }

        .addon-info h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .addon-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .addon-price {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--gold);
            white-space: nowrap;
            margin-bottom: 0.5rem;
        }

        .btn-addon {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 0.5rem 1.2rem;
            border-radius: 100px;
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s var(--ease-out-expo);
        }

        .btn-addon:hover {
            background: var(--gold);
            color: var(--forest-deep);
        }

        .addon-features {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .addon-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--text-secondary);
            transition: color 0.3s;
        }

        .addon-feature:hover { color: var(--gold); }

        .addon-feature i {
            font-size: 0.7rem;
            color: var(--sage);
            transition: color 0.3s;
        }

        .addon-feature:hover i { color: var(--gold); }

        /* =============================================
           SECTION: CTA
           ============================================= */
        .cta-section {
            padding: 5rem 2rem;
            position: relative;
            text-align: center;
        }

        .cta-section .video-overlay {
            background: radial-gradient(
                ellipse at center,
                rgba(6, 15, 8, 0.2) 0%,
                rgba(6, 15, 8, 0.55) 70%
            );
        }

        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .cta-inner h2 em { font-style: italic; color: var(--gold); }

        .cta-inner p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        /* =============================================
           CART SYSTEM
           ============================================= */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-cart {
            position: relative;
            background: none;
            border: 1px solid var(--glass-border);
            color: var(--white);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.3s var(--ease-out-expo);
        }

        .nav-cart:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .cart-count {
            position: absolute;
            top: -4px;
            right: -4px;
            background: var(--gold);
            color: var(--forest-deep);
            font-size: 0.65rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s var(--ease-out-expo);
        }

        .cart-count.visible {
            opacity: 1;
            transform: scale(1);
        }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .cart-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 380px;
            max-width: 90vw;
            height: 100vh;
            background: var(--forest-deep);
            border-left: 1px solid var(--glass-border);
            z-index: 2001;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s var(--ease-out-expo);
        }

        .cart-sidebar.open {
            transform: translateX(0);
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .cart-header h3 {
            font-family: var(--font-display);
            font-size: 1.3rem;
        }

        .cart-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.1rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .cart-close:hover { color: var(--gold); }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-empty {
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 3rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(226, 185, 59, 0.1);
        }

        .cart-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--gold-dim);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-family: var(--font-display);
            font-size: 0.95rem;
            margin-bottom: 0.2rem;
        }

        .cart-item-dose {
            font-size: 0.75rem;
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .cart-item-price {
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 0.75rem;
            cursor: pointer;
            transition: color 0.3s;
            margin-top: 0.3rem;
        }

        .cart-item-remove:hover { color: #ff6b6b; }

        .cart-qty {
            display: flex;
            align-items: center;
            gap: 0;
            margin-top: 0.4rem;
        }

        .cart-qty-btn {
            width: 26px;
            height: 26px;
            border-radius: 6px;
            border: 1px solid var(--glass-border);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .cart-qty-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .cart-qty-value {
            width: 32px;
            text-align: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .cart-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--glass-border);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-family: var(--font-display);
            font-size: 1.1rem;
        }

        .cart-total span:last-child {
            color: var(--gold);
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .nav-actions { gap: 0.5rem; }
            .nav-cta { display: none; }
        }

        /* =============================================
           ACKNOWLEDGEMENT SECTION
           ============================================= */
        .acknowledgement-section {
            padding: 5rem 2rem;
            position: relative;
        }

        .ack-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .ack-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .ack-card > p:first-child {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .ack-block {
            margin-bottom: 1.5rem;
        }

        .ack-block h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ack-block h4 i { font-size: 0.85rem; }

        .ack-block p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .ack-block ul {
            list-style: none;
            margin-top: 0.5rem;
        }

        .ack-block ul li {
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.6;
            padding-left: 1.2rem;
            position: relative;
            margin-bottom: 0.4rem;
        }

        .ack-block ul li::before {
            content: 'â€¢';
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        .ack-checkbox-group {
            margin: 2rem 0;
            padding: 1.2rem;
            background: rgba(226, 185, 59, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
        }

        .ack-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            font-size: 0.85rem;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .ack-checkbox input { display: none; }

        .ack-checkmark {
            width: 20px;
            height: 20px;
            min-width: 20px;
            border: 1.5px solid var(--gold);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            transition: all 0.3s;
        }

        .ack-checkmark::after {
            content: 'âœ“';
            font-size: 0.7rem;
            color: var(--forest-deep);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .ack-checkbox input:checked + .ack-checkmark {
            background: var(--gold);
        }

        .ack-checkbox input:checked + .ack-checkmark::after {
            opacity: 1;
        }

        .ack-signature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .ack-field label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.4rem;
        }

        .ack-field input {
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.85rem;
            transition: border-color 0.3s;
        }

        .ack-field input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .ack-field input::placeholder {
            color: rgba(245, 240, 232, 0.3);
        }

        @media (max-width: 768px) {
            .ack-card { padding: 1.5rem; }
            .ack-signature-grid { grid-template-columns: 1fr; }
        }

        /* =============================================
           RESPONSIVE
           ============================================= */
        @media (max-width: 1024px) {
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid-6 { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            html { scroll-snap-type: none; }

            .nav { padding: 1rem 1.5rem; }
            .nav-links { display: none; }
            .nav-cta { display: none; }
            .nav-hamburger { display: flex; }

            .video-section {
                min-height: auto;
                scroll-snap-align: none;
            }

            .hero { min-height: 100vh; }

            .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }

            .trust-grid { grid-template-columns: 1fr; }

            .trust-card { padding: 1.8rem 1.4rem; }

            .product-row {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .product-row.reverse { direction: ltr; }

            .product-features { align-items: center; }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-scroll .pricing-grid {
                display: flex;
                grid-template-columns: unset;
            }

            .pricing-scroll {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 1rem;
                padding: 0 1rem 1rem;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }

            .pricing-scroll::-webkit-scrollbar { display: none; }

            .pricing-scroll .pricing-card {
                min-width: 240px;
                max-width: 280px;
                flex-shrink: 0;
                scroll-snap-align: center;
                padding: 1.8rem 1.4rem;
            }

            .addon-card {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 1.5rem 1.2rem;
            }

            .addon-icon-wrap { margin: 0 auto; }
            .addon-features { justify-content: center; flex-wrap: wrap; }
        }

        @media (max-width: 480px) {
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn-gold, .btn-outline { width: 100%; justify-content: center; }
        }

        /* =============================================
           MOBILE MENU
           ============================================= */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(6, 15, 8, 0.97);
            backdrop-filter: blur(30px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s var(--ease-out-expo);
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-menu a:hover { color: var(--gold); }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
