/* ============================================
   THIDIR VIVASAYI — PREMIUM ORGANIC CSS
   Luxury earthy green, gold, cream palette
   ============================================ */
@import url('mobile.css');

/* ---- DESIGN TOKENS ---- */
:root {
    --dark:          #0d1208;
    --dark-2:        #111a0a;
    --dark-3:        #182210;
    --green-deep:    #1a3a0f;
    --green-mid:     #2d5a1b;
    --green-light:   #4a8a2a;
    --green-bright:  #6ab83e;
    --gold:          #c9933a;
    --gold-light:    #e8b55a;
    --gold-pale:     #f5d98a;
    --cream:         #f4edd8;
    --cream-2:       #ede2c4;
    --cream-3:       #e8d9b0;
    --text:          #f0e8d0;
    --text-light:    #d4c8a8;
    --text-muted:    #8a7d60;
    --border:        rgba(201,147,58,0.15);
    --border-light:  rgba(201,147,58,0.08);
    --card-bg:       rgba(26,58,15,0.5);
    --glass-bg:      rgba(13,18,8,0.6);
    --gold-gradient: linear-gradient(135deg, #c9933a 0%, #e8b55a 50%, #c9933a 100%);
    --green-gradient: linear-gradient(135deg, #1a3a0f 0%, #2d5a1b 100%);
    --hero-gradient: linear-gradient(160deg, #060e03 0%, #0d1208 40%, #1a2e0a 70%, #111a0a 100%);
    --shadow-gold:   0 0 40px rgba(201,147,58,0.12);
    --shadow-card:   0 8px 40px rgba(0,0,0,0.4);
    --radius:        16px;
    --radius-sm:     10px;
    --radius-lg:     24px;
    --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.playfair   { font-family: 'Playfair Display', serif; }
.cormorant  { font-family: 'Cormorant Garamond', serif; }

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold-gradient);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,147,58,0.3);
    letter-spacing: 0.02em;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,147,58,0.45);
}
.btn-primary.btn-large { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(244,237,216,0.25);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(201,147,58,0.08);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 0;
    transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(10,15,6,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.nav-logo .logo-icon { font-size: 1.6rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.logo-secondary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(201,147,58,0.08); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-gradient);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.btn-order:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,147,58,0.4); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10,15,6,0.97);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}
.mobile-menu a {
    padding: 0.9rem 0;
    font-size: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-shop-btn {
    background: var(--gold-gradient) !important;
    color: var(--dark) !important;
    padding: 0.85rem 1.25rem !important;
    border-radius: 10px !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
    font-weight: 700 !important;
    border-bottom: none !important;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 2rem 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
}
.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(45,90,27,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,147,58,0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(26,58,15,0.25) 0%, transparent 50%);
}

.leaves-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: leafFloat linear infinite;
    filter: blur(0.5px);
}
.leaf-1  { left: 5%;  top: 20%; font-size: 1.8rem; animation-duration: 18s; animation-delay: 0s; }
.leaf-2  { left: 15%; top: 70%; font-size: 2.2rem; animation-duration: 22s; animation-delay: -5s; }
.leaf-3  { left: 25%; top: 40%; font-size: 1.4rem; animation-duration: 16s; animation-delay: -8s; }
.leaf-4  { left: 75%; top: 15%; font-size: 2.5rem; animation-duration: 20s; animation-delay: -3s; }
.leaf-5  { left: 85%; top: 60%; font-size: 1.6rem; animation-duration: 25s; animation-delay: -10s; }
.leaf-6  { left: 90%; top: 30%; font-size: 2rem;   animation-duration: 19s; animation-delay: -6s; }
.leaf-7  { left: 45%; top: 85%; font-size: 1.5rem; animation-duration: 21s; animation-delay: -4s; }
.leaf-8  { left: 55%; top: 10%; font-size: 1.8rem; animation-duration: 17s; animation-delay: -12s; }

