/* ================================================================
   home-premium.css — Vindhya Millets Production Homepage
   2000+ Premium Lines | Indian Organic Farming Theme | 2026
   Mobile-First | Dark/Light Aware | SEO-Friendly
   ================================================================ */

/* ────────────────────────────────────────────────────────────
   0. GOOGLE FONTS (Loaded globally in header.php)
   ──────────────────────────────────────────────────────────── */

/* ────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
    /* ── Brand Palette ── */
    --vm-green:        #3F5810;     /* Forest Green */
    --vm-green-mid:    #809521;     /* Olive Green */
    --vm-green-light:  #FDFDF8;     /* Off White */
    --vm-green-glow:   rgba(63, 88, 16, 0.18);
    --vm-amber:        #DEB326;     /* Golden Wheat */
    --vm-amber-light:  #F0DC57;     /* Sun Gold */
    --vm-amber-dark:   #AA6819;     /* Harvest Brown */
    --vm-gold:         #DEB326;     /* Golden Wheat */
    --vm-brown:        #52230B;     /* Dark Cocoa */
    --vm-earth:        #AA6819;     /* Harvest Brown */

    /* ── Neutrals ── */
    --vm-white:        #ffffff;
    --vm-off-white:    #FDFDF8;     /* Off White */
    --vm-dark:         #151303;     /* Rich Black */
    --vm-dark-mid:     #52230B;     /* Dark Cocoa */
    --vm-text-base:    #151303;     /* Rich Black */
    --vm-text-mute:    #52230B;     /* Dark Cocoa */
    --vm-text-faint:   #ADAD69;     /* Sage Olive */
    --vm-border:       #EFE7C1;     /* Warm Cream */
    --vm-border-light: #FDFDF8;     /* Off White */
    --vm-surface:      #EFE7C1;     /* Warm Cream */

    /* ── Typography ── */
    --font-head:   var(--font-display);
    --font-display:var(--font-display);
    --font-body:   var(--font-sans);

    /* ── Shadows ── */
    --vm-shadow-xs:  0 1px 3px rgba(15,31,20,0.05);
    --vm-shadow-sm:  0 4px 12px rgba(15,31,20,0.06);
    --vm-shadow-md:  0 10px 32px rgba(15,31,20,0.09);
    --vm-shadow-lg:  0 20px 54px rgba(15,31,20,0.13);
    --vm-shadow-xl:  0 36px 80px rgba(15,31,20,0.18);
    --vm-shadow-card:0 8px 28px rgba(15,31,20,0.07);
    --vm-shadow-card-hover:0 20px 50px rgba(15,31,20,0.14);

    /* ── Radius ── */
    --vm-r-sm:   8px;
    --vm-r-md:   16px;
    --vm-r-lg:   24px;
    --vm-r-xl:   32px;
    --vm-r-xxl:  48px;
    --vm-r-full: 9999px;

    /* ── Transition ── */
    --vm-trans-fast:   all 0.18s ease;
    --vm-trans:        all 0.35s cubic-bezier(0.16,1,0.3,1);
    --vm-trans-slow:   all 0.55s cubic-bezier(0.16,1,0.3,1);
    --vm-trans-spring: all 0.5s cubic-bezier(0.34,1.56,0.64,1);

    /* ── Layout ── */
    --vm-container: 1260px;
    --vm-section-pad: 100px 0;
    --vm-section-pad-sm: 60px 0;
}

/* ────────────────────────────────────────────────────────────
   2. GLOBAL RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul,ol { list-style: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.hm-main {
    font-family: var(--font-body);
    color: var(--vm-text-base);
    background: var(--vm-white);
    overflow-x: clip;
    overflow-y: visible;
    min-height: 100vh;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ────────────────────────────────────────────────────────────
   3. CONTAINER
   ──────────────────────────────────────────────────────────── */
.hm-container {
    width: 100%;
    max-width: var(--vm-container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ────────────────────────────────────────────────────────────
   4. SHARED SECTION HEADER SYSTEM
   ──────────────────────────────────────────────────────────── */
.hm-section-head { margin-bottom: 3.5rem; }
.hm-head-center  { text-align: center; }
.hm-head-split   { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; }
.hm-head-split > div { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.hm-head-split .hm-eyebrow { margin-left: auto; margin-right: auto; }
.hm-head-split .hm-section-title { text-align: center; }
.hm-head-split .hm-section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.hm-head-split .hm-view-all-link { margin: 8px auto 0; }
.hm-text-left    { text-align: left !important; }

.hm-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--vm-green-light), hsl(152,65%,91%));
    color: var(--vm-green);
    border: 1.5px solid hsla(152,65%,35%,0.2);
    border-radius: var(--vm-r-full);
    padding: 6px 18px 6px 14px;
    font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--font-head);
}
.hm-eyebrow svg { flex-shrink: 0; }
.hm-eyebrow-light {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
}

.hm-section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 900;
    color: var(--vm-dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}
.hm-section-sub {
    font-size: 1.05rem; color: var(--vm-text-mute);
    line-height: 1.75; max-width: 620px; margin: 0 auto;
}
.hm-head-center .hm-section-sub { text-align: center; }

/* Staggered Section Header Reveal */
.hm-section-head.hm-revealed .hm-reveal-ready:nth-child(1) { animation-delay: 0.1s; }
.hm-section-head.hm-revealed .hm-reveal-ready:nth-child(2) { animation-delay: 0.25s; }
.hm-section-head.hm-revealed .hm-reveal-ready:nth-child(3) { animation-delay: 0.4s; }

.hm-gradient-text {
    background: linear-gradient(135deg, var(--vm-green), var(--vm-green-mid), var(--vm-amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hm-gold-text { color: var(--vm-amber-dark); }
.hm-view-all-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.92rem; font-weight: 700; color: var(--vm-green);
    white-space: nowrap; transition: var(--vm-trans-fast);
    padding: 8px 16px; border-radius: var(--vm-r-full);
    border: 2px solid var(--vm-green);
}
.hm-view-all-link:hover { background: var(--vm-green); color: white; }
.hm-view-all-link svg  { transition: transform 0.2s; }
.hm-view-all-link:hover svg { transform: translateX(4px); }

/* ────────────────────────────────────────────────────────────
   5. BUTTONS
   ──────────────────────────────────────────────────────────── */
.hm-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; border-radius: var(--vm-r-full);
    font-family: var(--font-head); font-size: 1rem; font-weight: 800;
    letter-spacing: 0.01em; transition: var(--vm-trans);
    position: relative; overflow: hidden; cursor: pointer;
    border: 2.5px solid transparent;
}
.hm-cta svg { flex-shrink: 0; transition: transform 0.25s; }
.hm-cta:hover svg { transform: translateX(4px); }

.hm-cta-primary {
    background: linear-gradient(135deg, var(--vm-green) 0%, var(--vm-green-mid) 100%);
    color: white !important;
    box-shadow: 0 8px 28px var(--vm-green-glow), 0 2px 8px rgba(0,0,0,0.1);
}
.hm-cta-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, hsla(152,65%,28%,0.8), hsla(152,55%,40%,0.8));
    opacity: 0; transition: opacity 0.3s;
}
.hm-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--vm-green-glow), 0 4px 16px rgba(0,0,0,0.15); }

.hm-cta-outline {
    background: transparent;
    color: white !important;
    border-color: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
}
.hm-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.85); }

.hm-cta-white {
    background: white;
    color: var(--vm-green) !important;
    font-weight: 800;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.hm-cta-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.22); }

.hm-cta-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ────────────────────────────────────────────────────────────
   6. SCROLL REVEAL
   ──────────────────────────────────────────────────────────── */
.hm-reveal-ready {
    opacity: 1;
    transform: none;
}
.hm-reveal-ready.hm-revealed { opacity: 1; transform: none; }

/* Mobile-only elements — hidden on desktop */
.hm-mobile-trust-row  { display: none; }
.hm-mobile-trust-chip { display: none; }

/* ════════════════════════════════════════════════════════════
   SECTION 1: HERO
   ════════════════════════════════════════════════════════════ */
.hm-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(150deg,
        hsl(152,68%,9%) 0%,
        hsl(152,65%,13%) 35%,
        hsl(152,60%,17%) 65%,
        hsl(38,80%,14%) 100%);
    overflow: hidden;
    display: flex; flex-direction: column;
    isolation: isolate;
}

/* Canvas particles */
.hm-hero-canvas {
    position: absolute; inset: 0;
    z-index: 0; pointer-events: none;
    opacity: 0.6;
}

/* Background texture layers */
.hm-hero-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.hm-hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
}
.hm-hero-bokeh {
    position: absolute; border-radius: 50%;
    filter: blur(60px); pointer-events: none;
}
.hm-bokeh-1 {
    width: 600px; height: 600px; top: -150px; right: -150px;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
}
.hm-bokeh-2 {
    width: 400px; height: 400px; bottom: -80px; left: -100px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
}
.hm-bokeh-3 {
    width: 350px; height: 350px; top: 30%; left: 40%;
    background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
}

