
        /* Prevent any child element from forcing a horizontal scrollbar */
        html { overflow-x: hidden; width: 100%; }
        :root {
            /* Light Theme */
            --bg-body: #F8F9FA;
            --bg-surface: #FFFFFF;
            --text-primary: #0A192F;
            --text-secondary: #4A5568;
            --text-muted: #718096;
            --border-color: #E2E8F0;
            --primary-gold: #D4AF37;
            --primary-gold-hover: #B8942E;
            --shadow: 0 4px 12px rgba(10, 25, 47, 0.05);
            --transition: 0.3s ease;
        }

        html.dark-mode {
            /* Dark Theme */
            --bg-body: #0F1724;
            --bg-surface: #1A2436;
            --text-primary: #F8F9FA;
            --text-secondary: #CBD5E0;
            --text-muted: #A0AEC0;
            --border-color: #2D3748;
            --primary-gold: #E2B735;
            --primary-gold-hover: #C5A028;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        /* Base Resets */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-primary);
            transition: background-color var(--transition), color var(--transition);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }
        a { text-decoration: none; color: inherit; transition: color var(--transition); }
        ul { list-style: none; padding: 0; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        img { max-width: 100%; display: block; }

        /* Sexy Typography */
        h1, h2, h3, h4, .hero-content h1, .subtitle, .section-title h2 {
            font-family: 'Playfair Display', serif;
            letter-spacing: -0.02em;
        }
        h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; }
        h2 { font-size: 2.5rem; font-weight: 600; }
        h3 { font-size: 1.5rem; font-weight: 600; }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: var(--bg-surface);
            color: var(--text-primary);
            border: 2px solid var(--primary-gold);
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            text-align: center;
            font-family: 'Inter', sans-serif;
        }
        .btn-primary {
            background-color: var(--primary-gold);
            color: #0A192F;
            border-color: var(--primary-gold);
        }
        .btn-primary:hover {
            background-color: var(--primary-gold-hover);
            border-color: var(--primary-gold-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }
        .btn-outline {
            background: transparent;
            border-color: var(--border-color);
        }
        .btn-outline:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }

        /* Header */
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color var(--transition), border-color var(--transition);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo-wrapper { display: flex; align-items: center; gap: 10px; }
        .brand-logo { height: 50px; width: auto; object-fit: contain; }
        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a:hover { color: var(--primary-gold); }
        
        /* Dark Mode Toggle */
        .theme-toggle {
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            color: var(--text-primary);
            transition: all var(--transition);
        }
        .theme-toggle:hover { border-color: var(--primary-gold); color: var(--primary-gold); }

        /* Sections */
        section.page { display: none; padding: 4rem 0; animation: fadeIn 0.5s ease-in-out; }
        section.page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* Home - Hero */
        .hero { 
            display: flex; 
            align-items: center; 
            gap: 4rem; 
            padding: 2rem 0; 
            min-height: 70vh;
        }
        .hero-content { flex: 1; }
        .hero-content h1 { margin-bottom: 1.5rem; color: var(--text-primary); }
        .hero-content h1 i { font-weight: 400; font-style: italic; color: var(--primary-gold); }
        .hero-content p { font-size: 1.2rem; color: var(--text-secondary); max-width: 500px; margin-bottom: 2rem; }
        .hero-image { flex: 1; display: flex; justify-content: center; gap: 1rem; }
        .hero-image img { max-height: 400px; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

        /* Cards (Products) */
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
        
        .product-card {
            background: var(--bg-surface);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
            border: 1px solid transparent;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            border-color: var(--border-color);
        }
        .product-card h3 { color: var(--primary-gold); margin-bottom: 0.5rem; }
        .product-card p { color: var(--text-secondary); margin-bottom: 1.5rem; }
        .product-card .subtitle { font-weight: 600; color: var(--text-primary); margin-bottom: 0.5rem; }

        /* ===================
           3-STEP FORM WIZARD 
           =================== */
        .form-wizard { position: relative; }
        
        /* Progress Bar */
        .wizard-progress {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2.5rem;
            position: relative;
            padding: 0 1rem;
        }
        .wizard-progress::before {
            content: '';
            position: absolute;
            top: 25px; left: 2rem; right: 2rem;
            height: 2px;
            background: var(--border-color);
            z-index: 0;
        }
        .wizard-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            flex: 1;
            text-align: center;
        }
        .wizard-step .step-num {
            width: 40px; height: 40px;
            background: var(--bg-body);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 600; color: var(--text-muted);
            margin-bottom: 0.5rem;
            transition: all var(--transition);
            font-family: 'Inter', sans-serif;
        }
        .wizard-step .step-label {
            font-size: 0.8rem; color: var(--text-muted);
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            transition: color var(--transition);
        }
        .wizard-step.active .step-num {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #0A192F;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }
        .wizard-step.active .step-label {
            color: var(--primary-gold);
            font-weight: 600;
        }
        .wizard-step.completed .step-num {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: #0A192F;
        }

        /* Form Steps */
        .form-step { display: none; animation: slideIn 0.4s ease; }
        .form-step.active { display: block; }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(15px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .form-step h4 { font-family: 'Playfair Display', serif; color: var(--text-primary); margin-bottom: 1.5rem; font-size: 1.3rem; }

        /* Align 4 fields per step into a tidy 2-column grid */
        .form-fields-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            column-gap: 1.5rem;
        }
        .form-fields-grid .form-group { margin-bottom: 1.5rem; }
        .form-fields-grid .form-group.full-width { grid-column: 1 / -1; }
        @media (max-width: 700px) {
            .form-fields-grid { grid-template-columns: 1fr; }
        }

        .wizard-nav { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 2rem; }
        .wizard-nav .btn { min-width: 120px; }
        
        /* Forms default */
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text-secondary); }
        .form-control {
            width: 100%; padding: 0.75rem; border-radius: 4px;
            border: 1px solid var(--border-color); background: var(--bg-body);
            color: var(--text-primary); transition: border-color var(--transition);
        }
        .form-control:focus { outline: none; border-color: var(--primary-gold); }
        textarea.form-control { resize: vertical; min-height: 100px; }

        /* Per-field validation states */
        .form-control.invalid { border-color: #E53E3E; }
        .form-control.invalid:focus { border-color: #E53E3E; }
        .field-error {
            display: none;
            color: #E53E3E;
            font-size: 0.8rem;
            margin-top: 0.4rem;
        }
        .field-error.show { display: block; }
        .form-group.has-error .form-control { border-color: #E53E3E; }
        
        .math-captcha {
            display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
        }
        .math-captcha span { font-size: 1.25rem; font-weight: 600; color: var(--text-primary); font-family: 'Inter', sans-serif; }
        .math-captcha input { width: 80px; }
        .math-captcha .field-error { flex-basis: 100%; margin-top: 0; }

        /* Distribution / Contact Layout */
        .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
        .contact-info h3 { color: var(--primary-gold); margin-bottom: 1rem; }
        .contact-info p { color: var(--text-secondary); margin-bottom: 2rem; }
        
        /* Footer */
        footer {
            background-color: var(--bg-surface);
            border-top: 1px solid var(--border-color);
            padding: 4rem 0 2rem;
            transition: background-color var(--transition), border-color var(--transition);
            margin-top: 4rem;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
        .footer-col h4 { margin-bottom: 1.5rem; color: var(--text-primary); }
        .footer-col ul li { margin-bottom: 0.75rem; }
        .footer-col ul li a { color: var(--text-secondary); font-size: 0.9rem; }
        .footer-col ul li a:hover { color: var(--primary-gold); }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 2rem;
            display: flex;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .hero { flex-direction: column; text-align: center; }
            .hero-image { margin-top: 2rem; }
            .hero-content p { margin: 0 auto 2rem; }
            .hero-actions { justify-content: center; }
            .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--bg-surface); padding: 2rem; border-bottom: 1px solid var(--border-color); }
            .nav-links.open { display: flex; }
            .mobile-toggle { display: block; background: transparent; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }
            .contact-layout { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (min-width: 901px) { .mobile-toggle { display: none; } }
        @media (max-width: 600px) {
            .grid-2, .grid-3 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
            .hero-content h1 { font-size: 2.5rem; }
            .wizard-progress .step-label { display: none; }
            .wizard-step .step-num { width: 30px; height: 30px; font-size: 0.8rem; }
            .wizard-nav { flex-direction: column-reverse; }
            .wizard-nav .btn { width: 100%; }
        }
        
        /* Product Page specific filters */
        .filter-group { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
        .filter-btn { 
            background: transparent; border: 1px solid var(--border-color); 
            padding: 0.5rem 1.5rem; border-radius: 4px; cursor: pointer; 
            color: var(--text-secondary); transition: all var(--transition);
            font-family: 'Inter', sans-serif;
        }
        .filter-btn:hover, .filter-btn.active { border-color: var(--primary-gold); color: var(--primary-gold); background: rgba(212, 175, 55, 0.1); }
        
        /* Distribution form confirmation */
        .confirmation-box {
            display: none; background: #10B981; color: white; padding: 1rem 2rem; border-radius: 4px; margin-top: 1rem;
            text-align: center; font-weight: 500;
        }
        .confirmation-box.show { display: block; }
        
        /* Badge */
        .badge { display: inline-block; background: rgba(212, 175, 55, 0.15); color: var(--primary-gold); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1rem; }