@keyframes leafFloat {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.15; }
    25%  { transform: translate(20px, -30px) rotate(15deg) scale(1.05); opacity: 0.2; }
    50%  { transform: translate(-15px, -55px) rotate(-8deg) scale(0.95); opacity: 0.1; }
    75%  { transform: translate(25px, -80px) rotate(20deg) scale(1.02); opacity: 0.18; }
    100% { transform: translate(0, -120px) rotate(0deg) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    animation: heroFadeIn 1.2s ease-out both;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s ease-out 0.2s both;
}
.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.6;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero-line-1 { display: block; color: var(--cream); }
.hero-line-2 { display: block; font-style: italic; }
.hero-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tamil {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    animation: heroFadeIn 1s ease-out 0.55s both;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
    animation: heroFadeIn 1s ease-out 0.65s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: heroFadeIn 1s ease-out 0.8s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 1s both;
}
.trust-badge {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.trust-sep { color: var(--gold); opacity: 0.4; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: heroFadeIn 1s ease-out 1.2s both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

/* ---- ABOUT ---- */
.about { padding: 7rem 2rem; }
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-image-frame {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(45,90,27,0.4) 0%, rgba(13,18,8,0.1) 70%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(201,147,58,0.1);
    animation: ringPulse 4s ease-in-out infinite;
}
@keyframes ringPulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.02); } }

.about-emoji-stack { position: relative; width: 160px; height: 160px; }
.about-emoji {
    position: absolute;
    font-size: 3.5rem;
    animation: emojiFloat 6s ease-in-out infinite;
}
.e1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.e2 { bottom: 0; right: 0; font-size: 2.5rem; animation-delay: -2s; }
.e3 { bottom: 0; left: 0; font-size: 2.8rem; animation-delay: -4s; }
.e4 { top: 30%; right: -10px; font-size: 2rem; animation-delay: -1s; }

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

.about-badge {
    position: absolute;
    bottom: 1rem;
    right: 0;
    background: var(--gold-gradient);
    color: var(--dark);
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 30px rgba(201,147,58,0.3);
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.badge-txt { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; line-height: 1.3; }

.about-text { }
.about-para { color: var(--text-light); font-size: 1rem; margin-bottom: 1.25rem; line-height: 1.8; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.value-item:hover { border-color: rgba(201,147,58,0.3); transform: translateX(4px); }
.value-icon { font-size: 1.5rem; }
.value-item strong { display: block; color: var(--cream); font-size: 0.9rem; font-weight: 600; }
.value-item span { color: var(--text-muted); font-size: 0.8rem; }

/* ---- STATS ---- */
.stats { position: relative; padding: 4rem 2rem; overflow: hidden; }
.stats-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,58,15,0.5) 0%, rgba(13,18,8,0.8) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
}
.stat-icon { font-size: 2rem; margin-bottom: 0.25rem; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: inline;
}
.stat-plus { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ---- PRODUCTS ---- */
.products-section { padding: 7rem 2rem; }
.products-container { max-width: 1280px; margin: 0 auto; }

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.filter-tab {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,147,58,0.06); }
.filter-tab.active { background: var(--gold-gradient); color: var(--dark); border-color: transparent; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ---- PRODUCT CARD ---- */
.product-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s, border-color 0.3s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,147,58,0.2);
    border-color: rgba(201,147,58,0.25);
}
.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold-gradient);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}
.card-image {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26,58,15,0.6) 0%, rgba(45,90,27,0.3) 100%);
    overflow: hidden;
}
.card-emoji {
    font-size: 5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}
.product-card:hover .card-emoji { transform: scale(1.15) rotate(-3deg); }
.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 100%);
    transition: opacity 0.4s;
}
.product-card:hover .card-shine { opacity: 0; }