/* Indian mandala decoration */
.hm-hero-mandala {
    position: absolute; pointer-events: none; z-index: 0;
}
.hm-mandala-tl { top: -40px; left: -40px; width: 280px; height: 280px; opacity: 0.5; animation: rotateSlow 80s linear infinite; }
.hm-mandala-br { bottom: -20px; right: -20px; width: 200px; height: 200px; opacity: 0.4; animation: rotateSlow 60s linear infinite reverse; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

/* Floating grain badges */
.hm-float-badge {
    position: absolute; z-index: 5;
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px) saturate(150%);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: var(--vm-r-full);
    padding: 10px 18px;
    font-size: 0.82rem; font-weight: 700; color: white;
    animation: floatUpDown 4s ease-in-out infinite;
    white-space: nowrap;
}
.hm-fb-emoji { font-size: 1.1rem; }
.hm-fb-1 { top: 18%; left: 4%; animation-delay: 0s; }
.hm-fb-2 { top: 12%; right: 6%; animation-delay: 1.2s; }
.hm-fb-3 { bottom: 22%; right: 4%; animation-delay: 0.7s; }
@keyframes floatUpDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Container */
.hm-hero .hm-container {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    flex: 1;
    padding-top: clamp(90px,10vh,130px);
    padding-bottom: clamp(60px,8vh,100px);
}

/* Hero Content */
.hm-hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hm-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: var(--vm-r-full);
    padding: 7px 18px;
    font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em; text-transform: uppercase;
    max-width: fit-content;
}
.hm-hero-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--vm-amber);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }

/* H1/H2 */
.hm-hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    display: flex; flex-direction: column; gap: 4px;
}
.hm-hero-line { display: block; }
.hm-hero-gold {
    background: linear-gradient(135deg, var(--vm-amber), var(--vm-gold), #ffcf55);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    font-style: italic;
}
/* Desktop Hero Sequential Reveal */
@media (min-width: 769px) {
    .hm-hero-line {
        opacity: 0;
        transform: translateY(20px);
        animation: revealUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
    }
    .hm-hero-line1 { animation-delay: 0.2s; }
    .hm-hero-line2 { animation-delay: 0.4s; }
    .hm-hero-line3 { animation-delay: 0.6s; }
}

.hm-hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    max-width: 520px;
}

.hm-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Social Proof */
.hm-hero-proof {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--vm-r-full);
    padding: 10px 20px;
    max-width: fit-content;
}
.hm-proof-avatars  { display: flex; }
.hm-proof-av {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; color: white;
    margin-left: -8px;
}
.hm-proof-av:first-child { margin-left: 0; }
.hm-proof-text  { display: flex; flex-direction: column; gap: 1px; }
.hm-proof-stars { color: var(--vm-amber); font-size: 0.85rem; letter-spacing: 1px; }
.hm-proof-text > span { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600; }

/* Hero Visual */
.hm-hero-visual { position: relative; display: flex; justify-content: flex-end; }
.hm-hero-img-wrap {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1/1;
    border-radius: var(--vm-r-xxl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hm-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    transform: scale(1.04);
}
.hm-hero-img:hover { transform: scale(1.08); }
.hm-hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(15,31,20,0.3) 100%);
    pointer-events: none; z-index: 1;
}

/* Hero product card */
.hm-hero-product-card {
    position: absolute; bottom: 30px; left: -30px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-radius: var(--vm-r-lg);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--vm-shadow-xl);
    z-index: 5;
    animation: floatCard 5s ease-in-out infinite;
    max-width: 260px;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hm-hpc-img  { font-size: 2rem; }
.hm-hpc-info { display: flex; flex-direction: column; gap: 2px; }
.hm-hpc-name { font-size: 0.88rem; font-weight: 800; color: var(--vm-dark); }
.hm-hpc-tag  { font-size: 0.72rem; color: var(--vm-text-mute); font-weight: 500; }
.hm-hpc-badge {
    background: linear-gradient(135deg, var(--vm-amber), var(--vm-amber-dark));
    color: white; font-size: 0.68rem; font-weight: 800;
    padding: 3px 10px; border-radius: var(--vm-r-full);
    white-space: nowrap; letter-spacing: 0.5px;
}

/* Nutrition badge */
.hm-hero-nut-badge {
    position: absolute; top: 20px; right: -20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-radius: var(--vm-r-lg);
    padding: 14px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    box-shadow: var(--vm-shadow-lg);
    z-index: 5;
    animation: floatCard 6s ease-in-out infinite 1s;
}
.hm-nut-circle {
    width: 54px; height: 54px; border-radius: 50%;
    background: conic-gradient(var(--vm-green) var(--pct), var(--vm-border) var(--pct));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 800; color: var(--vm-green);
    box-shadow: inset 0 0 0 4px white;
}
.hm-nut-label { font-size: 0.68rem; font-weight: 700; color: var(--vm-text-mute); text-align: center; line-height: 1.3; }

/* Scroll indicator */
.hm-scroll-down {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 5; opacity: 0.6;
    animation: bounceScroll 2s ease-in-out infinite;
}
.hm-scroll-line {
    width: 1.5px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}
.hm-scroll-down span { font-size: 0.7rem; color: white; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
@keyframes bounceScroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ════════════════════════════════════════════════════════════
   SECTION 2: TRUST BAR
   ════════════════════════════════════════════════════════════ */
.hm-trust-bar {
    background: linear-gradient(90deg, var(--vm-green) 0%, var(--vm-green-mid) 50%, var(--vm-green) 100%);
    background-size: 200% 100%;
    animation: trustBgMove 6s linear infinite;
    padding: 14px 0;
    overflow: hidden;
}
@keyframes trustBgMove { 0%{background-position:0% 50%} 100%{background-position:200% 50%} }
.hm-trust-track {
    display: flex !important; 
    gap: 0 !important;
    animation: trustScroll 25s linear infinite !important;
    width: max-content !important;
}
.hm-trust-track:hover { animation-play-state: paused !important; }
@keyframes trustScroll { to { transform: translateX(-33.33%); } }
.hm-trust-track .hm-trust-item {
    display: flex; align-items: center; gap: 8px;
    padding: 0 32px;
    font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.92);
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.hm-trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   SECTION 3: CATEGORIES
   ════════════════════════════════════════════════════════════ */
.hm-cats-section {
    padding: var(--vm-section-pad);
    background: var(--vm-off-white);
    position: relative;
}
.hm-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hm-cat-card {
    position: relative;
    display: flex; flex-direction: column;
    background: white;
    border-radius: var(--vm-r-xl);
    overflow: hidden;
    box-shadow: var(--vm-shadow-card);
    border: 1.5px solid var(--vm-border);
    transition: var(--vm-trans-spring);
    cursor: pointer;
    text-decoration: none;
    isolation: isolate;
}
.hm-cat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--vm-shadow-card-hover);
    border-color: var(--cc);
}
.hm-cat-bg {
    position: absolute; inset: 0; background: var(--cl);
    opacity: 0; transition: opacity 0.35s;
    pointer-events: none;
}
.hm-cat-card:hover .hm-cat-bg { opacity: 1; }

.hm-cat-emoji-wrap {
    height: 130px;
    background: var(--cl);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: background 0.3s;
    border-radius: 16px 16px 0 0;
}
.hm-cat-img {
    max-width: 68%; max-height: 68%;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(0,0,0,0.12));
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s;
}
.hm-cat-card:hover .hm-cat-img {
    transform: scale(1.25) rotate(-6deg);
    filter: drop-shadow(0 20px 24px rgba(0,0,0,0.2));
}
.hm-cat-emoji-fallback, .hm-cat-svg-fallback {
    display: none; align-items: center; justify-content: center;
    transition: transform 0.5s;
}
.hm-cat-svg-fallback svg { filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12)); transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }
.hm-cat-card:hover .hm-cat-svg-fallback svg { transform: scale(1.3) rotate(-6deg); }
.hm-cat-footer {
    padding: 14px 12px 16px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 2;
}
.hm-cat-name {
    font-size: 0.9rem; font-weight: 800; color: var(--vm-dark);
    font-family: var(--font-head);
    transition: color 0.25s;
}
.hm-cat-card:hover .hm-cat-name { color: var(--cc); }
.hm-cat-arrow {
    font-size: 0.85rem; color: var(--vm-text-faint);
    transition: transform 0.3s, color 0.3s;
}
.hm-cat-card:hover .hm-cat-arrow { transform: translateX(4px); color: var(--cc); }
.hm-cat-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 50%);
    pointer-events: none; z-index: 1;
    opacity: 0; transition: opacity 0.3s;
}
.hm-cat-card:hover .hm-cat-shine { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   SECTION 4: BEST SELLERS
   ════════════════════════════════════════════════════════════ */
.hm-products-section {
    padding: var(--vm-section-pad);
    background: var(--vm-white);
    position: relative;
    isolation: isolate;
}
.hm-products-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hm-pb-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px);
}
.hm-pb-orb1 {
    width: 500px; height: 500px; top: -150px; right: -150px;
    background: radial-gradient(circle, var(--vm-green-glow) 0%, transparent 70%);
}
.hm-pb-orb2 {
    width: 400px; height: 400px; bottom: -100px; left: -100px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.hm-products-section .hm-section-head { position: relative; z-index: 1; }

.hm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative; z-index: 1;
}

