/* ============================================
   ARTHVARDHAN - Premium Ayurvedic Website
   Stylesheet
   ============================================ */

/* ============================================
   1. CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Brand Colors */
    --primary: #0B5D2A;
    --primary-dark: #063B1C;
    --gold: #D4AF37;
    --gold-light: #E8C866;
    --white: #FFFFFF;
    --cream: #F8F6EE;
    --orange: #F59E0B;

    /* Functional Colors */
    --text-dark: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --bg-light: #F8F6EE;
    --bg-white: #FFFFFF;
    --border: rgba(11, 93, 42, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(11, 93, 42, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 93, 42, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0B5D2A 0%, #063B1C 100%);
    --grad-gold: linear-gradient(135deg, #D4AF37 0%, #E8C866 50%, #D4AF37 100%);
    --grad-hero: linear-gradient(135deg, rgba(6, 59, 28, 0.85) 0%, rgba(11, 93, 42, 0.7) 50%, rgba(6, 59, 28, 0.85) 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;

    /* Spacing */
    --section-pad: 100px 0;
    --container-pad: 0 20px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-dark: #F8F6EE;
    --text-light: #ccc;
    --text-muted: #999;
    --bg-light: #0a0f0c;
    --bg-white: #121a14;
    --border: rgba(212, 175, 55, 0.15);
    --cream: #0a0f0c;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-pad);
    width: 100%;
}

.section {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(11, 93, 42, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(11, 93, 42, 0.15);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.3);
}

.section-tag i {
    color: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-desc.light {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   3. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(11, 93, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(11, 93, 42, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnim 0.7s ease-out;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   4. GLASS CARD
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .glass-card {
    background: rgba(18, 26, 20, 0.7);
    border-color: rgba(212, 175, 55, 0.15);
}

/* ============================================
   5. PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--grad-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    color: var(--white);
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.preloader-leaf {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    animation: preloaderSpin 3s linear infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.preloader-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.preloader-tagline {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 30%;
    background: var(--grad-gold);
    border-radius: 3px;
    animation: preloaderBar 1.5s ease-in-out infinite;
}

@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(600%); }
}

/* ============================================
   6. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad-gold);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ============================================
   7. CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transition: transform 0.15s ease, opacity 0.3s ease;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    top: -4px;
    left: -4px;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    top: -20px;
    left: -20px;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring {
        display: block;
    }
    body {
        cursor: none;
    }
    a, button, input, textarea, .product-card, .why-card, .about-card {
        cursor: none;
    }
}

/* ============================================
   8. FLOATING LEAVES
   ============================================ */
.floating-leaves {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    color: var(--primary);
    opacity: 0.15;
    animation: leafFall linear infinite;
}

@keyframes leafFall {
    0% {
        transform: translateY(-100px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   9. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(10, 15, 12, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo {
    color: var(--text-dark);
}

.nav-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
}

.navbar.scrolled .nav-logo-img {
    background: rgba(11, 93, 42, 0.1);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-tag {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    position: relative;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-order-btn {
    margin-left: 10px;
    padding: 10px 22px;
    font-size: 0.85rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .theme-toggle {
    background: rgba(11, 93, 42, 0.1);
    color: var(--primary);
    border-color: rgba(11, 93, 42, 0.15);
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.05);
    background: var(--gold);
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .hamburger {
    background: rgba(11, 93, 42, 0.1);
    border-color: rgba(11, 93, 42, 0.15);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   10. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 59, 28, 0.92) 0%, rgba(11, 93, 42, 0.75) 50%, rgba(6, 59, 28, 0.92) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g1" cx="30%25" cy="40%25"><stop offset="0%25" stop-color="%23D4AF37" stop-opacity="0.3"/><stop offset="100%25" stop-color="%23063B1C" stop-opacity="0"/></radialGradient><radialGradient id="g2" cx="70%25" cy="60%25"><stop offset="0%25" stop-color="%230B5D2A" stop-opacity="0.5"/><stop offset="100%25" stop-color="%23063B1C" stop-opacity="0"/></radialGradient></defs><rect width="1200" height="800" fill="%23063B1C"/><circle cx="300" cy="300" r="400" fill="url(%23g1)"/><circle cx="900" cy="500" r="500" fill="url(%23g2)"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(11, 93, 42, 0.3) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% {
        transform: translate(100px, -100vh);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.hero-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-logo-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.hero-logo-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    animation: preloaderSpin 20s linear infinite;
}

.hero-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.hero-logo-circle i {
    font-size: 3.5rem;
    color: var(--gold);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-brand {
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-brand {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-typing {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gold-light);
    min-height: 40px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-style: italic;
}

.typing-cursor {
    animation: blink 1s infinite;
    color: var(--gold);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* ============================================
   11. ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-light);
}

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

.about-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(11, 93, 42, 0.3);
}

.about-card:hover .about-icon {
    transform: rotateY(360deg) scale(1.1);
    background: var(--grad-gold);
    color: var(--primary-dark);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   12. WHY CHOOSE US
   ============================================ */
.why-choose {
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-card {
    padding: 35px 25px;
    text-align: center;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .why-icon {
    background: var(--grad-gold);
    color: var(--primary-dark);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: rgba(11, 93, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.7rem;
    transition: var(--transition);
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: var(--transition);
}

/* ============================================
   13. PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F6EE 0%, #E8E4D8 100%);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(-2deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--grad-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.product-content {
    padding: 25px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 50px;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.highlight-tag {
    padding: 4px 10px;
    background: rgba(11, 93, 42, 0.08);
    color: var(--primary);
    font-size: 0.72rem;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price small {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 5px;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    background: rgba(11, 93, 42, 0.08);
    color: var(--primary);
}

.btn-icon:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   14. BENEFITS / STATS
   ============================================ */
.benefits {
    position: relative;
    color: var(--white);
    text-align: center;
}

.benefits-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 59, 28, 0.95) 0%, rgba(11, 93, 42, 0.9) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23D4AF37" opacity="0.3"/></svg>');
    background-size: cover, 40px 40px;
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-card {
    padding: 35px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.7rem;
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
    vertical-align: top;
    margin-top: 5px;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   15. PROCESS TIMELINE
   ============================================ */
.process {
    background: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--primary), var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 50px;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    border: 4px solid var(--bg-white);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -25px;
}

.timeline-content {
    padding: 25px;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(11, 93, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.timeline-item:nth-child(odd) .timeline-icon {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-icon {
    margin-right: auto;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   16. TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-light);
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.4em;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-city {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.test-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--border);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.test-dots {
    display: flex;
    gap: 8px;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.test-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   17. FAQ
   ============================================ */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item.active {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(11, 93, 42, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.8rem;
}

.faq-item.active .faq-icon {
    background: var(--grad-gold);
    color: var(--primary-dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 22px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   18. DISTRIBUTOR SECTION
   ============================================ */
.distributor {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.distributor-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 59, 28, 0.95) 0%, rgba(11, 93, 42, 0.85) 100%),
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.distributor-content {
    max-width: 900px;
    margin: 0 auto;
}

.distributor-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.distributor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.dist-benefit {
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.dist-benefit:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.dist-benefit i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.dist-benefit h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.dist-benefit p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   19. CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.info-card p,
.info-card a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-card a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--grad-primary);
    color: var(--gold);
    transform: translateY(-4px) rotate(8deg);
    border-color: transparent;
}

.contact-form {
    padding: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.map-placeholder small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================
   20. NEWSLETTER
   ============================================ */
.newsletter {
    padding: 60px 0;
    background: var(--bg-white);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    background: var(--grad-primary);
    border-radius: var(--radius-xl);
    color: var(--white);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-text {
    flex: 1;
    min-width: 250px;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.newsletter-text h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
}

/* ============================================
   21. FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.footer-logo h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.footer-logo p {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--gold);
}

/* ============================================
   22. FLOATING BUTTONS
   ============================================ */
.floating-btn {
    position: fixed;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    z-index: 900;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(8deg);
}

.whatsapp {
    bottom: 160px;
    background: #25D366;
}

.whatsapp .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

.call {
    bottom: 95px;
    background: var(--primary);
}

.order {
    bottom: 30px;
    background: var(--grad-gold);
    color: var(--primary-dark);
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--grad-gold);
    color: var(--primary-dark);
}

/* Hide order floating btn when back-to-top visible */
.back-to-top.visible ~ .order {
    display: none;
}

/* ============================================
   23. MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 59, 28, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.modal-image {
    background: linear-gradient(135deg, #F8F6EE 0%, #E8E4D8 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.modal-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.modal-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-section {
    margin-bottom: 18px;
}

.modal-section h4 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section h4 i {
    color: var(--gold);
}

.modal-section p,
.modal-section ul {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.modal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ============================================
   24. NEWSLETTER POPUP
   ============================================ */
.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 59, 28, 0.7);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    transform: scale(0.9);
    transition: var(--transition);
}

.newsletter-popup.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.popup-close:hover {
    background: var(--primary);
    color: var(--white);
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    box-shadow: var(--shadow-gold);
}

.popup-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.popup-form input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    color: var(--text-dark);
}

.popup-form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ============================================
   25. TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.toast {
    padding: 16px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
    animation: toastIn 0.4s ease;
    color: var(--text-dark);
}

.toast.success { border-left-color: #10B981; }
.toast.error { border-left-color: #EF4444; }
.toast.info { border-left-color: var(--gold); }

.toast i {
    font-size: 1.3rem;
}

.toast.success i { color: #10B981; }
.toast.error i { color: #EF4444; }
.toast.info i { color: var(--gold); }

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    to { transform: translateX(400px); opacity: 0; }
}

/* ============================================
   26. REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   27. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
    }

    [data-theme="dark"] .nav-menu {
        background: var(--bg-white);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-link {
        color: var(--text-dark);
        padding: 14px 18px;
        border-radius: var(--radius-md);
        font-size: 1rem;
        display: block;
    }

    .nav-order-btn {
        margin: 20px 0 0;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .modal-product {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding: 15px 20px 15px 70px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 5px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .hero {
        padding: 100px 20px 50px;
    }

    .hero-logo-circle {
        width: 100px;
        height: 100px;
    }

    .hero-logo {
        width: 70px;
        height: 70px;
    }

    .hero-stats {
        padding: 20px;
        gap: 15px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        right: 15px;
    }

    .whatsapp { bottom: 140px; }
    .call { bottom: 80px; }
    .order { bottom: 20px; }

    .back-to-top {
        right: 15px;
    }

    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .modal-content {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo-tag {
        font-size: 0.65rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .distributor-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   28. ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Skip to content (hidden but accessible) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .navbar,
    .floating-btn,
    .back-to-top,
    .preloader,
    .scroll-progress {
        display: none !important;
    }
}