.card-body { padding: 1.25rem; }
.card-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 0.4rem;
    opacity: 0.8;
}
.card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}
.card-tamil {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 0.6rem;
    opacity: 0.8;
}
.card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer { display: flex; flex-direction: column; gap: 0.75rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; }
.card-weight {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}
.card-btn {
    display: block;
    text-align: center;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,147,58,0.3);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.65rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.05em;
}
.card-btn:hover { background: var(--gold-gradient); color: var(--dark); border-color: transparent; }

.products-cta { text-align: center; margin-top: 3rem; }

/* ---- FEATURES ---- */
.features {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, rgba(26,58,15,0.15) 0%, transparent 100%);
}
.features-container { max-width: 1200px; margin: 0 auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    padding: 2rem 1.75rem;
    background: rgba(26,58,15,0.35);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,147,58,0.25);
    box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(201,147,58,0.1);
    border: 1px solid rgba(201,147,58,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap { background: rgba(201,147,58,0.18); border-color: rgba(201,147,58,0.4); }
.feature-icon { font-size: 1.6rem; }
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ---- CTA SECTION ---- */
.cta-section {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(45,90,27,0.3) 0%, rgba(13,18,8,0.95) 70%);
}
.cta-leaf {
    position: absolute;
    font-size: 4rem;
    opacity: 0.07;
    animation: leafFloat 20s linear infinite;
}
.cta-leaf-1 { left: 5%;  top: 20%; animation-duration: 18s; }
.cta-leaf-2 { right: 8%; top: 30%; animation-duration: 22s; animation-delay: -8s; }
.cta-leaf-3 { left: 40%; bottom: 10%; animation-duration: 16s; animation-delay: -4s; }

.cta-container { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-label { justify-content: center; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-note { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ---- FOOTER ---- */
.footer {
    position: relative;
    background: #060d04;
    border-top: 1px solid var(--border);
    padding: 5rem 2rem 2rem;
    overflow: hidden;
}
.footer-glow {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(45,90,27,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,147,58,0.08); transform: translateY(-2px); }

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
    line-height: 1.5;
}
.footer-links a:hover { color: var(--cream); }
.footer-info { display: block; }

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-sub { margin-top: 0.25rem; font-style: italic; opacity: 0.6; }

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 9rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(13,18,8,1) 0%, rgba(26,58,15,0.15) 100%);
    border-bottom: 1px solid var(--border);
}
.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--cream);
    margin: 0.5rem 0;
}
.page-hero-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-muted); }

/* ---- FILTER BAR ---- */
.filter-bar-section { padding: 2rem; border-bottom: 1px solid var(--border-light); }
.filter-bar-container { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; align-items: center; }
.search-form { width: 100%; max-width: 500px; }
.search-wrap { display: flex; align-items: center; gap: 0; background: var(--card-bg); border: 1px solid var(--border); border-radius: 50px; padding: 0.2rem 0.2rem 0.2rem 1.1rem; backdrop-filter: blur(10px); }
.search-wrap svg { color: var(--text-muted); flex-shrink: 0; }
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.25rem;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'DM Sans', sans-serif;
}
.search-btn:hover { opacity: 0.9; }

/* ---- PRODUCTS PAGE ---- */
.products-page-section { padding: 3rem 2rem 6rem; }
.filter-info {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.clear-filter { color: var(--gold); margin-left: 0.5rem; }
.clear-filter:hover { text-decoration: underline; }

.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.empty-icon { font-size: 4rem; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); }
.empty-state p { color: var(--text-muted); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible { opacity: 1; transform: translateY(0); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.open { display: flex; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .features-grid { grid-template-columns: 1fr; }
    .stats-container { flex-wrap: wrap; }
    .stat-divider { display: none; }
    .stat-card { min-width: calc(50% - 1rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .br-desktop { display: none; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .card-emoji { font-size: 3.5rem; }
    .card-image { height: 120px; }
    .card-name { font-size: 0.95rem; }
    .card-price { font-size: 1.1rem; }
}

@media (max-width: 360px) {
    .products-grid { grid-template-columns: 1fr; }
}