/* Product Card - Vibrant Normal State */
.hm-prod-card {
    background: linear-gradient(160deg, #ffffff 0%, #fffcf8 55%, #fef5e7 100%);
    border: 1.5px solid rgba(226, 114, 17, 0.25);
    border-radius: var(--vm-r-xl);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 14px 36px -8px rgba(90, 30, 6, 0.11), inset 0 1.5px 0 #ffffff;
    position: relative;
    transition: var(--vm-trans);
    transition-delay: calc(var(--pi,0) * 50ms);
}
.hm-prod-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 60px -12px rgba(226, 114, 17, 0.28), inset 0 1.5px 0 #ffffff;
    border-color: #10b981;
}
.hm-prod-badge {
    position: absolute; z-index: 5; top: 14px;
    font-size: 0.72rem; font-weight: 800;
    padding: 4px 12px; border-radius: var(--vm-r-full);
    letter-spacing: 0.5px; white-space: nowrap;
}
.hm-badge-disc { left: 14px; background: #c2410c; color: white; font-weight: 800; box-shadow: 0 4px 10px rgba(194,65,12,0.25); }
.hm-badge-hot  { right: 14px; background: linear-gradient(135deg, #c2410c, #ea580c); color: white; box-shadow: 0 4px 10px rgba(194,65,12,0.25); }
.hm-badge-bestseller { right: 14px; background: linear-gradient(135deg, #D48806, #E27211); color: white; box-shadow: 0 4px 10px rgba(212,136,6,0.3); }
.hm-badge-fast  { right: 14px; background: linear-gradient(135deg, #2C6E2A, #1E4D1D); color: white; box-shadow: 0 4px 10px rgba(44,110,42,0.25); }
.hm-badge-premium  { right: 14px; background: linear-gradient(135deg, #5A1E06, #832C0A); color: white; box-shadow: 0 4px 10px rgba(90,30,6,0.25); }
.hm-badge-limited  { right: 14px; background: linear-gradient(135deg, #b91c1c, #991b1b); color: white; box-shadow: 0 4px 10px rgba(185,28,28,0.3); animation: hmPulseBadge 2s infinite; }
.hm-badge-featured  { right: 14px; background: linear-gradient(135deg, #2C6E2A, #1E4D1D); color: white; box-shadow: 0 4px 10px rgba(44,110,42,0.25); }
.hm-badge-trending  { right: 14px; background: linear-gradient(135deg, #c2410c, #9a3412); color: white; box-shadow: 0 4px 10px rgba(194,65,12,0.25); }
.hm-badge-fresh  { right: 14px; background: linear-gradient(135deg, #2C6E2A, #1E4D1D); color: white; box-shadow: 0 4px 10px rgba(44,110,42,0.25); }

@keyframes hmPulseBadge {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Premium Rating Chips & Trust Info */
.hm-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.hm-rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #10b981;
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}
.hm-rating-chip-star {
    font-size: 0.65rem;
}
.hm-reviews-count {
    font-size: 0.75rem;
    color: var(--vm-text-mute);
    font-weight: 600;
}
.hm-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--vm-green-mid);
    font-weight: 800;
    background: rgba(16, 185, 129, 0.05);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 2px;
}
.hm-fomo-row {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hm-fomo-urgency {
    font-size: 0.78rem;
    font-weight: 700;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hm-fomo-sales {
    font-size: 0.78rem;
    font-weight: 700;
    color: #d97706;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hm-fomo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    animation: hmFomoPulse 1.5s infinite;
}

@keyframes hmFomoPulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.hm-prod-img-link { display: block; }
.hm-prod-img-wrap {
    position: relative; overflow: hidden;
    background: var(--vm-surface);
    aspect-ratio: 1/1;
}
.hm-prod-img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.hm-prod-card:hover .hm-prod-img { transform: scale(1.1); }
.hm-prod-img-overlay {
    position: absolute; inset: 0;
    background: rgba(15,31,20,0.55);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.hm-prod-card:hover .hm-prod-img-overlay { opacity: 1; }
.hm-prod-img-overlay span {
    color: white; font-size: 0.85rem; font-weight: 800;
    letter-spacing: 1px; text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 8px 20px; border-radius: var(--vm-r-full);
}

.hm-prod-body {
    padding: 1rem 1.25rem 0.5rem;
    flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.hm-prod-cat {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--vm-green-mid);
}
.hm-prod-name { font-size: 0.93rem; font-weight: 800; color: var(--vm-dark); line-height: 1.35; }
.hm-prod-name a { color: inherit; text-decoration: none; }
.hm-prod-name a:hover { color: var(--vm-green); }
.hm-prod-stars { color: var(--vm-amber); font-size: 0.82rem; letter-spacing: 1px; }
.hm-prod-price { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.hm-prod-price-final { font-size: 1.15rem; font-weight: 900; color: var(--vm-dark); font-family: var(--font-head); }
.hm-prod-price-orig  { font-size: 0.85rem; text-decoration: line-through; color: var(--vm-text-faint); }

.hm-prod-footer {
    display: flex; gap: 8px; padding: 0.75rem 1.25rem 1.25rem;
}
.hm-prod-cart-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 10px 14px; border-radius: var(--vm-r-full);
    background: var(--vm-green); color: white;
    font-size: 0.82rem; font-weight: 800;
    font-family: var(--font-head); letter-spacing: 0.02em;
    transition: var(--vm-trans); border: none; cursor: pointer;
}
.hm-prod-cart-btn:hover { background: var(--vm-dark); transform: scale(1.03); }
.hm-prod-cart-btn.hm-btn-added { background: #10b981; }
.hm-prod-detail-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; padding: 10px;
    border: 2px solid var(--vm-border); border-radius: 50%;
    color: var(--vm-text-mute); transition: var(--vm-trans-fast);
    flex-shrink: 0;
}
.hm-prod-detail-btn:hover { border-color: var(--vm-green); color: var(--vm-green); transform: scale(1.08); }

.hm-no-products {
    text-align: center; padding: 4rem 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hm-nop-icon { font-size: 4rem; }

.hm-products-cta {
    text-align: center; margin-top: 3.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    position: relative; z-index: 1;
}
.hm-products-cta-note {
    font-size: 0.82rem; color: var(--vm-text-mute); font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   SECTION 5: THE MILLET EDGE
   ════════════════════════════════════════════════════════════ */
.hm-edge-section {
    padding: var(--vm-section-pad);
    background: linear-gradient(160deg, var(--vm-surface) 0%, hsl(152,55%,93%) 60%, var(--vm-off-white) 100%);
    position: relative; overflow: hidden;
}
.hm-edge-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    overflow: hidden;
}
.hm-edge-leaf {
    position: absolute; font-size: 6rem; opacity: 0.04;
    pointer-events: none; line-height: 1;
}
.hm-edge-leaf1 { top: 5%; left: 2%; transform: rotate(-20deg); animation: driftLeaf 12s ease-in-out infinite; }
.hm-edge-leaf2 { top: 50%; right: 2%; transform: rotate(15deg); animation: driftLeaf 15s ease-in-out infinite 2s; }
.hm-edge-leaf3 { bottom: 8%; left: 45%; transform: rotate(-5deg); animation: driftLeaf 18s ease-in-out infinite 4s; }
@keyframes driftLeaf { 0%,100%{transform:translateY(0) rotate(-20deg)} 50%{transform:translateY(-24px) rotate(-15deg)} }

.hm-edge-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative; z-index: 1;
}

/* Edge Visual */
.hm-edge-visual { position: relative; }
.hm-edge-img-frame {
    position: relative;
    border-radius: var(--vm-r-xxl);
    overflow: hidden;
    box-shadow: var(--vm-shadow-xl);
}
.hm-edge-img {
    width: 100%; height: 600px; object-fit: cover; display: block;
    transition: transform 8s ease;
}
.hm-edge-img-frame:hover .hm-edge-img { transform: scale(1.06) rotate(1deg); }

/* Premium FSSAI Floating Badge */
.hm-fssai-floating-badge {
    position: absolute;
    top: -40px;
    right: 20px;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.18);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    animation: rotateGentle 20s linear infinite;
    transition: var(--vm-trans-spring);
}
.hm-fssai-floating-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.hm-fssai-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
@keyframes rotateGentle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hm-edge-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,31,20,0.35) 0%, transparent 60%);
}
.hm-edge-badge {
    position: absolute;
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.hm-edge-badge-tl {
    top: 24px;
    left: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(16, 185, 129, 0.12) 100%);
    border: 1.5px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.2),
                inset 0 -3.5px 0 rgba(16, 185, 129, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hm-edge-badge-br {
    bottom: 24px;
    right: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 158, 11, 0.12) 100%);
    border: 1.5px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 15px 35px -10px rgba(245, 158, 11, 0.2),
                inset 0 -3.5px 0 rgba(245, 158, 11, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.hm-edge-badge:hover {
    transform: translateY(-5px) scale(1.05);
}
.hm-eb-icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
    flex-shrink: 0;
}
.hm-edge-badge-tl .hm-eb-icon-svg {
    color: var(--vm-green);
}
.hm-edge-badge-br .hm-eb-icon-svg {
    color: var(--vm-amber-dark);
}
.hm-eb-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.hm-eb-num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--vm-dark);
    line-height: 1;
    margin-bottom: 2px;
}
.hm-edge-badge-tl .hm-eb-num {
    color: var(--vm-green-dark);
}
.hm-edge-badge-br .hm-eb-num {
    color: var(--vm-amber-dark);
}
.hm-eb-num sup {
    font-size: 0.8rem;
    margin-left: 1px;
}
.hm-eb-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--vm-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
}

/* Certification Strip */
.hm-edge-cert-strip {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 6px 12px;
    box-shadow: 0 15px 35px -10px rgba(11, 40, 20, 0.12),
                inset 0 1px 0 white;
    z-index: 5;
    white-space: nowrap;
}
.hm-ecs-tag {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: inset 0 -1.5px 0 rgba(0,0,0,0.04);
}
.hm-ecs-tag svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.8px;
}
.hm-ecs-green {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #065f46;
}
.hm-ecs-green svg {
    color: var(--vm-green);
}
.hm-ecs-amber {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: #92400e;
}
.hm-ecs-amber svg {
    color: var(--vm-amber);
}
.hm-ecs-purple {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: #5b21b6;
}
.hm-ecs-purple svg {
    color: var(--vm-purple);
}

/* Edge Feature Cards */
.hm-edge-content {
    display: flex; flex-direction: column; gap: 0;
}
.hm-edge-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 2rem;
}
.hm-edge-feat {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(var(--ec-rgb), 0.12) 100%);
    border: 1.5px solid rgba(var(--ec-rgb), 0.25);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 12px 30px -10px rgba(var(--ec-rgb), 0.18),
                inset 0 -4px 0 rgba(var(--ec-rgb), 0.2);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--fi,0) * 60ms);
    position: relative;
    overflow: hidden;
}
.hm-edge-feat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ec);
    opacity: 0.9;
    transition: all 0.4s ease;
}
.hm-edge-feat:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-0.5deg);
    border-color: var(--ec);
    background: var(--ec-gradient);
    box-shadow: 0 20px 40px -12px rgba(var(--ec-rgb), 0.35),
                inset 0 -4px 0 rgba(255, 255, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.hm-edge-feat:hover::before {
    opacity: 0;
}
.hm-ef-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--ec-rgb), 0.12);
    border: 1px solid rgba(var(--ec-rgb), 0.25);
    border-radius: 14px;
    flex-shrink: 0;
    color: var(--ec);
    box-shadow: inset 0 -2.5px 0 rgba(var(--ec-rgb), 0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.hm-ef-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
}
.hm-edge-feat:hover .hm-ef-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
    box-shadow: inset 0 -2.5px 0 rgba(255, 255, 255, 0.2);
}
.hm-ef-body {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.hm-ef-body h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--vm-dark);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}
.hm-edge-feat:hover .hm-ef-body h3 {
    color: #ffffff;
}
.hm-ef-body p {
    font-size: 0.8rem;
    color: var(--vm-text-mute);
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}
.hm-edge-feat:hover .hm-ef-body p {
    color: rgba(255, 255, 255, 0.9);
}

