/* ================================================================
   home-mobile.css — Mobile Responsiveness + Animations Fix
   Vindhya Millets | Production-Ready
   ================================================================ */

/* ────────────────────────────────────────────
   NAVBAR BRAND FIX (English version)
   ──────────────────────────────────────────── */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.15;
    letter-spacing: -0.01em;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--primary-color, #2E5936);
}

.brand-v {
    color: var(--primary-color, #2E5936);
    font-weight: 900;
}

.brand-m {
    color: var(--secondary-color, #E27211);
    font-weight: 800;
}

.brand-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    white-space: nowrap;
    margin-top: 1px;
    display: block;
}

[data-theme="dark"] .brand-title { color: #e2ede5; }
[data-theme="dark"] .brand-v    { color: #4ade80; }
[data-theme="dark"] .brand-subtitle { color: #7d9a87; }

/* ────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ──────────────────────────────────────────── */
.hm-reveal-ready {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.hm-reveal-ready.hm-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays by index */
.hm-prod-card[style*="--pi:0"], .hm-cat-card[style*="--ci:0"],
.hm-stat-box[style*="--si:0"], .hm-review-card[style*="--ri:0"] { transition-delay: 0ms; }
.hm-prod-card[style*="--pi:1"], .hm-cat-card[style*="--ci:1"],
.hm-stat-box[style*="--si:1"], .hm-review-card[style*="--ri:1"] { transition-delay: 80ms; }
.hm-prod-card[style*="--pi:2"], .hm-cat-card[style*="--ci:2"],
.hm-stat-box[style*="--si:2"], .hm-review-card[style*="--ri:2"] { transition-delay: 160ms; }
.hm-prod-card[style*="--pi:3"], .hm-cat-card[style*="--ci:3"],
.hm-stat-box[style*="--si:3"], .hm-review-card[style*="--ri:3"] { transition-delay: 240ms; }
.hm-prod-card[style*="--pi:4"], .hm-cat-card[style*="--ci:4"],
.hm-stat-box[style*="--si:4"] { transition-delay: 320ms; }
.hm-prod-card[style*="--pi:5"], .hm-cat-card[style*="--ci:5"],
.hm-stat-box[style*="--si:5"] { transition-delay: 400ms; }
.hm-journey-step[style*="--jsi:0"] { transition-delay: 0ms; }
.hm-journey-step[style*="--jsi:1"] { transition-delay: 100ms; }
.hm-journey-step[style*="--jsi:2"] { transition-delay: 200ms; }
.hm-journey-step[style*="--jsi:3"] { transition-delay: 300ms; }
.hm-journey-step[style*="--jsi:4"] { transition-delay: 400ms; }
.hm-journey-step[style*="--jsi:5"] { transition-delay: 500ms; }

/* Section headers animate in */
.hm-section-head,
.hm-edge-content > *,
.hm-story-content > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
                transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.hm-section-animate .hm-section-head,
.hm-section-animate .hm-edge-content > *,
.hm-section-animate .hm-story-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* ────────────────────────────────────────────
   PREMIUM PARTNERS SECTION REDESIGN
   ──────────────────────────────────────────── */
.hm-partners-section {
    background: linear-gradient(170deg, #f0faf4 0%, #fff 40%, #fffbf0 100%) !important;
    padding: 70px 0 60px !important;
    position: relative;
    overflow: hidden;
}
.hm-partners-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #FF9933, #138808, #FF9933, #fff, #138808);
    background-size: 300% 100%;
    animation: partnerTopBar 5s linear infinite;
}
@keyframes partnerTopBar {
    0%  { background-position: 0% 0; }
    100%{ background-position: 300% 0; }
}

.hm-partners-section .hm-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}
.hm-partners-section .hm-section-sub {
    max-width: 540px; margin: 0 auto;
}

/* Track wrapper improved */
.hm-partners-premium-container {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
}
/* Edge fade masks */
.hm-partners-fader {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.hm-pf-left  { left: 0;  background: linear-gradient(to right, #f0faf4 0%, transparent 100%); }
.hm-pf-right { right: 0; background: linear-gradient(to left,  #f0faf4 0%, transparent 100%); }

.hm-partners-track-wrapper {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    overflow: hidden;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
}
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}
.hm-partners-track-wrapper:hover { animation-play-state: paused; }

.hm-partner-logo {
    flex-shrink: 0;
    padding: 0 12px !important;
}
.hm-partner-logo a,
.hm-partner-logo > div {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    border: 1.5px solid #e5f0e9 !important;
    border-radius: 18px !important;
    padding: 18px 28px !important;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(46,89,54,0.07) !important;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.hm-partner-logo:hover a,
.hm-partner-logo:hover > div {
    border-color: #2E5936 !important;
    box-shadow: 0 10px 36px rgba(46,89,54,0.15) !important;
    transform: translateY(-6px) !important;
}
.hm-partner-img {
    height: 52px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    filter: grayscale(20%) brightness(0.95) !important;
    transition: filter 0.3s, transform 0.3s !important;
}
.hm-partner-logo:hover .hm-partner-img {
    filter: none !important;
    transform: scale(1.08) !important;
}

/* Badge row */
.hm-partners-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 0 20px;
}
.hm-pb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #edfaf3, #f5fff8);
    border: 1.5px solid rgba(46,89,54,0.18);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2E5936;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 10px rgba(46,89,54,0.06);
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.hm-pb-badge:hover {
    background: #2E5936;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46,89,54,0.25);
}

[data-theme="dark"] .hm-partners-section {
    background: linear-gradient(170deg, #071410 0%, #0a1a0f 100%) !important;
}
[data-theme="dark"] .hm-pb-badge {
    background: rgba(74,222,128,0.08);
    color: #4ade80;
    border-color: rgba(74,222,128,0.2);
}
[data-theme="dark"] .hm-pb-badge:hover { background: rgba(74,222,128,0.2); }

/* ────────────────────────────────────────────
   MOBILE RESPONSIVENESS — GLOBAL
   ──────────────────────────────────────────── */

/* Container full-width on mobile */
@media (max-width: 768px) {
    .hm-container { padding-left: 16px !important; padding-right: 16px !important; }

    /* Fix logo.max-width from enhancements.css on mobile */
    .logo { max-width: none !important; }
    .nav-container { gap: 4px; }

    /* Navbar brand on mobile */
    .brand-title { font-size: 1.3rem; white-space: nowrap; gap: 4px; }
    .brand-subtitle { display: none !important; }
    .logo-img { height: 44px !important; }
    .logo { gap: 8px !important; }

    /* Hero section */
    .hm-hero .hm-container {
        grid-template-columns: 1fr !important;
        padding-top: 60px !important;
        padding-bottom: 40px !important;
        gap: 32px;
    }
    .hm-hero-visual { display: none; }
    .hm-hero-content { text-align: center; align-items: center; }
    .hm-hero-h1 { font-size: clamp(1.9rem, 7vw, 2.8rem) !important; }
    .hm-hero-sub { font-size: 0.95rem !important; max-width: 100% !important; }
    .hm-hero-ctas { flex-direction: column; width: 100%; }
    .hm-hero-ctas .hm-cta { width: 100%; justify-content: center; }
    .hm-hero-proof { justify-content: center; flex-wrap: wrap; }
    .hm-float-badge { display: none; }

    /* Trust bar */
    .hm-trust-bar { padding: 10px 0; }
    .hm-trust-item { padding: 0 12px; font-size: 0.8rem; }

    /* Category grid — 3 columns on tablet */
    .hm-cats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
        max-width: 100% !important;
    }
    /* Remove bad padding override; cards are full flex-column cards */
    .hm-cat-card { padding: 0 !important; }
    /* Emoji wrap: full-width header area with rounded top corners */
    .hm-cat-emoji-wrap {
        height: 100px !important;
        width: 100% !important;
        border-radius: 14px 14px 0 0 !important;
    }

    /* Products grid */
    .hm-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .hm-prod-card { padding: 0 0 12px !important; }
    .hm-prod-name { font-size: 0.82rem !important; }
    .hm-prod-price-final { font-size: 1rem !important; }
    .hm-prod-cart-btn { font-size: 0.72rem !important; padding: 8px 8px !important; }

    /* Section heads */
    .hm-section-head  { text-align: center !important; }
    .hm-section-title { font-size: clamp(1.4rem, 5vw, 2rem) !important; text-align: center !important; }
    .hm-section-sub   { font-size: 0.9rem !important; text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .hm-head-split    { flex-direction: column !important; gap: 14px !important; align-items: center !important; text-align: center !important; }
    .hm-head-split > div { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100% !important; }
    .hm-eyebrow       { margin-left: auto !important; margin-right: auto !important; }
    .hm-view-all-link { margin-left: auto !important; margin-right: auto !important; }

    /* Millet edge */
    .hm-edge-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .hm-edge-visual { order: 2; }
    .hm-edge-content { order: 1; }
    .hm-edge-features { grid-template-columns: 1fr !important; }
    .hm-edge-img-frame { max-height: 280px; overflow: hidden; border-radius: 20px; }

    /* Mission stats */
    .hm-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .hm-stat-box   { padding: 20px 10px !important; }
    .hm-stat-num   { font-size: 1.6rem !important; }

    /* Journey */
    .hm-journey-steps { grid-template-columns: 1fr !important; gap: 16px !important; }
    .hm-js-connector  { display: none !important; }

    /* Reviews */
    .hm-reviews-grid { grid-template-columns: 1fr !important; }
    .hm-reviews-stats { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 14px !important; padding: 10px 16px !important; border-radius: 99px !important; flex-wrap: nowrap !important; }
    .hm-rs-divider { width: 1px !important; height: 28px !important; min-height: 28px !important; background: rgba(226, 114, 17, 0.3) !important; margin: 0 !important; }
    .hm-rs-item { text-align: center !important; }
    .hm-rs-num { font-size: 1.05rem !important; }
    .hm-rs-lbl { font-size: 0.7rem !important; }

    /* ════════════════════════════════════════════════════════════
       OUR ROOTS / MIRZAPUR HERITAGE — ULTRA-PREMIUM MOBILE VIEW
       ════════════════════════════════════════════════════════════ */
    .hm-story-section {
        background: linear-gradient(165deg, #FFFDF8 0%, #F5ECE0 45%, #EBE0D2 100%) !important;
        padding: 56px 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .hm-story-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 36px !important;
    }

    .hm-story-content {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .hm-story-content .hm-eyebrow {
        margin: 0 auto 14px !important;
        background: linear-gradient(135deg, rgba(44, 110, 42, 0.14), rgba(44, 110, 42, 0.06)) !important;
        border: 1.5px solid rgba(44, 110, 42, 0.3) !important;
        color: #2C6E2A !important;
        padding: 6px 18px !important;
        font-weight: 800 !important;
    }

    .hm-story-content .hm-section-title {
        text-align: center !important;
        font-size: clamp(1.65rem, 5.5vw, 2.3rem) !important;
        line-height: 1.25 !important;
        color: #3B1405 !important;
        margin-bottom: 14px !important;
    }

    .hm-story-content .hm-section-sub {
        text-align: center !important;
        font-size: 0.92rem !important;
        line-height: 1.7 !important;
        color: #5A3E2B !important;
        margin: 0 auto 24px !important;
        max-width: 540px !important;
    }

    /* Feature Pills Grid (2 Columns on Mobile) */
    .hm-story-pills {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        margin-bottom: 24px !important;
    }

    .hm-story-pill {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1.5px solid rgba(90, 30, 6, 0.14) !important;
        border-radius: 50px !important;
        padding: 10px 12px !important;
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        color: #4A1905 !important;
        box-shadow: 0 4px 14px rgba(90, 30, 6, 0.06) !important;
        backdrop-filter: blur(8px) !important;
        white-space: nowrap !important;
    }

    .hm-story-pill .hm-pill-svg,
    .hm-story-pill svg {
        width: 15px !important;
        height: 15px !important;
        color: #2C6E2A !important;
        flex-shrink: 0 !important;
    }

    /* Metrics Dashboard Card */
    .hm-story-metrics {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-around !important;
        width: 100% !important;
        background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%) !important;
        border: 1.5px solid rgba(90, 30, 6, 0.15) !important;
        border-radius: 24px !important;
        padding: 20px 10px !important;
        box-shadow: 0 16px 36px -10px rgba(90, 30, 6, 0.12), inset 0 1.5px 0 #ffffff !important;
        margin-bottom: 26px !important;
        gap: 6px !important;
    }

    .hm-sm-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        flex: 1 !important;
    }

    .hm-sm-num {
        font-family: var(--font-head, sans-serif) !important;
        font-size: 1.3rem !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
        color: #5A1E06 !important;
        background: linear-gradient(135deg, #5A1E06, #D48806) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        margin-bottom: 4px !important;
    }

    .hm-sm-lbl {
        font-size: 0.66rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.04em !important;
        color: #7A533E !important;
        line-height: 1.3 !important;
    }

    .hm-sm-divider {
        width: 1px !important;
        height: 36px !important;
        background: rgba(90, 30, 6, 0.15) !important;
        margin: 0 !important;
    }

    /* Learn More CTA Link Button */
    .hm-story-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        background: linear-gradient(135deg, #2C6E2A 0%, #1c4d1a 100%) !important;
        color: #ffffff !important;
        font-size: 0.92rem !important;
        font-weight: 800 !important;
        padding: 14px 28px !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        box-shadow: 0 12px 28px rgba(44, 110, 42, 0.35) !important;
        transition: all 0.3s ease !important;
    }

    .hm-story-link svg {
        stroke: #ffffff !important;
        transition: transform 0.3s ease !important;
    }

    /* Visual Image Frame Side */
    .hm-story-visual {
        order: 2 !important;
        margin-top: 10px !important;
        padding: 0 10px !important;
        position: relative !important;
    }

    .hm-story-img-wrap {
        border-radius: 28px !important;
        border: 3px solid rgba(44, 110, 42, 0.25) !important;
        box-shadow: 0 24px 50px -10px rgba(44, 110, 42, 0.22) !important;
        overflow: hidden !important;
        max-height: 360px !important;
        position: relative !important;
    }

    .hm-story-img {
        border-radius: 24px !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .hm-story-float-card {
        position: absolute !important;
        bottom: 14px !important;
        right: 14px !important;
        left: 14px !important;
        max-width: none !important;
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(16px) !important;
        border: 1.5px solid rgba(255, 255, 255, 0.8) !important;
        border-radius: 18px !important;
        padding: 10px 16px !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
    }

    .hm-sfc-icon { font-size: 1.3rem !important; }
    .hm-sfc-txt strong { font-size: 0.78rem !important; color: #3B1405 !important; }
    .hm-sfc-txt span { font-size: 0.65rem !important; color: #5A3E2B !important; }
    .hm-ss-br { display: none !important; }
    .hm-story-accent-circle { display: none !important; }

    /* Blog */
    .hm-blog-grid { grid-template-columns: 1fr !important; }

    /* Partners */
    .hm-pb-badge { font-size: 0.75rem; padding: 8px 14px; }

    /* Sections spacing */
    .hm-cats-section,
    .hm-products-section,
    .hm-edge-section,
    .hm-journey-section,
    .hm-reviews-section,
    .hm-story-section,
    .hm-blog-section,
    .hm-partners-section { padding: 48px 0 !important; }

    .hm-mission-section { padding: 52px 0 !important; }
}

@media (max-width: 480px) {
    /* 2 columns on small phones */
    .hm-cats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .hm-cat-emoji-wrap { height: 85px !important; }
    .hm-cat-name { font-size: 0.78rem !important; }
    .hm-product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .hm-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hm-reviews-stats { flex-wrap: nowrap !important; flex-direction: row !important; }
    .hm-story-metrics { flex-direction: column !important; gap: 0 !important; }
    .hm-sm-divider { width: 80% !important; height: 1px !important; }
    .hm-products-cta-note { font-size: 0.75rem !important; }
    .hm-mission-title { font-size: clamp(1.5rem,6vw,2rem) !important; }
    .hm-mission-body  { font-size: 0.9rem !important; }
}

/* ================================================================
   NEW HOMEPAGE FULL MOBILE RESPONSIVE ENGINE (2026 EDITION)
   Covers: <= 992px, <= 768px, <= 480px, <= 360px
   ================================================================ */

/* 1. Global Zero-Overflow Shield */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

#main-content,
.hm-panoramic-hero,
.hm-category-showcase,
.hm-products-section,
.hm-edge-section,
.hm-mission-section,
.hm-process-section,
.hm-testimonials-section,
.hm-roots-section,
.hm-partners-section,
.hm-blog-section {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

/* 2. Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
    .hm-cat-cards-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
    }
    .hm-bs-cards-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .hm-edge-two-col {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .hm-mission-top-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .hm-process-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .hm-process-timeline {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        max-width: 360px !important;
        margin: 0 auto 20px auto !important;
        gap: 6px !important;
        padding: 0 4px !important;
    }
    .hm-process-timeline .hm-step-node {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.68rem !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 0 0 3px #FAFDF9 !important;
    }
    .hm-process-timeline .hm-timeline-arrow {
        display: none !important;
    }
    .hm-timeline-comet {
        width: 80px !important;
    }
    .hm-testi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        gap: 20px !important;
    }
    .hm-roots-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .hm-blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* 3. Mobile Phones (max-width: 768px) */
@media (max-width: 768px) {
    /* Global Container Padding */
    .hm-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
        width: 100% !important;
    }

    /* Section vertical padding */
    .hm-category-showcase,
    .hm-products-section,
    .hm-edge-section,
    .hm-mission-section,
    .hm-process-section,
    .hm-testimonials-section,
    .hm-roots-section,
    .hm-partners-section,
    .hm-blog-section {
        padding: 50px 0 !important;
    }

    /* Hide bulky decorative background foliage that causes horizontal scrolling */
    .hm-real-leaf,
    .hm-real-grain,
    .hm-decor-backdrop,
    .hm-decor-foliage,
    .hm-decor-dots,
    .hm-cat-botanical,
    .hm-process-decor-tl,
    .hm-process-decor-bl-bowl,
    .hm-process-decor-bl-wheat,
    .hm-process-decor-br-wheat,
    .hm-testi-decor-left,
    .hm-testi-decor-right,
    .hm-testi-decor-grain,
    .hm-roots-sketch-left,
    .hm-roots-sketch-right {
        display: none !important;
    }

    /* --- HERO SECTION --- */
    .hm-panoramic-hero {
        padding-top: 14px !important;
        padding-bottom: 24px !important;
    }
    .hm-hero-panoramic-container {
        flex-direction: column !important;
        padding: 24px 12px !important;
        gap: 20px !important;
        text-align: center !important;
    }
    .hm-hero-panoramic-left {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .hm-hero-badge-pill {
        font-size: 0.76rem !important;
        padding: 6px 14px !important;
        margin-bottom: 12px !important;
    }
    .hm-hero-panoramic-h1 {
        font-size: clamp(1.85rem, 6.5vw, 2.5rem) !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }
    .hm-hero-panoramic-sub {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }
    .hm-hero-panoramic-ctas {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        align-items: center !important;
    }
    .hm-btn-hero-primary,
    .hm-btn-hero-secondary {
        width: 100% !important;
        max-width: 320px !important;
        height: 48px !important;
        font-size: 0.92rem !important;
        justify-content: center !important;
    }
    .hm-hero-proof-compact {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 18px !important;
        align-items: center !important;
        text-align: center !important;
    }
    .hm-hero-proof-compact .hm-proof-avatars {
        margin-right: 0 !important;
    }
    .hm-hero-proof-compact .hm-proof-av-img {
        width: 32px !important;
        height: 32px !important;
    }
    .hm-hero-panoramic-right {
        display: none !important;
    }

    /* --- SECTION 2: MARQUEE TRUST BAR --- */
    .hm-trust-bar {
        padding: 10px 0 !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    .hm-trust-track {
        display: flex !important;
        width: max-content !important;
        animation: trustScroll 24s linear infinite !important;
    }
    .hm-trust-bar .hm-trust-item {
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        min-width: max-content !important;
        padding: 0 16px !important;
        font-size: 0.78rem !important;
        white-space: nowrap !important;
        border-radius: 0 !important;
        border-right: 1px solid rgba(46, 89, 54, 0.15) !important;
    }

    /* --- SECTION 3: SHOP BY CATEGORY --- */
    .hm-cat-header-wrap {
        margin-bottom: 24px !important;
    }
    .hm-cat-title-text {
        font-size: 1.55rem !important;
        letter-spacing: 0.04em !important;
    }
    .hm-cat-subtitle-text {
        font-size: 0.85rem !important;
    }
    .hm-cat-cards-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .hm-cat-tile {
        padding: 14px 8px 12px 8px !important;
        border-radius: 16px !important;
    }
    .hm-cat-tile-visual {
        height: 70px !important;
        margin-bottom: 6px !important;
    }
    .hm-cat-tile-img {
        max-height: 60px !important;
    }
    .hm-cat-tile-title {
        font-size: 0.9rem !important;
    }
    .hm-cat-tile-sub {
        font-size: 0.7rem !important;
        min-height: 26px !important;
        line-height: 1.2 !important;
    }
    .hm-cat-tile-bottom-row {
        margin-top: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        gap: 6px !important;
    }
    .hm-cat-price-badge {
        font-size: 0.68rem !important;
        padding: 2px 7px !important;
        margin: 0 !important;
    }
    .hm-cat-tile-btn-wrap {
        margin: 0 !important;
        width: auto !important;
    }
    .hm-cat-circle-btn {
        width: 26px !important;
        height: 26px !important;
    }

    /* --- SECTION 4: BEST SELLERS --- */
    .hm-bs-heading-wrap {
        margin-bottom: 24px !important;
    }
    .hm-bs-title {
        font-size: 1.85rem !important;
        gap: 8px !important;
    }
    .hm-bs-title-leaf svg {
        width: 18px !important;
        height: 18px !important;
    }
    .hm-bs-sub {
        font-size: 0.88rem !important;
    }
    .hm-bs-cards-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .hm-bs-card {
        border-radius: 16px !important;
    }
    .hm-bs-card-media {
        height: 130px !important;
    }
    .hm-bs-corner-badge {
        font-size: 0.62rem !important;
        padding: 3px 6px !important;
        top: 6px !important;
        right: 6px !important;
    }
    .hm-bs-card-body {
        padding: 10px 8px 8px 8px !important;
    }
    .hm-bs-prod-title {
        font-size: 0.82rem !important;
        min-height: 30px !important;
        line-height: 1.25 !important;
    }
    .hm-bs-fomo-urgency, .hm-bs-fomo-sales {
        font-size: 0.68rem !important;
    }
    .hm-bs-price-main {
        font-size: 1.05rem !important;
    }
    .hm-bs-price-strike {
        font-size: 0.75rem !important;
    }
    .hm-bs-wishlist-btn {
        width: 30px !important;
        height: 30px !important;
        top: 6px !important;
        left: 6px !important;
    }
    .hm-bs-wishlist-btn svg {
        width: 14px !important;
        height: 14px !important;
    }
    .hm-bs-media-discount {
        font-size: 0.62rem !important;
        padding: 2px 5px !important;
        bottom: 5px !important;
        left: 5px !important;
    }
    .hm-bs-weight-tag {
        font-size: 0.62rem !important;
        padding: 1px 4px !important;
    }
    .hm-bs-benefit-pill {
        font-size: 0.62rem !important;
        padding: 1px 5px !important;
    }
    .hm-bs-benefits-row {
        gap: 3px !important;
        margin-bottom: 5px !important;
    }
    .hm-bs-save-badge {
        font-size: 0.62rem !important;
        padding: 1px 4px !important;
    }
    .hm-bs-card-footer {
        padding: 0 8px 10px 8px !important;
        gap: 5px !important;
    }
    .hm-bs-qty-stepper {
        height: 34px !important;
        padding: 0 2px !important;
    }
    .hm-qty-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.8rem !important;
    }
    .hm-qty-display {
        min-width: 14px !important;
        font-size: 0.75rem !important;
    }
    .hm-bs-cart-btn {
        height: 34px !important;
        font-size: 0.72rem !important;
        gap: 4px !important;
        padding: 0 6px !important;
        white-space: nowrap !important;
    }
    .hm-bs-cart-btn span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .hm-bs-cart-btn svg {
        width: 13px !important;
        height: 13px !important;
        flex-shrink: 0 !important;
    }
    .hm-bs-view-btn {
        width: 34px !important;
        height: 34px !important;
        flex-shrink: 0 !important;
    }

    @media (max-width: 440px) {
        .hm-cart-txt-full {
            display: none !important;
        }
        .hm-cart-txt-short {
            display: inline !important;
        }
    }

    /* --- SECTION 5: THE MILLET EDGE --- */
    .hm-edge-headline {
        font-size: 1.8rem !important;
        text-align: center !important;
        line-height: 1.25 !important;
    }
    .hm-edge-subhead {
        text-align: center !important;
        font-size: 0.88rem !important;
    }
    .hm-edge-vine-decor {
        justify-content: center !important;
        margin: 0 auto 14px auto !important;
    }
    .hm-edge-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 24px !important;
    }
    .hm-edge-feature-card {
        padding: 12px 10px !important;
        border-radius: 14px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }
    .hm-edge-cta-row {
        flex-direction: row !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .hm-edge-btn-story,
    .hm-edge-btn-journey {
        flex: 1 1 0 !important;
        max-width: 175px !important;
        padding: 10px 14px !important;
        font-size: 0.84rem !important;
        justify-content: center !important;
    }
    .hm-edge-image-container {
        border-radius: 20px !important;
        max-width: 100% !important;
        overflow: visible !important;
        margin: 16px auto 0 auto !important;
    }
    .hm-edge-img-wrap {
        border-radius: 20px !important;
        height: 280px !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .hm-edge-featured-img {
        height: 280px !important;
        border-radius: 20px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .hm-ebf-farmers {
        top: 12px !important;
        left: 12px !important;
        padding: 6px 10px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    .hm-ebf-excellence {
        bottom: 12px !important;
        right: 12px !important;
        padding: 6px 10px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
    .hm-ebf-strip {
        display: none !important; /* Hide cluttered strip on mobile to highlight the photo and key badges */
    }
    .hm-ebf-fssai {
        width: 46px !important;
        height: 46px !important;
        top: 12px !important;
        right: 12px !important;
        padding: 4px !important;
        border-radius: 50% !important;
        background: #ffffff !important;
    }

    /* --- SECTION 6: OUR MISSION --- */
    .hm-mission-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
    .hm-mission-body {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }
    .hm-mission-cta-group {
        flex-direction: row !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }
    .hm-btn-mission-primary,
    .hm-btn-mission-secondary {
        flex: 1 1 0 !important;
        max-width: 175px !important;
        padding: 10px 14px !important;
        font-size: 0.84rem !important;
        justify-content: center !important;
    }
    .hm-designer-framed {
        border-radius: 20px !important;
        padding: 6px !important;
        max-width: 100% !important;
    }
    .hm-mission-stats-bar {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 6px !important;
        padding: 18px 10px !important;
        border-radius: 18px !important;
    }
    .hm-mission-trust-bar {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px 10px !important;
        padding: 14px 12px !important;
        border-radius: 16px !important;
    }
    .hm-mission-trust-bar .hm-trust-item-title {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #123724 !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }
    .hm-mission-trust-bar .hm-trust-item-sub {
        font-size: 0.70rem !important;
        color: #556B5D !important;
        white-space: normal !important;
        line-height: 1.22 !important;
    }
    .hm-mission-trust-bar .hm-trust-item {
        width: auto !important;
        min-width: 0 !important;
        padding: 4px !important;
        border-radius: 10px !important;
        border-right: none !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .hm-mission-trust-bar .hm-trust-item-icon {
        width: 32px !important;
        height: 32px !important;
        flex-shrink: 0 !important;
    }
    .hm-mission-trust-bar .hm-trust-item-title {
        font-size: 0.76rem !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }
    /* Designer Framed processing-premium.png with ornate corners on Mobile */
    .hm-designer-framed {
        border-radius: 20px !important;
        padding: 6px !important;
        margin: 10px auto 0 auto !important;
        max-width: 100% !important;
        background: linear-gradient(135deg, #1B4D31 0%, #2D6A4F 40%, #D97706 100%) !important;
        box-shadow: 0 16px 36px -8px rgba(18, 55, 36, 0.22), 0 0 0 1.5px rgba(217, 119, 6, 0.35) !important;
    }
    .hm-designer-framed .hm-mission-harvest-photo {
        border-radius: 16px !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .hm-corner-accent {
        width: 26px !important;
        height: 26px !important;
    }
    .hm-corner-accent svg {
        width: 26px !important;
        height: 26px !important;
    }
    .hm-ca-tl { top: 10px !important; left: 10px !important; }
    .hm-ca-tr { top: 10px !important; right: 10px !important; }
    .hm-ca-bl { bottom: 10px !important; left: 10px !important; }
    .hm-ca-br { bottom: 10px !important; right: 10px !important; }
    .hm-mission-inner-frame {
        inset: 12px !important;
        border-radius: 12px !important;
    }

    /* --- SECTION 7: FARM TO YOUR TABLE (REDESIGNED PROCESS JOURNEY) --- */
    .hm-process-section {
        padding: 45px 0 85px 0 !important;
        overflow: hidden !important;
    }
    .hm-process-flourish-tl,
    .hm-process-flourish-tr {
        display: none !important;
    }
    .hm-process-head {
        margin-bottom: 20px !important;
        text-align: center !important;
        padding: 0 12px !important;
    }
    .hm-process-pill {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 5px 16px !important;
        border-radius: 999px !important;
        background: #EAF5E8 !important;
        border: 1px solid rgba(45, 106, 79, 0.22) !important;
        font-size: 0.68rem !important;
        font-weight: 800 !important;
        color: #2D6A4F !important;
        letter-spacing: 0.08em !important;
    }
    .hm-process-title {
        font-size: clamp(1.6rem, 5.5vw, 2.1rem) !important;
        line-height: 1.22 !important;
        margin: 8px 0 8px 0 !important;
        text-align: center !important;
    }
    .hm-process-sub {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        color: #556B5D !important;
        max-width: 92% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    /* Horizontal Connected Stepper Bar on Mobile */
    .hm-process-timeline {
        display: flex !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
        padding: 6px 16px !important;
        gap: 14px !important;
        justify-content: flex-start !important;
        margin: 0 auto 16px auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .hm-process-timeline::-webkit-scrollbar {
        display: none !important;
    }
    .hm-timeline-pipeline-bar {
        display: none !important;
    }
    .hm-timeline-col {
        flex: 0 0 auto !important;
    }
    .hm-step-node {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.84rem !important;
    }
    .hm-pipeline-arrow {
        position: static !important;
        transform: none !important;
        margin-left: 8px !important;
    }

    /* Horizontal Swipeable Journey Cards Grid on Mobile */
    .hm-process-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 14px !important;
        padding: 4px 16px 20px 16px !important;
        margin-bottom: 24px !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .hm-process-grid::-webkit-scrollbar {
        display: none !important;
    }
    .hm-process-grid::before,
    .hm-process-grid::after {
        display: none !important;
    }
    .hm-process-card {
        flex: 0 0 255px !important;
        scroll-snap-align: center !important;
        background: #FFFFFF !important;
        border-radius: 20px !important;
        border: 1px solid rgba(220, 232, 218, 0.95) !important;
        padding: 12px 12px 18px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        box-shadow: 0 6px 20px -4px rgba(18, 55, 36, 0.08) !important;
    }
    .hm-process-photo-wrap {
        position: relative !important;
        width: 100% !important;
        margin-bottom: 16px !important;
        border-radius: 14px !important;
    }
    .hm-process-photo-img {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;
        object-fit: cover !important;
        border-radius: 14px !important;
        display: block !important;
    }
    .hm-process-stage-pill {
        position: absolute !important;
        bottom: -10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: inline-flex !important;
        padding: 3px 12px !important;
        border-radius: 999px !important;
        font-size: 0.64rem !important;
        font-weight: 800 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }
    .hm-process-card-title {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
        color: #123724 !important;
        line-height: 1.25 !important;
        margin: 0 0 5px 0 !important;
        text-align: center !important;
    }
    .hm-process-card-desc {
        font-size: 0.75rem !important;
        line-height: 1.45 !important;
        color: #556B5D !important;
        margin: 0 0 12px 0 !important;
        text-align: center !important;
    }
    .hm-process-tags-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
    }
    .hm-process-tag-pill {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 5px 10px !important;
        background: #F4F8F3 !important;
        border: 1px solid #E5EFE4 !important;
        border-radius: 999px !important;
        text-align: left !important;
    }
    .hm-process-tag-icon svg {
        width: 13px !important;
        height: 13px !important;
    }
    .hm-process-tag-text {
        font-size: 0.70rem !important;
        font-weight: 600 !important;
        color: #2D3E33 !important;
    }

    /* Footer on Mobile */
    .hm-process-footer-area {
        padding: 0 16px !important;
        gap: 16px !important;
    }
    .hm-process-mission-pill {
        font-size: 0.76rem !important;
        padding: 6px 16px !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    .hm-process-wooden-sign-wrap {
        display: none !important;
    }
    .hm-process-cta-wrap {
        width: 100% !important;
        text-align: center !important;
    }
    .hm-process-cta-btn {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }

    /* --- SECTION 8: TESTIMONIALS --- */
    .hm-testi-title {
        font-size: 1.85rem !important;
    }
    .hm-testi-sub {
        font-size: 0.88rem !important;
    }
    .hm-testi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
    }
    .hm-testi-card {
        padding: 24px 12px 14px 12px !important;
        border-radius: 16px !important;
    }
    .hm-testi-top-badge {
        top: -14px !important;
        width: 28px !important;
        height: 28px !important;
    }
    .hm-testi-top-badge-icon svg {
        width: 13px !important;
        height: 13px !important;
    }
    .hm-testi-card-top {
        margin-bottom: 8px !important;
    }
    .hm-testi-stars {
        font-size: 0.8rem !important;
        letter-spacing: 0px !important;
    }
    .hm-testi-quote-mark {
        font-size: 1.8rem !important;
        height: 18px !important;
    }
    .hm-testi-text {
        font-size: 0.76rem !important;
        line-height: 1.42 !important;
        min-height: 48px !important;
        margin-bottom: 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .hm-testi-author {
        gap: 8px !important;
    }
    .hm-testi-author .img-skeleton-wrap {
        width: 32px !important;
        height: 32px !important;
    }
    .hm-testi-avatar {
        width: 32px !important;
        height: 32px !important;
    }
    .hm-testi-name {
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }
    .hm-testi-role {
        font-size: 0.64rem !important;
        line-height: 1.2 !important;
    }
    .hm-testi-verified {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
    }

    /* --- SECTION 9: OUR ROOTS (MIRZAPUR HERITAGE) --- */
    .hm-roots-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .hm-roots-title {
        font-size: 1.85rem !important;
    }
    .hm-roots-desc {
        font-size: 0.88rem !important;
    }
    .hm-roots-photo-wrap {
        height: 280px !important;
        border-radius: 20px !important;
    }
    .hm-roots-badge-tl {
        top: 8px !important;
        left: 8px !important;
        padding: 8px 10px !important;
    }
    .hm-roots-badge-br {
        bottom: 22px !important;
        right: 8px !important;
        padding: 8px 10px !important;
    }
    .hm-roots-pill-bc {
        bottom: -10px !important;
        padding: 6px 12px !important;
        font-size: 0.72rem !important;
        max-width: 92% !important;
    }
    .hm-roots-pills-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    .hm-roots-pill-item {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
    }
    .hm-roots-metrics-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 10px !important;
        padding: 16px 12px !important;
        border-radius: 18px !important;
    }
    .hm-roots-metrics-card .hm-rm-divider {
        display: none !important;
    }
    .hm-roots-metrics-card .hm-rm-col {
        padding: 12px 6px !important;
        background: rgba(244, 247, 242, 0.65) !important;
        border-radius: 14px !important;
        border: 1px solid rgba(46, 89, 54, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 4px !important;
        width: 100% !important;
    }
    [data-theme="dark"] .hm-roots-metrics-card .hm-rm-col {
        background: rgba(255, 255, 255, 0.03) !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
    }
    .hm-roots-metrics-card .hm-rm-num {
        font-size: 1.45rem !important;
    }
    .hm-roots-metrics-card .hm-rm-label {
        font-size: 0.66rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    /* Our Story CTA Wrap & Button Mobile */
    .hm-roots-cta-wrap {
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        margin-top: 14px !important;
        border: 1.5px solid rgba(46, 89, 54, 0.18) !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-sizing: border-box !important;
    }
    [data-theme="dark"] .hm-roots-cta-wrap {
        background: rgba(19, 36, 26, 0.8) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
    }
    .hm-roots-link {
        display: inline-flex !important;
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 12px 20px !important;
        border: 1.8px solid #C58B38 !important;
        border-radius: 9999px !important;
        font-size: 0.96rem !important;
        box-sizing: border-box !important;
    }

    /* --- SECTION 10: PARTNERS MARQUEE --- */
    .hm-pt-title {
        font-size: 1.85rem !important;
    }
    .hm-pt-subtitle {
        font-size: 0.88rem !important;
        padding: 0 10px !important;
    }
    .hm-pt-carousel-wrap {
        padding: 0 !important;
        gap: 0 !important;
        margin-bottom: 24px !important;
    }
    .hm-pt-nav-btn {
        display: none !important; /* Marquee scrolls automatically on mobile; maximize width */
    }
    .hm-pt-cards-viewport {
        padding: 8px 0 !important;
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%) !important;
    }
    .hm-pt-cards-track {
        gap: 12px !important;
    }
    .hm-pt-card {
        flex: 0 0 130px !important;
        width: 130px !important;
        height: 78px !important;
        padding: 10px 12px !important;
        border-radius: 14px !important;
    }
    .hm-pt-logo-img {
        max-height: 42px !important;
    }
    .hm-pt-trust-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 8px !important;
        padding: 0 4px !important;
        margin-bottom: 28px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .hm-pt-trust-capsule {
        padding: 10px 8px !important;
        border-radius: 14px !important;
        gap: 8px !important;
        display: flex !important;
        align-items: center !important;
        min-width: 0 !important;
        background: #FFFFFF !important;
        border: 1.5px solid rgba(22, 43, 26, 0.08) !important;
        box-shadow: 0 2px 8px rgba(22, 43, 26, 0.04) !important;
        box-sizing: border-box !important;
    }
    .hm-pt-trust-icon-wrap {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }
    .hm-pt-trust-icon-wrap svg {
        width: 16px !important;
        height: 16px !important;
    }
    .hm-pt-trust-info {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    .hm-pt-trust-title {
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .hm-pt-trust-desc {
        font-size: 0.65rem !important;
        line-height: 1.25 !important;
        color: #64748B !important;
        font-weight: 500 !important;
        white-space: normal !important;
    }

    /* --- SECTION 11: BLOG --- */
    .hm-blog-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Floating Action Controls */
    .vm-btn-floating-cart,
    #vmFloatingCartBtn,
    .floating-cart-fab,
    .floating-cart-btn,
    #floating-cart-btn,
    .floating-cart {
        display: none !important; /* Mobile bottom dock already provides Cart */
        visibility: hidden !important;
        pointer-events: none !important;
        opacity: 0 !important;
    }
    .vm-btn-back-to-top {
        right: 14px !important;
        left: auto !important;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
        width: 42px !important;
        height: 42px !important;
    }
}

/* 4. Compact Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .brand-title {
        font-size: 1.15rem !important;
    }
    .logo-img {
        height: 38px !important;
    }
    .hm-pt-trust-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px 6px !important;
        padding: 0 2px !important;
    }
    .hm-pt-trust-capsule {
        padding: 8px 6px !important;
        gap: 6px !important;
        border-radius: 12px !important;
    }
    .hm-pt-trust-icon-wrap {
        width: 28px !important;
        height: 28px !important;
    }
    .hm-pt-trust-icon-wrap svg {
        width: 14px !important;
        height: 14px !important;
    }
    .hm-pt-trust-title {
        font-size: 0.72rem !important;
    }
    .hm-pt-trust-desc {
        font-size: 0.58rem !important;
    }
    .hm-cat-tile-title {
        font-size: 0.85rem !important;
    }
    .hm-bs-title {
        font-size: 1.65rem !important;
    }
}

/* 5. Ultra-compact Screens (max-width: 360px) */
@media (max-width: 360px) {
    .hm-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .hm-cat-cards-row,
    .hm-bs-cards-row {
        gap: 8px !important;
    }
    .hm-cat-tile,
    .hm-bs-card {
        border-radius: 12px !important;
    }
    .hm-bs-card-media {
        height: 115px !important;
    }
    .hm-bs-cart-btn {
        padding: 0 4px !important;
        font-size: 0.68rem !important;
    }
    .hm-bs-cart-btn svg {
        display: none !important;
    }
}

/* ────────────────────────────────────────────
   REDUCE MOTION PREFERENCE
   ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hm-reveal-ready { opacity: 1 !important; transform: none !important; transition: none !important; }
    .vm-splash-chakra svg { animation: none; }
}

/* ────────────────────────────────────────────
   MOBILE TOUCH & SCROLL MOMENTUM ENHANCEMENTS
   ──────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Touch Target Safety (Minimum 44px touch targets) */
    .hm-bs-cart-btn,
    .hm-bs-view-btn,
    .hm-cat-tile,
    .hm-faq-trigger,
    .hm-btn-mission-primary,
    .hm-btn-mission-secondary,
    .hm-bs-viewall-btn {
        min-height: 44px !important;
        touch-action: manipulation;
    }

    /* Category Cards Horizontal Momentum Scroll with Snapping */
    .hm-cat-cards-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 14px !important;
        padding: 8px 16px 22px 16px !important;
        scrollbar-width: none;
    }
    .hm-cat-cards-row::-webkit-scrollbar {
        display: none;
    }
    .hm-cat-tile {
        scroll-snap-align: start !important;
        flex: 0 0 178px !important;
        min-width: 178px !important;
    }

    /* Strict Zero Horizontal Overflow */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    .hm-main {
        overflow-x: clip !important;
        max-width: 100vw !important;
    }

    /* iOS Bottom Safe Area for Sticky Floating Bars */
    .mobile-bottom-nav,
    .mobile-bottom-nav-spacer {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