/* ════════════════════════════════════════════════════════════
   SECTION 6: MISSION / STATS
   ════════════════════════════════════════════════════════════ */
.hm-mission-section {
    position: relative;
    padding: var(--vm-section-pad);
    background: linear-gradient(145deg, hsl(152,68%,10%) 0%, hsl(152,65%,14%) 40%, hsl(38,70%,15%) 100%);
    color: white; text-align: center;
    overflow: hidden; isolation: isolate;
}
.hm-mission-texture {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}
.hm-mission-orb {
    position: absolute; border-radius: 50%; filter: blur(90px);
    pointer-events: none; z-index: 0;
}
.hm-morb-tl { width: 500px; height: 500px; top: -150px; left: -150px; background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%); }
.hm-morb-br { width: 400px; height: 400px; bottom: -100px; right: -100px; background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%); }

.hm-mission-inner {
    position: relative; z-index: 1;
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.hm-mission-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900; color: white;
    letter-spacing: -0.03em; line-height: 1.1;
    margin: 0;
}
.hm-mission-body {
    font-size: 1.1rem; color: rgba(255,255,255,0.72);
    line-height: 1.85; max-width: 700px; margin: 0;
}
.hm-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px; width: 100%;
    margin: 1.5rem 0;
}
.hm-stat-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(var(--theme-rgb), 0.1) 100%);
    border: 1.5px solid rgba(var(--theme-rgb), 0.25);
    border-radius: 24px;
    padding: 28px 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px -10px rgba(var(--theme-rgb), 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                inset 0 -4px 0 rgba(var(--theme-rgb), 0.2);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--si,0) * 80ms);
}
.hm-stat-box:hover {
    transform: translateY(-12px) rotateX(3deg) rotateY(-1deg);
    border-color: var(--theme-color);
    background: var(--theme-gradient);
    box-shadow: 0 30px 50px -12px rgba(var(--theme-rgb), 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                inset 0 -4px 0 rgba(255, 255, 255, 0.25);
}
.hm-stat-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--theme-color);
    transition: color 0.4s ease, transform 0.4s ease;
}
.hm-stat-box:hover .hm-stat-icon {
    color: #ffffff;
    transform: scale(1.15) translateY(-2px);
}
.hm-stat-num {
    font-family: var(--font-display);
    font-size: 1.95rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.hm-stat-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    line-height: 1.35;
    transition: color 0.4s ease;
}
.hm-stat-box:hover .hm-stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* ════════════════════════════════════════════════════════════
   SECTION 7: FARM TO TABLE JOURNEY (ENHANCED LIGHTING & VISIBILITY)
   ════════════════════════════════════════════════════════════ */
.hm-journey-section {
    padding: var(--vm-section-pad);
    background: radial-gradient(ellipse at 50% 0%, rgba(254, 243, 199, 0.45) 0%, rgba(236, 253, 245, 0.6) 45%, #fefcf9 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hm-journey-section .hm-section-title {
    color: #2b1408;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.12);
}
.hm-journey-section .hm-section-sub {
    color: #4a3427;
    font-size: 1.08rem;
    font-weight: 600;
    max-width: 650px;
    margin: 0.75rem auto 0;
}
.hm-journey-section .hm-eyebrow {
    background: rgba(16, 185, 129, 0.12);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    color: #059669;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Luxury Volumetric Background Lighting */
.hm-journey-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hm-j-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.hm-j-blob-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.28) 0%, transparent 70%);
    animation: jBlobPulse 10s ease-in-out infinite alternate;
}
.hm-j-blob-2 {
    width: 650px;
    height: 650px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, transparent 70%);
    animation: jBlobPulse 12s ease-in-out infinite alternate-reverse;
}
@keyframes jBlobPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.85; transform: scale(1.18); }
}

.hm-j-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 185, 129, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.85;
}

.hm-journey-grid-container {
    position: relative;
    z-index: 1;
    margin-top: 3.5rem;
}

/* Steps Grid System */
.hm-journey-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .hm-journey-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .hm-journey-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Bento Card Style wrapper */
.hm-journey-card-wrap {
    perspective: 1000px;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hm-journey-card-wrap.hm-revealed {
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.1s + var(--jsi, 0) * 0.12s);
}

/* Card inner details with glassmorphism & soft depth (VIBRANT NORMAL STATE) */
.hm-journey-card-inner {
    background: linear-gradient(150deg, #ffffff 0%, #fffdfa 45%, rgba(var(--theme-rgb), 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(var(--theme-rgb), 0.32);
    border-radius: 28px;
    padding: 2.5rem 2rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 16px 42px -10px rgba(var(--theme-rgb), 0.16), 
                inset 0 1.5px 0 #ffffff,
                inset 0 -3px 0 rgba(var(--theme-rgb), 0.12);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Card Hover Animations - Solid Theme Gradient Transition */
.hm-journey-card-wrap:hover .hm-journey-card-inner {
    transform: translateY(-14px) rotateX(2deg) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    background: var(--theme-gradient);
    box-shadow: 0 32px 70px -15px rgba(var(--theme-rgb), 0.55), 
                0 12px 25px -10px rgba(var(--theme-rgb), 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Header */
.hm-jc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Category Chip - Vibrant in normal state */
.hm-jc-category-chip {
    background: linear-gradient(135deg, rgba(var(--theme-rgb), 0.16) 0%, rgba(var(--theme-rgb), 0.08) 100%);
    border: 1.5px solid rgba(var(--theme-rgb), 0.35);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(var(--theme-rgb), 0.15);
    transition: all 0.4s ease;
}
.hm-jc-category-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--theme-color);
    display: inline-block;
    position: relative;
    transition: background 0.4s ease;
}
.hm-journey-card-wrap:hover .hm-jc-category-chip {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: scale(1.05);
}
.hm-journey-card-wrap:hover .hm-jc-category-dot {
    background: #ffffff;
}
.hm-journey-card-wrap:hover .hm-jc-category-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    animation: hmPulseBadge 1.2s infinite;
}

/* Step Pill */
.hm-jc-step-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    border: 1.5px solid rgba(var(--theme-rgb), 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.hm-jc-step-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #5A1E06;
    transition: color 0.4s ease;
}
.hm-jc-step-val {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--theme-color);
    transition: color 0.4s ease;
}
.hm-journey-card-wrap:hover .hm-jc-step-pill {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
.hm-journey-card-wrap:hover .hm-jc-step-lbl {
    color: rgba(255, 255, 255, 0.75);
}
.hm-journey-card-wrap:hover .hm-jc-step-val {
    color: #ffffff;
}

/* Volumetric Icon Circle Container - Vibrant in normal state */
.hm-jc-icon-circle-3d {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(var(--theme-rgb), 0.22) 100%);
    border: 2px solid rgba(var(--theme-rgb), 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 24px -6px rgba(var(--theme-rgb), 0.35),
                inset 0 2px 5px #ffffff,
                inset 0 -2.5px 0 rgba(var(--theme-rgb), 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hm-journey-card-wrap:hover .hm-jc-icon-circle-3d {
    transform: scale(1.1) translateY(-6px) rotate(4deg);
    border-color: rgba(255, 255, 255, 0.35);
    background: radial-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 1),
                inset 0 -2.5px 0 rgba(255, 255, 255, 0.3);
}

.hm-js-svg-3d {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hm-journey-card-wrap:hover .hm-js-svg-3d {
    transform: scale(1.08) translateY(-2px);
}

/* Card Body */
.hm-jc-body {
    flex-grow: 1;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hm-jc-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #4A1905;
    margin-bottom: 0.85rem;
    line-height: 1.35;
    transition: color 0.4s ease;
}

.hm-journey-card-wrap:hover .hm-jc-title {
    color: #ffffff;
}

.hm-jc-desc {
    font-size: 0.92rem;
    color: #423023;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.hm-journey-card-wrap:hover .hm-jc-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Sub-chips (hoverable pill tags) */
.hm-jc-sub-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.25rem;
}
.hm-jc-sub-chip {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--theme-border-light);
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}
.hm-jc-chip-icon {
    width: 11px;
    height: 11px;
    stroke-width: 3px;
    color: var(--theme-color);
    transition: all 0.3s ease;
}
.hm-journey-card-wrap:hover .hm-jc-sub-chip {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.hm-journey-card-wrap:hover .hm-jc-chip-icon {
    color: #ffffff;
}
.hm-jc-sub-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.hm-journey-card-wrap .hm-jc-sub-chip:hover {
    background: #ffffff !important;
    color: var(--theme-color) !important;
}
.hm-journey-card-wrap .hm-jc-sub-chip:hover .hm-jc-chip-icon {
    color: var(--theme-color) !important;
    transform: scale(1.2);
}

/* Card Footer with certified Trust Pills */
.hm-jc-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
}

.hm-jc-trust-pill-premium {
    background: rgba(var(--theme-rgb), 0.06);
    border: 1.5px solid rgba(var(--theme-rgb), 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(var(--theme-rgb), 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.hm-jc-trust-pill-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(var(--theme-rgb), 0.15) 0%, transparent 100%);
    opacity: 0.85;
    transition: opacity 0.4s ease;
}
.hm-jc-trust-svg-premium {
    width: 14px;
    height: 14px;
    color: var(--theme-color);
    flex-shrink: 0;
    transition: transform 0.4s ease, color 0.4s ease;
}
.hm-jc-trust-label-premium {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: 0.01em;
    opacity: 0.9;
    transition: color 0.4s ease;
}
.hm-journey-card-wrap:hover .hm-jc-trust-pill-premium {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
}
.hm-journey-card-wrap:hover .hm-jc-trust-pill-glow {
    opacity: 0;
}
.hm-journey-card-wrap:hover .hm-jc-trust-svg-premium {
    color: #ffffff;
    transform: scale(1.15) rotate(10deg);
}
.hm-journey-card-wrap:hover .hm-jc-trust-label-premium {
    color: #ffffff;
}


/* ════════════════════════════════════════════════════════════
   SECTION 8: TESTIMONIALS (ENHANCED LIGHTING & HIGH-VISIBILITY DESIGN)
   ════════════════════════════════════════════════════════════ */
.hm-reviews-section {
    padding: var(--vm-section-pad);
    background: radial-gradient(ellipse at 50% 0%, rgba(254, 243, 199, 0.5) 0%, rgba(236, 253, 245, 0.45) 50%, #fefcf9 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hm-reviews-section .hm-section-title {
    color: #2b1408;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
}
.hm-reviews-section .hm-section-sub {
    color: #4a3427;
    font-size: 1.08rem;
    font-weight: 600;
    max-width: 650px;
    margin: 0.75rem auto 0;
}
.hm-reviews-section .hm-eyebrow {
    background: rgba(245, 158, 11, 0.12);
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    color: #d97706;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hm-reviews-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hm-rb-circle {
    position: absolute; border-radius: 50%; filter: blur(110px);
}
.hm-rb-c1 {
    width: 650px; height: 650px; top: -150px; left: -150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, transparent 70%);
    animation: rBlobFloat 12s ease-in-out infinite alternate;
}
.hm-rb-c2 {
    width: 550px; height: 550px; bottom: -150px; right: -150px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    animation: rBlobFloat 14s ease-in-out infinite alternate-reverse;
}
@keyframes rBlobFloat {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    100% { transform: translateY(-30px) scale(1.15); opacity: 0.9; }
}

.hm-reviews-section .hm-section-head { position: relative; z-index: 1; }
.hm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative; z-index: 1;
}

@media (max-width: 1100px) {
    .hm-reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
    .hm-reviews-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.hm-review-card {
    background: linear-gradient(155deg, #ffffff 0%, #fffdfa 55%, #fff8f0 100%);
    border: 1.5px solid rgba(226, 114, 17, 0.22);
    border-radius: 28px;
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: 0 16px 42px -12px rgba(90, 30, 6, 0.09), inset 0 1.5px 0 #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: calc(var(--ri,0) * 80ms);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hm-review-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--theme-gradient, linear-gradient(90deg, #10b981, #f59e0b));
    border-radius: 4px 4px 0 0;
    opacity: 0.95;
    transition: height 0.3s ease, opacity 0.3s ease;
}
.hm-review-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--theme-color);
    box-shadow: 0 28px 60px -15px rgba(var(--theme-rgb), 0.35), 
                0 10px 25px -10px rgba(var(--theme-rgb), 0.2), 
                inset 0 1.5px 0 #ffffff;
}
.hm-review-card:hover::before {
    height: 6px;
    opacity: 1;
}

.hm-rc-quote {
    font-size: 5.5rem;
    font-family: Georgia, serif;
    color: rgba(var(--theme-rgb, 16, 185, 129), 0.18);
    line-height: 0.7;
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    user-select: none;
    pointer-events: none;
}
.hm-rc-stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.hm-star-fill  {
    color: #f59e0b;
    font-size: 1.15rem;
    filter: drop-shadow(0 2px 6px rgba(245, 158, 11, 0.45));
}
.hm-star-empty { color: #e5e7eb; font-size: 1.15rem; }
.hm-rc-text {
    font-size: 0.96rem;
    color: #2d1a0e;
    line-height: 1.75;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}
.hm-rc-author  {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(226, 114, 17, 0.12);
    padding-top: 1.25rem;
}
.hm-rc-avatar  {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--theme-color);
    box-shadow: 0 0 14px rgba(var(--theme-rgb), 0.35);
}
.hm-rc-avatar-txt {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem; font-weight: 900; flex-shrink: 0;
    background: var(--theme-gradient);
    box-shadow: 0 4px 14px rgba(var(--theme-rgb), 0.4);
}
.hm-rc-info  { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.hm-rc-name  { font-size: 1rem; font-weight: 800; color: #2b1408; }
.hm-rc-role  { font-size: 0.78rem; font-weight: 600; color: #78350f; }
.hm-rc-verified svg { filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.45)); }

/* ════════════════════════════════════════════════════════════
   SECTION 9: OUR ROOTS / FROM THE HEART OF MIRZAPUR
   ════════════════════════════════════════════════════════════ */
.hm-roots-section {
    padding: 100px 0 60px;
    background: #FAF8F3;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .hm-roots-section {
    background: #0d1a12;
}

/* Botanical Background Sketch Accents */
.hm-roots-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hm-roots-sketch {
    position: absolute;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}
.hm-roots-sketch-left {
    left: -15px;
    bottom: 15px;
    max-height: 480px;
    width: auto;
    opacity: 0.72;
}
.hm-roots-sketch-right {
    right: -20px;
    top: 20px;
    max-height: 520px;
    width: auto;
    opacity: 0.65;
}

.hm-roots-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ─── Left Visual: Farmer Card ─── */
.hm-roots-visual {
    position: relative;
}
.hm-roots-card {
    position: relative;
    background: #EDEAE1;
    border: 1.5px solid #E6E1D3;
    border-radius: 40px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(26, 54, 34, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hm-roots-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(26, 54, 34, 0.11);
}
.hm-roots-photo-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 500px;
}
.hm-roots-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 6s ease;
}
.hm-roots-card:hover .hm-roots-photo {
    transform: scale(1.03);
}

/* Top-Left Badge: 50+ Villages */
.hm-roots-badge-tl {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #143521;
    border-radius: 20px;
    padding: 16px 20px 14px;
    box-shadow: 0 14px 30px rgba(10, 30, 15, 0.28);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hm-rb-num {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}
.hm-rb-lbl {
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #E5A93B;
    text-transform: uppercase;
    margin-top: 3px;
}
.hm-rb-leaf {
    margin-top: 4px;
    display: block;
}

/* Bottom-Right Badge: 2018 Established */
.hm-roots-badge-br {
    position: absolute;
    bottom: 50px;
    right: -16px;
    background: #FDFBF7;
    border: 1.5px solid #E2D9C8;
    border-radius: 20px;
    padding: 16px 22px 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}
.hm-rb-est-num {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-weight: 800;
    color: #B37D2E;
    line-height: 1;
}
.hm-rb-est-lbl {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #556253;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Bottom-Center Floating Pill */
.hm-roots-pill-bc {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #183B24 0%, #0E2416 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    z-index: 6;
    white-space: nowrap;
}
.hm-rp-globe {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(229, 169, 59, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hm-rp-text strong {
    display: block;
    font-size: 0.96rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
}
.hm-rp-text span {
    display: block;
    font-size: 0.76rem;
    color: #A3C4AB;
    line-height: 1.2;
}

/* ─── Right Content Column ─── */
.hm-roots-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow Header */
.hm-roots-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 0.85rem;
}
.hm-roots-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hm-roots-eyebrow-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #143521;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hm-roots-eyebrow-txt {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #143521;
    text-transform: uppercase;
}
.hm-roots-eyebrow-rule {
    flex: 1;
    max-width: 160px;
    height: 1.5px;
    background: #C58B38;
    opacity: 0.55;
}

/* Heading */
.hm-roots-title {
    font-family: var(--font-head);
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.18;
    color: #1A3622;
    margin: 0 0 0.35rem 0;
}
.hm-roots-title-accent {
    color: #C58B38;
}

/* Flourish */
.hm-roots-flourish {
    margin: 0.1rem 0 1.2rem;
    display: flex;
    align-items: center;
}

/* Description */
.hm-roots-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #4A564A;
    margin: 0 0 1.5rem 0;
    max-width: 530px;
}
[data-theme="dark"] .hm-roots-desc {
    color: #CBD5E1;
}

/* Feature Pills Grid */
.hm-roots-pills-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px 12px;
    margin-bottom: 1.75rem;
    width: 100%;
}
.hm-roots-pill-item {
    background: #EFECE3;
    border: 1px solid #DFD9CB;
    border-radius: 9999px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #273E2B;
    transition: all 0.25s ease;
}
.hm-roots-pill-item:hover {
    background: #143521;
    color: #FFFFFF;
    border-color: #143521;
    transform: translateY(-2px);
}
.hm-roots-pill-item:hover .hm-rpi-svg {
    stroke: #E5A93B;
}
[data-theme="dark"] .hm-roots-pill-item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #E2E8F0;
}

/* Elevated Metrics Card */
.hm-roots-metrics-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.75rem;
}
[data-theme="dark"] .hm-roots-metrics-card {
    background: #13241A;
    border-color: rgba(255, 255, 255, 0.08);
}
.hm-rm-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.hm-rm-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}
.hm-rm-num {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 800;
    color: #143521;
    line-height: 1.1;
}
[data-theme="dark"] .hm-rm-num {
    color: #A3C4AB;
}
.hm-rm-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #637062;
    text-transform: uppercase;
}
[data-theme="dark"] .hm-rm-label {
    color: #94A3B8;
}
.hm-rm-divider {
    width: 1px;
    height: 48px;
    background: #E8E5DC;
}
[data-theme="dark"] .hm-rm-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* CTA Link & Wrapper Frame */
.hm-roots-cta-wrap {
    margin-top: 1.25rem;
    padding: 14px 20px;
    border: 1.5px solid rgba(46, 89, 54, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
[data-theme="dark"] .hm-roots-cta-wrap {
    background: rgba(19, 36, 26, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
}
.hm-roots-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #143521;
    text-decoration: none;
    padding: 10px 24px;
    border: 1.8px solid #C58B38;
    border-radius: 9999px;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(197, 139, 56, 0.15);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.hm-roots-link:hover {
    background: #143521;
    color: #FFFFFF;
    border-color: #143521;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(20, 53, 33, 0.22);
    transform: translateY(-2px);
}
.hm-roots-link svg {
    color: #C58B38;
    transition: transform 0.25s ease, color 0.25s ease;
}
.hm-roots-link:hover svg {
    color: #FBBF24;
    transform: translateX(5px);
}
[data-theme="dark"] .hm-roots-link {
    background: #1A3323;
    color: #F8FAFC;
    border-color: #D97706;
}
[data-theme="dark"] .hm-roots-link:hover {
    background: #2D6A4F;
    color: #FFFFFF;
    border-color: #4ADE80;
}

/* Bottom Section Divider */
.hm-roots-bottom-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin-top: 85px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}
.hm-rbd-line {
    flex: 1;
    height: 1px;
    background: #D8D2C2;
}
[data-theme="dark"] .hm-rbd-line {
    background: rgba(255, 255, 255, 0.1);
}
.hm-rbd-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Responsive Media Queries ─── */
@media (max-width: 1024px) {
    .hm-roots-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hm-roots-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .hm-roots-content {
        align-items: center;
        text-align: center;
    }
    .hm-roots-eyebrow-wrap {
        justify-content: center;
    }
    .hm-roots-eyebrow-rule {
        display: none;
    }
    .hm-roots-desc {
        text-align: center;
    }
    .hm-roots-pills-grid {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hm-roots-section {
        padding: 60px 0 40px;
    }
    .hm-roots-photo-wrap {
        height: 380px;
    }
    .hm-roots-badge-tl {
        padding: 10px 14px;
        top: -8px;
        left: -8px;
    }
    .hm-rb-num {
        font-size: 1.35rem;
    }
    .hm-roots-badge-br {
        padding: 10px 14px;
        right: -8px;
        bottom: 35px;
    }
    .hm-rb-est-num {
        font-size: 1.35rem;
    }
    .hm-roots-pill-bc {
        padding: 8px 16px;
        bottom: -14px;
        gap: 10px;
        max-width: 90%;
    }
    .hm-roots-pill-bc strong {
        font-size: 0.82rem;
    }
    .hm-roots-pill-bc span {
        font-size: 0.68rem;
    }
    .hm-roots-title {
        font-size: 2.1rem;
    }
    .hm-roots-pills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-roots-metrics-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
        padding: 16px 12px !important;
    }
    .hm-roots-metrics-card .hm-rm-divider {
        display: none !important;
    }
    .hm-roots-sketch-left,
    .hm-roots-sketch-right {
        opacity: 0.35;
        max-height: 300px;
    }
}


/* ════════════════════════════════════════════════════════════
   SECTION 10: BLOG
   ════════════════════════════════════════════════════════════ */
.hm-blog-section {
    padding: var(--vm-section-pad);
    background: var(--vm-white);
}
.hm-blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
}
.hm-blog-card {
    background: white;
    border: 1.5px solid var(--vm-border);
    border-radius: var(--vm-r-xl);
    overflow: hidden;
    box-shadow: var(--vm-shadow-card);
    display: flex; flex-direction: column;
    transition: var(--vm-trans);
    transition-delay: calc(var(--bi,0) * 80ms);
}
.hm-blog-card:hover { transform: translateY(-7px); box-shadow: var(--vm-shadow-card-hover); border-color: var(--vm-green); }
.hm-blog-img-link { display: block; }
.hm-blog-img-wrap {
    position: relative; overflow: hidden;
    aspect-ratio: 16/9;
}
.hm-blog-featured .hm-blog-img-wrap { aspect-ratio: 4/3; }
.hm-blog-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.hm-blog-card:hover .hm-blog-img { transform: scale(1.07); }
.hm-blog-cat-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--vm-green); color: white;
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 4px 12px;
    border-radius: var(--vm-r-full);
}
.hm-blog-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.hm-blog-date { font-size: 0.74rem; color: var(--vm-text-faint); font-weight: 600; }
.hm-blog-title { font-size: 1.05rem; font-weight: 800; color: var(--vm-dark); line-height: 1.4; }
.hm-blog-title a { color: inherit; }
.hm-blog-title a:hover { color: var(--vm-green); }
.hm-blog-featured .hm-blog-title { font-size: 1.3rem; }
.hm-blog-excerpt { font-size: 0.85rem; color: var(--vm-text-mute); line-height: 1.65; flex: 1; }
.hm-blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 700; color: var(--vm-green);
    transition: gap 0.2s;
}
.hm-blog-read-more:hover { gap: 10px; }

/* ════════════════════════════════════════════════════════════
   SECTION 11: PARTNERS MARQUEE
   ════════════════════════════════════════════════════════════ */
.hm-partners-section {
    padding: 60px 0;
    background: var(--vm-surface);
}
.hm-partners-section .hm-section-head { padding: 0 2rem; }
.hm-partners-marquee-wrap {
    position: relative; overflow: hidden;
    padding: 20px 0;
}
.hm-partners-fader {
    position: absolute; top: 0; bottom: 0; z-index: 5;
    width: 120px; pointer-events: none;
}
.hm-pf-left  { left: 0;  background: linear-gradient(to right, var(--vm-surface), transparent); }
.hm-pf-right { right: 0; background: linear-gradient(to left, var(--vm-surface), transparent); }
.hm-partners-track {
    display: flex; gap: 0;
    animation: partnerScroll 35s linear infinite;
    width: max-content;
}
@keyframes partnerScroll { to { transform: translateX(-33.33%); } }
.hm-partner-logo {
    display: flex; align-items: center; justify-content: center;
    padding: 0 36px;
    border-right: 1px solid var(--vm-border);
}
.hm-partner-img {
    max-height: 50px; max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.5) opacity(0.6);
    transition: filter 0.3s, transform 0.3s;
}
.hm-partner-logo:hover .hm-partner-img { filter: none; transform: scale(1.06); }

/* ════════════════════════════════════════════════════════════
   SECTION 12: NEWSLETTER
   ════════════════════════════════════════════════════════════ */
.hm-newsletter-section {
    padding: var(--vm-section-pad);
    background: linear-gradient(145deg, hsl(152,68%,11%) 0%, hsl(152,65%,15%) 50%, hsl(38,70%,16%) 100%);
    color: white; position: relative; overflow: hidden; isolation: isolate;
}
.hm-nl-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hm-nl-mandala {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-size: 20rem; opacity: 0.04; line-height: 1;
    pointer-events: none;
    animation: rotateSlow 120s linear infinite;
}
.hm-nl-inner {
    position: relative; z-index: 1;
    display: flex; gap: 4rem; align-items: center;
    flex-wrap: wrap;
}
.hm-nl-content { flex: 1; min-width: 280px; }
.hm-nl-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: white;
    line-height: 1.15; letter-spacing: -0.025em;
    margin: 0.5rem 0 0.75rem;
}
.hm-nl-sub { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.hm-nl-form-wrap { flex: 1; min-width: 300px; }
.hm-nl-form  { display: flex; flex-direction: column; gap: 10px; }
.hm-nl-input-group { display: flex; gap: 8px; }
.hm-nl-input-group input {
    flex: 1; padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--vm-r-full);
    color: white; font-size: 0.95rem; font-family: var(--font-body);
    outline: none; transition: border-color 0.25s, background 0.25s;
}
.hm-nl-input-group input::placeholder { color: rgba(255,255,255,0.45); }
.hm-nl-input-group input:focus { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.15); }
.hm-nl-submit {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: var(--vm-r-full);
    background: linear-gradient(135deg, var(--vm-amber), var(--vm-amber-dark));
    color: white; font-size: 0.9rem; font-weight: 800; font-family: var(--font-head);
    cursor: pointer; border: none; white-space: nowrap;
    box-shadow: 0 8px 20px rgba(245,158,11,0.35);
    transition: var(--vm-trans);
}
.hm-nl-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245,158,11,0.45); }
.hm-nl-msg { font-size: 0.85rem; min-height: 1.2rem; }
.hm-nl-trust {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 10px;
}
.hm-nl-trust span { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — LARGE (≤1200px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hm-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .hm-cats-grid  { grid-template-columns: repeat(4, 1fr); }
    .hm-product-grid { grid-template-columns: repeat(3, 1fr); }
    .hm-journey-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .hm-journey-steps::before { display: none; }
    .hm-edge-grid { gap: 3.5rem; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    :root { --vm-section-pad: 70px 0; }
    .hm-hero .hm-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; align-items: start; }
    .hm-hero-ctas, .hm-hero-proof { justify-content: center; }
    .hm-hero-visual { display: none; }
    .hm-edge-grid   { grid-template-columns: 1fr; }
    .hm-edge-visual { max-width: 500px; margin: 0 auto; }
    .hm-story-grid  { grid-template-columns: 1fr; }
    .hm-story-visual { display: none; }
    .hm-reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-product-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-cats-grid    { grid-template-columns: repeat(4, 1fr); }
    .hm-journey-steps { grid-template-columns: repeat(2, 1fr); }
    .hm-stats-grid   { grid-template-columns: repeat(3, 1fr); }
    .hm-blog-grid    { grid-template-columns: 1fr; }
    .hm-blog-featured .hm-blog-img-wrap { aspect-ratio: 16/9; }
    .hm-nl-inner     { flex-direction: column; gap: 2.5rem; }
    .hm-head-split   { flex-direction: column; align-items: center; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    :root { --vm-section-pad: 54px 0; }
    .hm-container { padding: 0 1.25rem; }
    .hm-hero { min-height: unset; padding-top: 75px; padding-bottom: 40px; }
    .hm-hero .hm-container { padding-top: 0; padding-bottom: 0; }
    .hm-hero-h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hm-float-badge { display: none; }
    .hm-cats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hm-cat-emoji-wrap { height: 90px; }
    .hm-cat-footer { padding: 10px 8px 12px; }
    .hm-cat-name   { font-size: 0.78rem; }
    .hm-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hm-prod-cart-btn { font-size: 0.75rem; padding: 9px 10px; }
    .hm-reviews-grid { grid-template-columns: 1fr; }
    .hm-journey-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .hm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-edge-features { grid-template-columns: 1fr; }
    .hm-edge-img { height: 380px; }
    .hm-story-metrics { flex-direction: column; gap: 12px; }
    .hm-sm-divider { width: 80%; height: 1px; }
    .hm-sm-item { text-align: center; }
    .hm-nl-input-group { flex-direction: column; }
    .hm-nl-submit { width: 100%; justify-content: center; }
    .hm-cta { padding: 13px 24px; font-size: 0.92rem; }
    .hm-hero-ctas { flex-direction: column; align-items: center; }
    .hm-edge-badge { display: none; }
    .hm-hero-product-card { display: none; }
    .hm-hero-nut-badge { display: none; }
    .hm-section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .hm-eyebrow { font-size: 0.7rem; padding: 5px 14px; }
    .hm-blog-grid { grid-template-columns: 1fr; }
    .hm-story-pills { justify-content: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL (≤400px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
    .hm-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-product-grid { grid-template-columns: 1fr; }
    .hm-stats-grid { grid-template-columns: 1fr 1fr; }
    .hm-hero-proof { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════════════════════ */
:focus-visible { outline: 3px solid var(--vm-green); outline-offset: 3px; border-radius: 4px; }
.hm-cta:focus-visible { outline-color: white; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ════════════════════════════════════════════════════════════
   PRINT
   ════════════════════════════════════════════════════════════ */
@media print {
    .hm-hero-canvas, .hm-float-badge, .hm-trust-bar,
    .hm-hero-product-card, .hm-hero-nut-badge,
    .hm-scroll-down, .hm-edge-leaf { display: none !important; }
    .hm-hero { min-height: unset; color: black !important; background: white !important; }
    .hm-hero-h1, .hm-hero-sub { color: black !important; }
}

/* ════════════════════════════════════════════════════════════
   LEGACY COMPAT (keep old classes working)
   ════════════════════════════════════════════════════════════ */
.me-green         { color: var(--vm-green); }
.me-amber         { color: var(--vm-amber); }
.millet-edge-section { padding: var(--vm-section-pad); background: var(--vm-surface); }
.mission-section  { background: var(--vm-dark); color: white; padding: var(--vm-section-pad); }
.hm-section       { background: white; padding: var(--vm-section-pad); }
.bs-section       { background: white; padding: var(--vm-section-pad); }
.testimonials-section { background: white; padding: var(--vm-section-pad); }
.partners-section { background: var(--vm-surface); padding: 60px 0; }
.blog-highlights  { background: white; padding: var(--vm-section-pad); }

.container { max-width: var(--vm-container); margin: 0 auto; padding: 0 2rem; }
.text-gradient {
    background: linear-gradient(135deg, var(--vm-green), var(--vm-amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Keep category carousel working */
.category-section { padding: var(--vm-section-pad); background: var(--vm-off-white); }
.meesho-style-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 24px; padding: 30px 20px 50px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.meesho-style-grid::-webkit-scrollbar { display: none; }
@media (min-width: 992px) { .meesho-style-grid { justify-content: center; flex-wrap: wrap; overflow-x: visible; } }
.meesho-cat-card { flex: 0 0 auto; width: 150px; display: flex; flex-direction: column; text-decoration: none; background: white; transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06); scroll-snap-align: center; border: 1px solid rgba(0,0,0,0.02); }
.meesho-cat-card:hover { transform: translateY(-8px); box-shadow: 0 16px 36px rgba(0,0,0,0.12); }
.mc-img-wrap { height: 150px; background: var(--cat-light,#e8f5ea); display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 20px 20px 0 0; }
.mc-product-img { max-width: 75%; max-height: 75%; object-fit: contain; transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1); filter: drop-shadow(0 12px 18px rgba(0,0,0,0.12)); }
.meesho-cat-card:hover .mc-product-img { transform: scale(1.22) rotate(-5deg); }
.mc-title-box { background: white; padding: 16px 10px; text-align: center; }
.mc-name { color: var(--vm-dark); font-weight: 800; font-size: 1.05rem; font-family: var(--font-head); display: block; }
.cat-scroll-btn { position: absolute; top: 45%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.98); border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 1.3rem; color: var(--vm-dark); transition: var(--vm-trans); }
.cat-scroll-btn:hover { background: var(--vm-green); color: white; }
.cat-scroll-left  { left: 0; }
.cat-scroll-right { right: 0; }
@media (min-width: 992px) { .cat-scroll-btn { display: none !important; } }

/* ────────────────────────────────────────────────────────────
   7. ADVANCED PREMIUM STYLING — Trust & Partners
   500+ Lines of Professional CSS Architecture
   ──────────────────────────────────────────────────────────── */

/* ── Testimonials Advanced (Trusted by Happy Customers) ── */
.hm-reviews-section {
    padding: var(--vm-section-pad);
    background: radial-gradient(circle at 10% 20%, rgba(244, 249, 245, 1) 0%, rgba(255, 255, 255, 1) 90%);
    position: relative;
    overflow: hidden;
}

.hm-reviews-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hm-decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.hm-decor-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--vm-green);
    top: -200px;
    left: -200px;
}

.hm-decor-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--vm-amber);
    bottom: -150px;
    right: -100px;
}

.hm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Review Card */
.hm-review-card {
    background: linear-gradient(135deg, #ffffff 0%, rgba(254, 246, 238, 0.95) 100%);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 2px solid rgba(226, 114, 17, 0.26);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 14px 38px -10px rgba(90, 30, 6, 0.08),
                inset 0 -4px 0 rgba(226, 114, 17, 0.12),
                inset 0 1px 0 #ffffff;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hm-review-card:hover {
    transform: translateY(-12px) rotateX(1.5deg) rotateY(-0.5deg);
    background: var(--theme-gradient);
    border-color: var(--theme-color);
    box-shadow: 0 30px 60px -10px rgba(var(--theme-rgb), 0.45),
                inset 0 -5px 0 rgba(255, 255, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hm-rc-quote {
    position: absolute;
    top: 15px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--theme-color);
    opacity: 0.22;
    line-height: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}
.hm-review-card:hover .hm-rc-quote {
    color: #ffffff;
    opacity: 0.25;
}

.hm-rc-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.hm-star-fill { 
    color: var(--vm-amber); 
    font-size: 1.1rem; 
    transition: color 0.4s ease;
}
.hm-review-card:hover .hm-star-fill {
    color: #ffffff;
}
.hm-star-empty { 
    color: rgba(226, 114, 17, 0.3); 
    font-size: 1.1rem; 
    transition: color 0.4s ease;
}
.hm-review-card:hover .hm-star-empty {
    color: rgba(255, 255, 255, 0.35);
}

.hm-rc-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3D2B1F;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    transition: color 0.4s ease;
}
.hm-review-card:hover .hm-rc-text {
    color: #ffffff;
}

.hm-rc-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(226, 114, 17, 0.2);
    transition: border-color 0.4s ease;
}
.hm-review-card:hover .hm-rc-author {
    border-color: rgba(255, 255, 255, 0.2);
}

.hm-rc-avatar, .hm-rc-avatar-txt {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(226, 114, 17, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.hm-review-card:hover .hm-rc-avatar,
.hm-review-card:hover .hm-rc-avatar-txt {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.hm-rc-avatar-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.hm-rc-info {
    display: flex;
    flex-direction: column;
}

.hm-rc-name {
    font-weight: 800;
    color: #4A1905;
    font-size: 1rem;
    letter-spacing: -0.01em;
    transition: color 0.4s ease;
}
.hm-review-card:hover .hm-rc-name {
    color: #ffffff;
}

.hm-rc-role {
    font-size: 0.78rem;
    color: #6E5242;
    font-weight: 600;
    transition: color 0.4s ease;
}
.hm-review-card:hover .hm-rc-role {
    color: rgba(255, 255, 255, 0.8);
}
.hm-review-card:hover .hm-rc-role {
    color: rgba(255, 255, 255, 0.8);
}

.hm-rc-verified {
    margin-left: auto;
    width: 20px;
    height: 20px;
    background: var(--vm-green);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
    transition: all 0.4s ease;
}
.hm-review-card:hover .hm-rc-verified {
    background: #ffffff;
    color: var(--theme-color);
}

/* Review CTA Section */
.hm-reviews-cta {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.hm-reviews-stats {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #fffdfa 100%);
    padding: 18px 48px;
    border-radius: 99px;
    box-shadow: 0 14px 40px -10px rgba(90, 30, 6, 0.1), inset 0 1.5px 0 #ffffff;
    border: 1.5px solid rgba(226, 114, 17, 0.25);
}

.hm-rs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hm-rs-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #10b981;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.25);
    font-family: var(--font-display, sans-serif);
}

.hm-rs-lbl {
    font-size: 0.76rem;
    font-weight: 800;
    color: #5a1e06;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hm-rs-divider {
    width: 1.5px;
    height: 40px;
    background: rgba(226, 114, 17, 0.2);
    margin: 0 40px;
}

.hm-cta-outline-dark {
    background: #2b1408;
    color: #ffffff !important;
    border: 1.5px solid #2b1408;
    border-radius: 99px;
    padding: 14px 34px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(43, 20, 8, 0.28);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
}

.hm-cta-outline-dark:hover {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
}

    border: 2px solid var(--vm-dark);
    color: var(--vm-dark) !important;
}

.hm-cta-outline-dark:hover {
    background: var(--vm-dark);
    color: white !important;
}

/* ── Partners Advanced (Verified & Supported By) ── */
.hm-partners-section {
    padding: var(--vm-section-pad);
    background: #ffffff;
    border-top: 1px solid var(--vm-border-light);
    overflow: hidden;
}

.hm-partners-premium-container {
    position: relative;
    max-width: var(--vm-container);
    margin: 0 auto;
    padding: 40px 0;
}

.hm-partners-fader {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15vw;
    z-index: 5;
    pointer-events: none;
}

.hm-pf-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.hm-pf-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.hm-partners-track-wrapper {
    display: flex !important;
    animation: partnerMarquee 35s linear infinite !important;
    width: max-content !important;
}
.hm-partners-track-wrapper:hover { animation-play-state: paused !important; }

@keyframes partnerMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.hm-partner-logo {
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--vm-trans-fast);
}

.hm-partner-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--vm-trans);
}

.hm-partner-logo:hover .hm-partner-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hm-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-rs-divider { margin: 0 20px; }
    .hm-partners-track-wrapper { animation-duration: 30s; }
}

@media (max-width: 768px) {
    .hm-reviews-grid {
        grid-template-columns: 1fr;
    }
    .hm-review-card { padding: 30px; }
    .hm-reviews-stats { padding: 12px 25px; }
    .hm-rs-num { font-size: 1.2rem; }
    .hm-rs-divider { margin: 0 15px; }
    
    .hm-partner-img { height: 40px; }
    .hm-partner-logo { padding: 0 25px; }
}

/* ── ADVANCED MICRO-ANIMATIONS ── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hm-review-card:nth-child(even) {
    animation: float 6s ease-in-out infinite;
}

.hm-review-card:nth-child(odd) {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}



/* Glassmorphism for Partners section */
.hm-partners-premium-container::before {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(244, 249, 245, 0.4);
    backdrop-filter: blur(4px);
    border-radius: var(--vm-r-xl);
    z-index: -1;
    border: 1px solid rgba(255,255,255,0.6);
}

/* Premium Button Overrides */
.hm-cta {
    position: relative;
    z-index: 1;
}

.hm-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    z-index: -1;
}

.hm-cta:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
}

/* ── Typography Enhancements ── */
.hm-section-title {
    background: linear-gradient(135deg, var(--vm-dark) 0%, var(--vm-text-base) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shadow Layering */
.hm-review-card {
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Animation on reveal */
.hm-reveal-ready.hm-revealed {
    animation: revealUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Extra utility for spacing */
.mt-10 { margin-top: 2.5rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* ── TESTIMONIALS MASKING ── */
.hm-reviews-grid::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    filter: blur(20px);
}

/* ── PARTNER LOGO HOVER EFFECTS ── */
.hm-partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 0 transparent);
    transition: filter 0.3s ease;
}

.hm-partner-logo:hover a {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* ── MOBILE RESPONSIVE TWEAKS ── */
@media screen and (max-width: 480px) {
    .hm-section-title { font-size: 2.2rem; }
    .hm-eyebrow { font-size: 0.65rem; padding: 4px 12px; }
    .hm-review-card { padding: 24px; }
    .hm-rc-stars { margin-bottom: 12px; }
    .hm-rc-text { font-size: 0.95rem; }
    .hm-reviews-stats { 
        flex-direction: column; 
        gap: 15px; 
        padding: 20px; 
        border-radius: 20px;
    }
    .hm-rs-divider { 
        width: 40px; 
        height: 1px; 
        margin: 5px 0; 
    }
}

/* ── DARK MODE PREREQ (if user enables it later) ── */
[data-theme="dark"] .hm-review-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .hm-rc-text { color: #e2e8f0; }
[data-theme="dark"] .hm-rc-name { color: white; }
[data-theme="dark"] .hm-partners-section { background: #0f172a; }
[data-theme="dark"] .hm-pf-left { background: linear-gradient(to right, #0f172a, transparent); }
[data-theme="dark"] .hm-pf-right { background: linear-gradient(to left, #0f172a, transparent); }

/* ── END OF ADVANCED STYLING ── */

/* ── PREMIUM FLOATING ANIMATIONS (User Request) ── */
@keyframes premiumFloatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Ensure these elements shake/float slowly for a premium feel */
.hm-float-badge,
.hm-hero-product-card,
.hm-hero-nut-badge,
.hm-cat-emoji-wrap,
.hm-view-all-link,
.hm-cta,
.hm-story-stat,
.hm-story-float-card,
.hm-pb-badge,
.hm-edge-badge,
.hm-stat-box.hm-revealed {
    animation-name: premiumFloatSlow !important;
    animation-duration: 4s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
}

/* Pause animation on hover if they are interactive elements */
.hm-view-all-link:hover,
.hm-cta:hover,
.hm-story-stat:hover,
.hm-cat-emoji-wrap:hover,
.hm-pb-badge:hover,
.hm-edge-badge:hover {
    animation-play-state: paused !important;
}

/*  Homepage & Universal Price Anchoring Pill */
.vm-price-anchor-pill {
    display: inline-flex;
    align-items: center;
    background: #EBF3ED;
    color: #1B4D27;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1px;
    line-height: 1;
}
.vm-price-anchor-pill svg {
    color: #059669;
}





