/* public/assets/css/style.css — Design Refinement Pass v2 */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════ */
:root {
    /* Primary Greens */
    --primary-green:       #166534;
    --primary-green-hover: #14532d;
    --dark-green:          #052e16;
    --header-green:        #0b3d1f;
    --footer-dark:         #021a0c;
    --footer-rich:         #042412;
    --secondary-green:     #dcfce7;
    --sage-light:          #f0fdf4;

    /* Turmeric / Honey Golden Yellow Accent */
    --accent-yellow:       #F0A93B;
    --accent-yellow-light: #FEF6E4;
    --accent-yellow-warm:  #F59E0B;
    --accent-yellow-dark:  #D97706;

    /* Neutral Scale (Senior Designer Light Earthy Fine Touch: Warm Linen / Oat Mist) */
    --amruta-earthy-bg:     #FAF7F2;
    --amruta-earthy-card:   #FFFFFF;
    --amruta-earthy-sand:   #F5EFE6;
    --amruta-earthy-border: #E8E1D3;
    --test-bg-color:        var(--amruta-earthy-bg);
    --bg-page:              var(--amruta-earthy-bg);
    --bg-cream:             #F5EFE6;
    --white:                #ffffff;
    --text-dark:            #052e16;
    --text-body:            #2C352E;
    --text-muted:           #5C6B5E;
    --border-color:         #E8E1D3;

    /* Shadows */
    --card-shadow:       0 4px 20px rgba(5,46,22,0.05);
    --card-shadow-hover: 0 14px 34px rgba(22,101,52,0.12);
    --hero-radius:       24px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
* { box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-page);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.68;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.25s ease;
}
a:hover { color: var(--primary-green-hover); }

/* ═══════════════════════════════════════════════
   LAYOUT (1320px+ Enhanced Canvas)
   ═══════════════════════════════════════════════ */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section rhythm backgrounds */
.bg-white       { background-color: var(--white); }
.bg-cream       { background-color: var(--bg-cream); }
.bg-sage        { background-color: var(--sage-light); }
.bg-sage-dark   { background-color: var(--secondary-green); }
.bg-light       { background-color: var(--bg-page); }
.bg-yellow-tint { background-color: var(--accent-yellow-light); }

/* Utilities */
.text-center { text-align: center; }
.d-flex      { display: flex; }
.align-items-center      { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center  { justify-content: center; }
.flex-wrap   { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }

/* Responsive layout helpers */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.responsive-flex-container { display: flex; gap: 30px; flex-wrap: wrap; }
.responsive-flex-item-lg   { flex: 2; min-width: 300px; }
.responsive-flex-item-md   { flex: 1.5; min-width: 300px; }
.responsive-flex-item-sm   { flex: 1; min-width: 300px; }

/* ═══════════════════════════════════════════════
   HEADER, SEARCH, NAVIGATION & MOBILE DRAWER
   ═══════════════════════════════════════════════ */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.offer-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    min-height: 38px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.offer-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: amrutaMarquee 32s linear infinite;
    will-change: transform;
}
.offer-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    flex-shrink: 0;
}
@keyframes amrutaMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.header-main {
    padding: 8px 0;
    background: #ffffff;
    min-height: 96px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 88px;
    max-height: 96px;
    padding: 0;
    text-decoration: none;
}
.logo img, .amruta-main-logo {
    height: 88px !important;
    max-height: 92px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04));
    transition: opacity 0.2s ease;
    transform: none !important;
}
.logo:hover img, .logo:hover .amruta-main-logo {
    transform: none !important;
    opacity: 0.94;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.04));
}

/* Search Bar */
.amruta-search-container {
    flex: 1 1 520px;
    max-width: 620px;
    height: 48px;
    background: #ffffff;
    border: 1.5px solid #166534;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    padding: 2px 4px 2px 14px;
    position: relative;
    margin: 0;
}
.amruta-search-cat-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.amruta-search-cat-select {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    padding: 0 20px 0 0;
    cursor: pointer;
    outline: none;
}
.amruta-search-cat-arrow {
    position: absolute;
    right: 2px;
    pointer-events: none;
    color: #64748b;
}
.amruta-search-divider {
    width: 1px;
    height: 22px;
    background: #cbd5e1;
    margin: 0 10px;
    flex-shrink: 0;
}
.amruta-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.amruta-search-icon {
    flex-shrink: 0;
    color: #64748b;
}
.amruta-search-input {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 13.5px;
    color: #0f172a;
    background: transparent;
    padding: 0;
}
.amruta-search-btn {
    background: #166534;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.amruta-search-btn:hover {
    background: #14532d;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.action-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.action-icon {
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-text {
    display: flex;
    flex-direction: column;
    font-size: 12.5px;
    line-height: 1.25;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e11d48;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Primary Navigation Bar */
.nav-wrapper {
    background: #ffffff;
    border-top: 1px solid rgba(22, 101, 52, 0.1);
    border-bottom: 1.5px solid rgba(22, 101, 52, 0.12);
    position: relative;
    z-index: 99;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-by-category {
    background: #166534;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s;
}
.shop-by-category:hover {
    background: #14532d;
}
.mobile-category-dropdown {
    position: relative;
}
.mobile-category-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border: 1px solid #e2e8f0;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 270px;
    display: none;
    z-index: 1000;
}
.mobile-category-dropdown:hover .dropdown,
.mobile-category-dropdown.active .dropdown {
    display: block;
}
.mobile-category-dropdown .dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    color: #334155;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.mobile-category-dropdown .dropdown li a:hover {
    background: #f0fdf4;
    color: #166534;
    padding-left: 22px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    display: block;
    padding: 12px 4px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}
.nav-links li a:hover {
    color: #166534;
}
.nav-badge-hot {
    position: absolute;
    top: 2px;
    right: -20px;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Mobile Navigation Drawer & Backdrop */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
    display: block;
    opacity: 1;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}
.mobile-nav-drawer.open {
    transform: translateX(320px);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #166534;
    color: #ffffff;
}
.mobile-nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-nav-links {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}
.mobile-nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
}
.mobile-nav-links li a:hover {
    background: #f0fdf4;
    color: #166534;
}
.mobile-menu-toggle {
    display: none;
    background: #f0fdf4;
    border: 1.5px solid rgba(22, 101, 52, 0.2);
    border-radius: 8px;
    color: #166534;
    padding: 8px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-wrapper { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .action-text { display: none; }
    .header-main { min-height: 72px; padding: 6px 0; }
    .logo img, .amruta-main-logo { height: 56px !important; max-height: 60px !important; max-width: 160px !important; }
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn,
a.btn,
button.btn,
input[type="submit"].btn,
.btn-primary,
a.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #166534 !important;
    background: #166534 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: inherit !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
    box-shadow: 0 4px 12px rgba(22,101,52,0.25) !important;
    line-height: 1.4 !important;
}
.btn:hover,
a.btn:hover,
button.btn:hover,
input[type="submit"].btn:hover,
.btn-primary:hover,
a.btn-primary:hover {
    background-color: #14532d !important;
    background: #14532d !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(22,101,52,0.35) !important;
    text-decoration: none !important;
}
.btn:active, a.btn:active, button.btn:active { transform: translateY(0) !important; }

.btn-outline,
a.btn-outline,
button.btn-outline {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
    background: transparent !important;
    color: #166534 !important;
    border: 2px solid #166534 !important;
    box-shadow: none !important;
    padding: 10px 26px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: inherit !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
}
.btn-outline:hover,
a.btn-outline:hover,
button.btn-outline:hover {
    background-color: #166534 !important;
    background: #166534 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(22,101,52,0.25) !important;
}

/* Yellow accent button */
.btn-yellow,
a.btn-yellow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #F0A93B 0%, #F59E0B 100%) !important;
    color: #052e16 !important;
    border: none !important;
    padding: 11px 26px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    font-size: 14.5px !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 14px rgba(240,169,59,0.35) !important;
    text-decoration: none !important;
}
.btn-yellow:hover, a.btn-yellow:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(240,169,59,0.45) !important;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE TABLE WRAPPER
   ═══════════════════════════════════════════════ */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ═══════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════ */
.pagination-wrap {
    display: flex !important; justify-content: center !important;
    align-items: center !important; margin-top: 40px !important;
    gap: 8px !important; flex-wrap: wrap !important;
}
.pagination-link, a.pagination-link {
    display: inline-flex !important; align-items: center !important;
    justify-content: center !important; min-width: 42px !important;
    height: 42px !important; padding: 0 14px !important;
    font-size: 14px !important; font-weight: 700 !important;
    border-radius: 8px !important; text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important; color: #166534 !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04) !important;
}
.pagination-link:hover, a.pagination-link:hover {
    border-color: #166534 !important; background: #f0fdf4 !important;
    transform: translateY(-1px) !important;
}
.pagination-link.active, a.pagination-link.active {
    background: #166534 !important; color: #ffffff !important;
    border-color: #166534 !important;
    box-shadow: 0 4px 12px rgba(22,101,52,0.3) !important;
}

/* ═══════════════════════════════════════════════
   SITE HEADER, MARQUEE & BRAND LOGO
   ═══════════════════════════════════════════════ */
.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Announcement / Offer Marquee Bar */
.offer-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    min-height: 38px;
    box-sizing: border-box;
}
.offer-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: amrutaMarquee 32s linear infinite;
    will-change: transform;
}
.offer-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes amrutaMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.offer-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    flex-shrink: 0;
}
.marquee-code-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.copy-code-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 2px;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.15s ease;
}
.copy-code-btn:hover {
    transform: scale(1.2);
}
.marquee-cta-link {
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 6px;
    transition: opacity 0.2s ease;
}
.marquee-cta-link:hover {
    opacity: 0.85;
}

/* Header Main Bar */
.header-main {
    padding: 12px 0;
    background: #ffffff;
    min-height: 72px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    transition: padding 0.25s ease, min-height 0.25s ease;
}
.site-header.is-scrolled .header-main {
    padding: 8px 0;
    min-height: 62px;
}
.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

/* Brand Logo (Enlarged B2C High-Definition Visibility with Zero Hover Distortion) */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    min-height: 88px;
    max-height: 96px;
}
.logo img,
.amruta-main-logo {
    height: 88px !important;
    max-height: 92px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
    transition: opacity 0.2s ease;
    transform: none !important;
}
.logo:hover img,
.logo:hover .amruta-main-logo {
    transform: none !important;
    opacity: 0.94;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.04));
}
.site-header.is-scrolled .header-main {
    min-height: 78px;
    padding: 4px 0;
}
.site-header.is-scrolled .amruta-main-logo,
.site-header.is-scrolled .logo img {
    height: 70px !important;
    max-height: 74px !important;
    transform: none !important;
}
@media (max-width: 992px) {
    .logo {
        min-height: 64px;
        max-height: 68px;
    }
    .logo img,
    .amruta-main-logo {
        height: 64px !important;
        max-height: 68px !important;
        max-width: 190px !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════
   HERO — 3-SLIDE CAROUSEL (1320px+ Enhanced Canvas)
   ═══════════════════════════════════════════════ */
.hero-section-outer {
    padding: 20px 0 0;
    background: var(--bg-page);
}

.hero-slider-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(5,46,22,0.16);
    border: 1px solid rgba(22,101,52,0.12);
    background: #052e16;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.03);
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-fullbleed-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(5,46,22,0.16);
    border: 1px solid rgba(22,101,52,0.12);
}

.hero-slide-overlay,
.hero-fullbleed-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5,46,22,0.95) 0%,
        rgba(5,46,22,0.82) 48%,
        rgba(5,46,22,0.25) 100%
    );
    z-index: 1;
}

.hero-slide-content,
.hero-fullbleed-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 660px;
    padding: 64px 54px;
}

/* Hero Carousel Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 54px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hero-slider-dot:hover {
    background: rgba(240,169,59,0.8);
    transform: scale(1.2);
}
.hero-slider-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #F0A93B;
    border-color: #F0A93B;
    box-shadow: 0 0 10px rgba(240,169,59,0.6);
}

@media (max-width: 768px) {
    .hero-slider-wrapper,
    .hero-slide {
        min-height: 440px;
    }
    .hero-slide-content,
    .hero-fullbleed-content {
        padding: 40px 24px;
    }
    .hero-slider-dots { left: 24px; bottom: 16px; }
}

/* ═══════════════════════════════════════════════
   SEARCH BAR
   ═══════════════════════════════════════════════ */
.amruta-search-container,
form.amruta-search-container {
    flex: 1 1 520px !important;
    max-width: 600px !important;
    min-width: 0 !important;
    height: 50px !important;
    background: #ffffff !important;
    border: 1.5px solid #166534 !important;
    border-radius: 9999px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 3px !important;
    box-shadow: 0 4px 18px rgba(22,101,52,0.08), 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.25s cubic-bezier(0.4,0,0.2,1) !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}
.amruta-search-container:hover {
    border-color: #15803d !important;
    box-shadow: 0 6px 22px rgba(22,101,52,0.14) !important;
}
.amruta-search-container:focus-within {
    border-color: #166534 !important;
    box-shadow: 0 8px 28px rgba(22,101,52,0.2), 0 0 0 3px rgba(22,101,52,0.12) !important;
}
.amruta-search-cat-wrap {
    position: relative !important; flex: 0 0 145px !important;
    width: 145px !important; height: 100% !important;
    display: flex !important; align-items: center !important;
    box-sizing: border-box !important;
}
.amruta-search-cat-select,
form.amruta-search-container select.amruta-search-cat-select {
    width: 100% !important; height: 100% !important; border: none !important;
    background: #f8fafc !important; border-radius: 9999px 0 0 9999px !important;
    padding: 0 28px 0 16px !important; font-size: 13.5px !important;
    font-weight: 700 !important; color: #166534 !important;
    font-family: inherit !important; cursor: pointer !important;
    outline: none !important; -webkit-appearance: none !important;
    appearance: none !important; box-sizing: border-box !important;
}
.amruta-search-cat-select:hover { background: #f0fdf4 !important; }
.amruta-search-cat-select option {
    background: #ffffff !important; color: #0f172a !important;
    font-size: 14px !important;
}
.amruta-search-cat-arrow {
    position: absolute !important; right: 12px !important;
    top: 50% !important; transform: translateY(-50%) !important;
    pointer-events: none !important; color: #166534 !important;
}
.amruta-search-divider {
    width: 1.5px !important; height: 26px !important;
    background: #cbd5e1 !important; flex: 0 0 1.5px !important;
    margin: 0 4px !important;
}
.amruta-search-input-wrap {
    flex: 1 1 auto !important; min-width: 0 !important;
    height: 100% !important; display: flex !important;
    align-items: center !important; padding: 0 8px 0 12px !important;
    box-sizing: border-box !important; gap: 8px !important;
}
.amruta-search-icon { flex: 0 0 auto !important; opacity: 0.75 !important; }
.amruta-search-input,
form.amruta-search-container input.amruta-search-input[type="text"] {
    flex: 1 1 100% !important; width: 100% !important;
    min-width: 0 !important; height: 100% !important;
    border: none !important; outline: none !important;
    background: transparent !important; box-shadow: none !important;
    padding: 0 !important; margin: 0 !important;
    font-size: 14.5px !important; font-family: inherit !important;
    color: #0f172a !important; font-weight: 500 !important;
}
.amruta-search-input::placeholder {
    color: #94a3b8 !important; font-weight: 400 !important; opacity: 1 !important;
}
.amruta-search-btn,
form.amruta-search-container button.amruta-search-btn[type="submit"] {
    flex: 0 0 auto !important; height: 42px !important;
    border-radius: 9999px !important;
    background: linear-gradient(135deg,#166534 0%,#15803d 100%) !important;
    color: #ffffff !important; border: none !important; outline: none !important;
    padding: 0 22px !important; display: flex !important;
    align-items: center !important; justify-content: center !important;
    gap: 8px !important; font-size: 14px !important; font-weight: 700 !important;
    cursor: pointer !important; box-shadow: 0 2px 8px rgba(22,101,52,0.25) !important;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1) !important; margin: 0 !important;
}
.amruta-search-btn:hover {
    background: linear-gradient(135deg,#14532d 0%,#166534 100%) !important;
    box-shadow: 0 4px 14px rgba(22,101,52,0.35) !important;
    transform: translateY(-0.5px) !important;
}

/* ═══════════════════════════════════════════════
   HEADER ACTIONS (Bigger Icons & Clean Layout)
   ═══════════════════════════════════════════════ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease;
}
.action-item:hover { transform: translateY(-1px); }

.action-icon {
    font-size: 28px;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-icon { position: relative; }
.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: #e11d48; color: white;
    font-size: 11px; font-weight: 800;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(225,29,72,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none; border: none;
    cursor: pointer; color: var(--text-dark);
    padding: 5px; margin-left: 8px;
}
.mobile-menu-toggle:focus { outline: none; }

/* ═══════════════════════════════════════════════
   NAVIGATION BAR (Bigger 15.5px Typography & Golden Accents)
   ═══════════════════════════════════════════════ */
.nav-wrapper {
    border-top: 1px solid rgba(22, 101, 52, 0.1);
    border-bottom: 1.5px solid rgba(22, 101, 52, 0.12);
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 99;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-by-category {
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
    color: #ffffff;
    padding: 11px 22px;
    margin: 6px 0;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(22, 101, 52, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop-by-category:hover {
    background: linear-gradient(135deg, #052e16 0%, #14532d 100%);
    box-shadow: 0 6px 18px rgba(22, 101, 52, 0.32);
    transform: translateY(-1px);
}
.cat-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #F0A93B;
}
.cat-menu-arrow {
    font-size: 11px;
    color: #F0A93B;
    margin-left: 3px;
    transition: transform 0.2s ease;
}
.has-dropdown:hover .cat-menu-arrow {
    transform: rotate(180deg);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
    align-items: center;
}
.nav-links > li > a {
    color: #1e293b;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.15px;
    padding: 16px 2px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    height: 3px;
    border-radius: 2px;
    background: #F0A93B;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links > li > a:hover {
    color: #166534;
}
.nav-links > li > a:hover::after {
    transform: scaleX(1);
}

/* Nav Badge Hot/New */
.nav-badge-hot {
    background: linear-gradient(135deg, #F0A93B 0%, #F59E0B 100%);
    color: #052e16;
    font-size: 9.5px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(240, 169, 59, 0.35);
    margin-left: 2px;
    line-height: 1;
}

/* Nav Right Trust Pill */
.nav-trust-pill {
    display: flex;
    align-items: center;
}
.nav-trust-pill a:hover {
    background: rgba(22, 101, 52, 0.14) !important;
    border-color: #166534 !important;
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   CATEGORY MEGA DROPDOWN (Hover Bridge & Click Hold)
   ═══════════════════════════════════════════════ */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    background: #ffffff;
    min-width: 275px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    border-radius: 14px;
    padding: 8px;
    z-index: 1050;
    list-style: none;
    border: 1.5px solid rgba(22, 101, 52, 0.18);
    animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Invisible hover bridge to eliminate mouseleave gaps */
.dropdown::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Open on hover OR on persistent click-hold */
.has-dropdown:hover > .dropdown,
.has-dropdown.is-open > .dropdown {
    display: block !important;
}

.dropdown li {
    position: relative;
    list-style: none;
}
.dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    color: #1e293b;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
}
.dropdown li a:hover {
    background: #f0fdf4;
    color: #166534;
    padding-left: 18px;
}

/* Nested Subcategories Dropdown */
.dropdown li.has-dropdown > .dropdown {
    top: 0;
    left: calc(100% + 4px);
    margin-top: 0;
}
.dropdown li.has-dropdown > .dropdown::before {
    top: 0;
    bottom: 0;
    left: -14px;
    right: auto;
    width: 14px;
    height: 100%;
}
.dropdown li.has-dropdown:hover > .dropdown,
.dropdown li.has-dropdown.is-open > .dropdown {
    display: block !important;
}

/* ═══════════════════════════════════════════════
   HERO BANNER (Contained, 24px Rounded Corners, Deep Forest Overlay)
   ═══════════════════════════════════════════════ */
.hero-section-outer {
    padding: 24px 0 16px;
    background: #FAF8F5;
}
.hero-fullbleed-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 440px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    box-shadow: 0 12px 36px rgba(5, 46, 22, 0.16);
    border: 1.5px solid rgba(240, 169, 59, 0.25);
}
.hero-fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 26, 12, 0.92) 0%, rgba(5, 46, 22, 0.82) 48%, rgba(5, 46, 22, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-fullbleed-content {
    position: relative;
    z-index: 2;
    padding: clamp(32px, 5vw, 64px);
    max-width: 620px;
}
.hero-buttons-container {
    margin-top: 24px;
}

/* ═══════════════════════════════════════════════
   SECTION TITLES
   ═══════════════════════════════════════════════ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 42px; height: 3.5px;
    background: var(--accent-yellow);
    border-radius: 2px;
}
.section-eyebrow {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    margin-bottom: 6px;
}

/* "View All" pill badges */
.view-all-badge {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: var(--accent-yellow-light);
    border: 1px solid rgba(240,169,59,0.35);
    border-radius: 20px;
    transition: all 0.25s ease;
}
.view-all-badge:hover {
    background: var(--accent-yellow);
    color: var(--dark-green);
    border-color: var(--accent-yellow);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}
.product-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-6px);
    border-color: var(--primary-green);
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1.5px solid #E8E1D3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-image-wrap {
    padding: 16px !important;
    text-align: center !important;
    position: relative !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-decoration: none !important;
    color: inherit !important;
    box-sizing: border-box !important;
}
.product-image-wrap img,
.product-image,
.product-card img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: auto !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    display: block !important;
}
.product-card:hover .product-image,
.product-card:hover .product-image-wrap img { 
    transform: scale(1.08) !important; 
}

.product-info {
    padding: 16px 18px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Quality badge chips on cards */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 4px;
}
.product-badge-chip {
    font-size: 10px;
    font-weight: 700;
    padding: 2.5px 8px;
    border-radius: 20px;
    border: 1px solid;
    white-space: nowrap;
}
.chip-green {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}
.chip-yellow {
    background: var(--accent-yellow-light);
    color: var(--accent-yellow-dark);
    border-color: rgba(240,169,59,0.3);
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark, #052e16);
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}
.product-title a,
.product-card h3 a,
.product-info h3 a,
.product-info a,
.product-title a:link,
.product-title a:visited,
a.product-title-link {
    color: var(--text-dark, #052e16) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
}
.product-title a:hover,
.product-title a:focus,
.product-card:hover .product-title a,
.product-card h3 a:hover,
.product-info a:hover {
    color: var(--primary-green, #166534) !important;
    text-decoration: none !important;
}

.product-unit {
    color: var(--text-muted);
    font-size: 12.5px;
    margin: 0;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 4px 0 8px;
}
.product-price {
    font-size: 21px;
    font-weight: 900;
    color: var(--primary-green);
}

.add-to-cart-btn {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 44px !important;
    margin-top: auto !important;
    background: var(--primary-green) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 9px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    box-shadow: 0 3px 10px rgba(22,101,52,0.2) !important;
}
.add-to-cart-btn svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}
.add-to-cart-btn:hover {
    background: var(--primary-green-hover) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(22,101,52,0.3) !important;
}

/* ═══════════════════════════════════════════════
   RECIPE & BLOG CARDS
   ═══════════════════════════════════════════════ */
.recipe-card, .blog-card {
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--card-shadow);
}
.recipe-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-green);
}
.card-img-wrap {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}
.card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.recipe-card:hover .card-img-wrap img,
.blog-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-body-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-body-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.card-btn-footer { margin-top: auto; width: 100%; }

/* ═══════════════════════════════════════════════
   FEATURES & TRUST STRIPS
   ═══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.feature-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-green);
}
.feature-icon {
    font-size: 44px;
    color: var(--primary-green);
    line-height: 1;
    flex-shrink: 0;
}
.feature-title { font-size: 16px; font-weight: 700; margin: 0 0 4px 0; }
.feature-desc  { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Trust Strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(240,169,59,0.2);
    box-shadow: 0 3px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(240,169,59,0.18);
    border-color: var(--accent-yellow);
}
.trust-icon-ring {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--accent-yellow-light);
    border: 2px solid rgba(240,169,59,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 38px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}
.trust-item:hover .trust-icon-ring { transform: scale(1.08); }
.trust-label {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.trust-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   CURATED COLLECTIONS SHOWCASE CARDS (Graphics, Text & Buttons)
   ═══════════════════════════════════════════════ */
.cat-banners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-banner-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    position: relative !important;
    min-height: 280px !important;
    height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 32px 28px !important;
    box-shadow: 0 8px 25px rgba(5,46,22,0.12) !important;
    border: 1.5px solid rgba(240,169,59,0.3) !important;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    text-decoration: none !important;
    background: #052e16 !important;
}
.cat-banner-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 45px rgba(5,46,22,0.25) !important;
    border-color: #F0A93B !important;
}
.cat-banner-card-bg,
.cat-banner-card img {
    position: absolute !important;
    top: 0 !important; 
    left: 0 !important;
    width: 100% !important; 
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    z-index: 1 !important;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1) !important;
}
.cat-banner-card:hover .cat-banner-card-bg,
.cat-banner-card:hover img {
    transform: scale(1.08) !important;
}
.cat-banner-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5,46,22,0.2) 0%,
        rgba(5,46,22,0.65) 45%,
        rgba(2,26,12,0.94) 100%
    );
    z-index: 2;
    transition: background 0.3s ease;
}
.cat-banner-card:hover .cat-banner-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(5,46,22,0.15) 0%,
        rgba(5,46,22,0.7) 40%,
        rgba(2,26,12,0.97) 100%
    );
}
.cat-banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cat-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240,169,59,0.25);
    border: 1px solid rgba(240,169,59,0.5);
    color: #F0A93B;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    width: fit-content;
}
.cat-banner-title {
    font-size: 23px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin: 4px 0 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.cat-banner-subtext {
    font-size: 13.5px;
    color: #e2e8f0;
    line-height: 1.5;
    margin: 0 0 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.cat-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F0A93B 0%, #F59E0B 100%);
    color: #052e16 !important;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(240,169,59,0.35);
    transition: all 0.25s ease;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.cat-banner-card:hover .cat-banner-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    color: #166534 !important;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .cat-banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .cat-banners-grid {
        grid-template-columns: 1fr;
    }
    .cat-banner-card {
        min-height: 240px;
        padding: 24px 20px;
    }
}

/* ═══════════════════════════════════════════════
   SHOP CATEGORY SCROLL CARDS
   ═══════════════════════════════════════════════ */
.cat-scroll-card {
    flex: 0 0 auto;
    width: 155px;
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 18px;
    padding: 22px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cat-scroll-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(22,101,52,0.15);
    color: var(--text-dark);
}
.cat-icon-ring {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0fdf4 0%, #FEF9C3 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(240, 169, 59, 0.25);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    overflow: hidden;
}
.cat-scroll-card:hover .cat-icon-ring {
    background: linear-gradient(135deg, #dcfce7 0%, #FEF08A 100%);
    border-color: #F0A93B;
    transform: scale(1.08);
}
.cat-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    max-width: 135px;
}

/* ═══════════════════════════════════════════════
   FEATURES BAR (Homepage strip)
   ═══════════════════════════════════════════════ */
.feat-bar-icon {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FEF3C7 0%, #FEE2E2 100%);
    border: 1.5px solid rgba(240,169,59,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(240,169,59,0.18);
    transition: all 0.25s ease;
}
.feat-bar-item:hover .feat-bar-icon {
    transform: scale(1.1) rotate(4deg);
    border-color: #F0A93B;
}

/* ═══════════════════════════════════════════════
   CUSTOMER REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 14px; right: 20px;
    font-size: 60px;
    color: var(--accent-yellow);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-yellow);
}
.avatar-badge {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--secondary-green);
    color: var(--primary-green);
    font-weight: 800; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #bbf7d0;
}
.star-yellow { color: var(--accent-yellow); font-size: 16px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.newsletter-section {
    background: linear-gradient(135deg, #f0fdf4 0%, var(--accent-yellow-light) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 42px 0;
}

.site-footer {
    background: linear-gradient(180deg, #021a0c 0%, #042412 50%, #021a0c 100%);
    color: #ffffff;
    padding: 56px 0 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(240, 169, 59, 0.3);
}

/* Decorative leaf/grain pattern in footer background */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(240,169,59,0.06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr 1.05fr 1.35fr;
    gap: 0;
    margin-bottom: 24px;
}

.footer-widget {
    padding: 0 30px;
    border-right: 1px solid rgba(240, 169, 59, 0.18);
}
.footer-widget:first-child {
    padding-left: 0;
}
.footer-widget:last-child {
    padding-right: 0;
    border-right: none;
}

.footer-widget h4 {
    color: var(--white);
    margin-top: 0;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(240,169,59,0.25);
    position: relative;
}
.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 38px; height: 2.5px;
    background: #F0A93B;
    border-radius: 2px;
}

.site-footer a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.site-footer a:hover {
    color: #F0A93B !important;
}

.footer-widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-widget ul li {
    margin-bottom: 10px !important;
}
.footer-widget ul li a,
.footer-nav-links li a,
.footer-cat-links li a {
    color: #cbd5e1 !important;
    transition: all 0.2s ease !important;
    font-size: 13.5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 2px 0 !important;
}
.footer-widget ul li a:hover,
.footer-nav-links li a:hover,
.footer-cat-links li a:hover {
    color: #F0A93B !important;
    transform: translateX(4px) !important;
}

/* Footer Sleek Divider Line (Replacing pattern image) */
.footer-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(240,169,59,0.35) 25%, rgba(240,169,59,0.35) 75%, transparent 100%);
    margin: 36px 0 24px;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(240,169,59,0.25);
    padding: 20px 24px;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
}

/* Footer social icons */
.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.25s ease;
}
.footer-social-btn:hover {
    background: #F0A93B;
    color: #052e16;
    border-color: #F0A93B;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   CHROME DEVTOOLS RESPONSIVE MASTER SUITE
   ═══════════════════════════════════════════════ */

/* Mobile Navigation Offcanvas & Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(85vw, 360px);
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: 4px 0 30px rgba(0,0,0,0.25);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-nav-drawer.open {
    left: 0;
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,46,22,0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #052e16 0%, #166534 100%);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-nav-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.mobile-nav-links {
    list-style: none;
    padding: 16px 0;
    margin: 0;
}
.mobile-nav-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}
.mobile-nav-links li a:active,
.mobile-nav-links li a:hover {
    background: #f0fdf4;
    color: #166534;
}

/* Breakpoint: Desktop Large (1280px - 1440px+) */
@media (min-width: 1280px) {
    .container { max-width: 1360px; padding: 0 24px; }
    .product-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 24px !important; }
}

/* Breakpoint: Tablet & Small Desktop (769px - 1024px) */
@media (max-width: 1024px) {
    .header-main-inner { gap: 16px; }
    .amruta-search-container { max-width: 420px; }
    .product-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 18px !important; }
    .categories-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 14px !important; }
    .hero-slider-wrapper { height: 460px; min-height: 460px; }
    .hero-slide { min-height: 460px !important; }
    .hero-slide-content { padding: 48px 36px !important; max-width: 580px !important; }
}

/* Breakpoint: Mobile & Tablet Small (max-width: 768px) */
@media (max-width: 768px) {
    body { font-size: 15px; }
    .container { padding: 0 16px; }
    
    /* Sticky Header on Mobile */
    .header-main { min-height: 64px; padding: 8px 0; }
    .header-main-inner { gap: 10px; }
    .logo { min-height: 54px; max-height: 60px; min-width: 140px !important; }
    .logo img, .amruta-main-logo { height: 52px !important; max-height: 56px !important; max-width: 160px !important; }
    
    /* Search Bar below or compact */
    .amruta-search-cat-wrap { display: none !important; }
    .amruta-search-divider { display: none !important; }
    .amruta-search-container { height: 42px; padding: 2px 4px; }
    .amruta-search-btn span { display: none; }
    .amruta-search-btn { padding: 8px 12px !important; }

    /* Actions */
    .header-actions { gap: 12px; }
    .action-text { display: none !important; }
    .action-item { padding: 6px !important; min-width: 40px; justify-content: center; }

    /* Hero Slider on Mobile */
    .hero-section-outer { padding: 10px 0 0; }
    .hero-slider-wrapper { height: auto !important; min-height: 480px !important; border-radius: 18px; }
    .hero-slide { min-height: 480px !important; }
    .hero-slide-content { padding: 36px 20px 48px !important; max-width: 100% !important; text-align: left; }
    .hero-slide-overlay { background: linear-gradient(180deg, rgba(5,46,22,0.85) 0%, rgba(5,46,22,0.95) 75%, #052e16 100%) !important; }
    .hero-buttons-container { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; width: 100%; }
    .hero-buttons-container a { width: 100%; text-align: center; }

    /* Category Grid: 2 columns on Mobile */
    .categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .category-card { padding: 14px 10px !important; }
    .category-card-icon { width: 44px !important; height: 44px !important; }
    .category-card-title { font-size: 13.5px !important; }

    /* Product Grid: 2 clean columns on Mobile */
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .product-card { border-radius: 14px !important; padding: 10px !important; }
    .product-img-box { height: 160px !important; min-height: 160px !important; }
    .product-title { font-size: 13.5px !important; line-height: 1.35 !important; min-height: 36px; }
    .product-price { font-size: 15px !important; }
    .product-card .btn-add-to-cart { padding: 9px 12px !important; font-size: 12.5px !important; }

    /* Curated Banners & Story: Stack */
    .curated-banners-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .curated-banner-card { min-height: 240px !important; }
    .farm-story-grid { grid-template-columns: 1fr !important; gap: 24px !important; }

    /* Cart & Checkout */
    .cart-grid-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
    .checkout-grid-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
    
    /* Footer Stack */
    .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .newsletter-form { flex-direction: column !important; }
    .newsletter-form button { width: 100% !important; }
}

/* Breakpoint: Very Small Mobile (max-width: 375px - e.g. iPhone SE) */
@media (max-width: 375px) {
    .container { padding: 0 12px; }
    .logo img, .amruta-main-logo { max-width: 135px !important; height: 46px !important; }
    .product-img-box { height: 135px !important; min-height: 135px !important; }
    .product-title { font-size: 12.5px !important; }
    .product-grid { gap: 8px !important; }
    .category-card { padding: 10px 6px !important; }
}

/* Footer logo badge area (High-Definition 92px+ logo) */
.footer-logo-badge {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border: 2px solid rgba(240, 169, 59, 0.4);
}
.footer-logo-badge img {
    height: 92px;
    max-width: 270px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 25px; right: 25px;
    background-color: #25D366;
    color: #ffffff !important;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37,211,102,0.6);
}

/* Payment badges */
.payment-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.payment-badge {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

/* Global overflow containment */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

/* ─── ≤ 1200px (Laptops & Small Desktops) ─── */
@media (max-width: 1200px) {
    .container { max-width: 960px; padding: 0 20px; }
    .header-main-inner { gap: 16px; }
    .amruta-search-container { max-width: 480px; }
    .cat-banners-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .footer-widget { padding: 0 16px !important; }
}

/* ─── ≤ 992px (Tablets & Mobile Header Breakpoint) ─── */
@media (max-width: 992px) {
    .container { max-width: 720px; padding: 0 16px; }
    
    /* 1-Line Mobile & Tablet Header — Unclipped & Vertically Centered */
    .header-main {
        padding: 8px 0 !important;
        min-height: 72px !important;
        display: flex !important;
        align-items: center !important;
    }
    .header-main-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 8px !important;
        background: var(--sage-light) !important;
        border: 1.5px solid rgba(22,101,52,0.2) !important;
        color: var(--primary-green) !important;
        padding: 0 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        align-self: center !important;
        transition: all 0.2s ease !important;
    }
    .mobile-menu-toggle:hover {
        background: #dcfce7 !important;
        border-color: var(--primary-green) !important;
    }
    .logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        height: 56px !important;
        max-width: 135px !important;
        align-self: center !important;
    }
    .logo img {
        height: 100% !important;
        max-height: 56px !important;
        max-width: 130px !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    /* Compact 1-Line Search Bar */
    .amruta-search-container,
    form.amruta-search-container {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 38px !important;
        margin: 0 !important;
        padding: 2px !important;
        border-radius: 9999px !important;
        border-width: 1.5px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        align-self: center !important;
    }
    .amruta-search-cat-wrap,
    .amruta-search-divider {
        display: none !important;
    }
    .amruta-search-input-wrap {
        padding: 0 6px 0 10px !important;
        height: 100% !important;
        gap: 6px !important;
    }
    .amruta-search-icon {
        width: 14px !important;
        height: 14px !important;
    }
    .amruta-search-input,
    form.amruta-search-container input.amruta-search-input[type="text"] {
        font-size: 12.5px !important;
    }
    .amruta-search-btn,
    form.amruta-search-container button.amruta-search-btn[type="submit"] {
        height: 32px !important;
        width: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }
    .amruta-search-btn span {
        display: none !important;
    }
    .amruta-search-btn svg {
        width: 13px !important;
        height: 13px !important;
    }
    
    /* Compact Action Buttons */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        align-self: center !important;
    }
    .action-text {
        display: none !important;
    }
    .action-item {
        padding: 4px !important;
        min-width: 36px !important;
        height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        align-self: center !important;
    }
    .action-icon {
        font-size: 20px !important;
        line-height: 1 !important;
    }
    .cart-icon .cart-count {
        top: -4px !important;
        right: -6px !important;
        width: 16px !important;
        height: 16px !important;
        font-size: 10px !important;
    }

    /* Mobile Drawer Navigation */
    .nav-wrapper {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #ffffff;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .nav-wrapper.active {
        max-height: 520px;
        opacity: 1;
        overflow-y: auto;
        padding: 10px 0;
    }
    .nav-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 !important;
    }
    .nav-links {
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    .nav-links > li {
        width: 100% !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .nav-links > li > a {
        padding: 12px 18px !important;
        font-size: 14.5px !important;
        font-weight: 700 !important;
        display: block !important;
        color: var(--text-dark) !important;
    }
    .nav-links > li > a::after {
        display: none !important;
    }
    .has-dropdown.mobile-category-dropdown {
        width: 100% !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .shop-by-category {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 12px 18px !important;
        font-size: 14.5px !important;
        font-weight: 800 !important;
    }
    .mobile-category-dropdown > .dropdown {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid var(--border-color) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        display: none;
    }
    .mobile-category-dropdown > .dropdown > li > a {
        padding: 10px 24px !important;
        border-bottom: 1px solid #f8fafc !important;
        font-size: 13.5px !important;
    }
    .nav-trust-pill {
        display: none !important;
    }

    /* Grids on Tablet */
    .products-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
    .cat-banners-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
    .cat-banner-card { min-height: 250px !important; height: auto !important; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .trust-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
    .shop-layout { flex-direction: column !important; gap: 20px !important; }
    .shop-sidebar { flex: 1 1 100% !important; width: 100% !important; }
    .hero-showcase-grid, .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; }
    .footer-widget { border-right: none !important; padding: 0 !important; }
}

/* ─── ≤ 768px (Standard Mobile Screens) ─── */
@media (max-width: 768px) {
    .container { padding: 0 14px !important; }
    
    .responsive-flex-container { flex-direction: column !important; gap: 20px !important; }
    .responsive-flex-item-lg,
    .responsive-flex-item-md,
    .responsive-flex-item-sm { flex: 1 1 100% !important; width: 100% !important; min-width: 0 !important; }
    
    /* Section Header & Category Carousel Fixes on Mobile */
    .section-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }
    .section-header > div {
        text-align: center !important;
    }
    .section-header .section-title {
        font-size: 22px !important;
        text-align: center !important;
    }
    .section-header .section-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .section-header .view-all-badge {
        margin: 4px auto 0 auto !important;
        align-self: center !important;
        display: inline-flex !important;
    }

    /* Hide overlapping floating buttons on mobile & enable smooth touch swipe */
    #cat-scroll-prev,
    #cat-scroll-next {
        display: none !important;
    }
    #category-scroll-container {
        padding: 8px 4px !important;
        gap: 12px !important;
        scroll-snap-type: x mandatory !important;
    }
    .cat-scroll-card {
        scroll-snap-align: start !important;
        flex: 0 0 120px !important;
        width: 120px !important;
    }

    /* Product Grid: 2 columns standard */
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .product-card { border-radius: 12px !important; }
    .product-image-wrap { height: 140px !important; padding: 8px !important; }
    .product-info { padding: 10px 12px 14px !important; }
    .product-title { font-size: 13.5px !important; line-height: 1.35 !important; min-height: 36px !important; margin-bottom: 4px !important; }
    .product-unit { font-size: 11px !important; margin-bottom: 6px !important; }
    .product-price { font-size: 16px !important; }
    .add-to-cart-btn { font-size: 11.5px !important; padding: 8px 10px !important; border-radius: 8px !important; }
    
    /* Features Strip */
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .feature-item { padding: 12px 10px !important; }
    .feature-icon { font-size: 26px !important; margin-bottom: 6px !important; }
    .feature-title { font-size: 13px !important; }
    .feature-desc { font-size: 11px !important; line-height: 1.35 !important; }

    /* Trust Strip */
    .trust-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .trust-item { padding: 14px 10px !important; }
    .trust-icon-ring { width: 44px !important; height: 44px !important; font-size: 22px !important; }
    .trust-label { font-size: 13px !important; }
    .trust-desc { font-size: 11px !important; line-height: 1.4 !important; }

    /* Delivery Banner */
    .delivery-banner {
        grid-template-columns: 1fr !important;
        padding: 26px 18px !important;
        text-align: center !important;
        gap: 22px !important;
    }
    .delivery-text {
        max-width: 100% !important;
    }
    .delivery-text > div {
        justify-content: center !important;
    }
    .delivery-graphic {
        position: relative !important;
        width: 100% !important;
        right: auto !important;
        margin-top: 4px !important;
    }
    
    /* Reviews & Footer */
    .reviews-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .footer-widget { border-right: none !important; padding: 0 !important; }
    
    .whatsapp-float { width: 48px !important; height: 48px !important; bottom: 16px !important; right: 16px !important; }
    #backToTopBtn { width: 48px !important; height: 48px !important; bottom: 16px !important; left: 16px !important; }
}

/* ─── ≤ 480px (Compact Mobile Phones) ─── */
@media (max-width: 480px) {
    .container { padding: 0 12px !important; }
    
    /* 1-Line Header on Small Phones */
    .header-main { padding: 6px 0 !important; min-height: 68px !important; }
    .logo { height: 50px !important; max-width: 120px !important; }
    .logo img { height: 100% !important; max-height: 50px !important; max-width: 115px !important; }
    .mobile-menu-toggle { width: 34px !important; height: 34px !important; }
    .amruta-search-container,
    form.amruta-search-container { height: 36px !important; }
    .amruta-search-input,
    form.amruta-search-container input.amruta-search-input[type="text"] { font-size: 11.5px !important; }
    .amruta-search-input::placeholder { font-size: 10.5px !important; }
    .amruta-search-btn { width: 30px !important; height: 30px !important; }
    .action-item { min-width: 32px !important; height: 32px !important; }
    .action-icon { font-size: 18px !important; }
    
    .offer-marquee-container { font-size: 11.5px !important; padding: 7px 0 !important; }
    .offer-marquee-item { padding: 0 16px !important; gap: 8px !important; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .product-image-wrap { height: 125px !important; padding: 6px !important; }
    .product-info { padding: 8px 10px 12px !important; }
    .product-title { font-size: 12.5px !important; }
    .product-price { font-size: 15px !important; }
    
    .trust-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
    .cat-banner-card { height: 130px !important; }
}

/* ─── ≤ 340px (Ultra-Compact Phones) ─── */
@media (max-width: 340px) {
    .container { padding: 0 8px !important; }
    .logo img { height: 34px !important; max-width: 75px !important; }
    .products-grid { grid-template-columns: 1fr !important; }
    .features-grid { grid-template-columns: 1fr !important; }
    .trust-strip { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════
   USER ACCOUNT DROPDOWN (LUXURY POPOVER)
   ═══════════════════════════════════════════════ */
.user-account-dropdown-wrapper { 
    position: relative !important; 
    display: inline-flex !important; 
    align-items: center !important; 
}
.user-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important; 
    right: 0 !important;
    width: 265px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 45px -8px rgba(0, 30, 15, 0.2), 0 0 0 1px rgba(0,0,0,0.03) !important;
    z-index: 99999 !important;
    overflow: hidden !important;
    text-align: left !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
}
.user-account-dropdown-wrapper:hover .user-dropdown-menu,
.user-account-dropdown-wrapper:focus-within .user-dropdown-menu,
.user-dropdown-menu.is-active { 
    display: block !important; 
    animation: amrutaDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
@keyframes amrutaDropdownFade {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.user-dropdown-link {
    display: flex !important; 
    flex-direction: row !important;
    align-items: center !important; 
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 16px !important;
    color: #334155 !important;
    text-decoration: none !important;
    font-size: 13px !important; 
    font-weight: 600 !important;
    transition: all 0.15s ease !important;
}
.user-dropdown-link:hover {
    background: #f8fafc !important; 
    color: #15803d !important; 
    padding-left: 20px !important;
}
.user-dropdown-logout:hover {
    background: #fef2f2 !important;
    color: #b91c1c !important;
    padding-left: 20px !important;
}

/* ═══════════════════════════════════════════════
   GLOBAL TOAST
   ═══════════════════════════════════════════════ */
#toast-container {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333; color: #fff;
    padding: 12px 24px; border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 14px; font-weight: 500;
    z-index: 10000; opacity: 0;
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
    display: flex; align-items: center; gap: 10px;
    pointer-events: none;
}
#toast-container.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#toast-container.success { background: #1a5632; }
#toast-container.error   { background: #d9534f; }

/* ═══════════════════════════════════════════════
   CONTACT US SECTION & RESPONSIVE LAYOUT
   ═══════════════════════════════════════════════ */
.contact-hero-banner {
    background: linear-gradient(135deg, #052e16 0%, #166534 100%);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 36px);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(5,46,22,0.18);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}
.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240,169,59,0.2);
    border: 1px solid rgba(240,169,59,0.4);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 800;
    color: #F0A93B;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}
.contact-hero-title {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 12px 0;
    color: #ffffff;
}
.contact-hero-desc {
    font-size: clamp(14px, 2vw, 16.5px);
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    width: 100%;
}
.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.contact-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border: 1.5px solid var(--border-color, #e2e8f0);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-card-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green, #166534);
    box-shadow: 0 10px 24px rgba(22,101,52,0.12);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f0fdf4;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-card-icon.whatsapp {
    background: #25D366;
    color: #ffffff;
}
.contact-card-label {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-card-value {
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 3px;
    line-height: 1.4;
}

.contact-form-card {
    background: #ffffff;
    border: 1.5px solid var(--border-color, #e2e8f0);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    width: 100%;
}
.contact-form-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.contact-form-subtext {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.contact-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.contact-form-group {
    margin-bottom: 18px;
}
.contact-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}
.contact-form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14.5px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.contact-form-control:focus {
    border-color: #166534;
    box-shadow: 0 0 0 4px rgba(22,101,52,0.12);
}
.contact-submit-btn {
    width: 100%;
    padding: 15px 24px;
    font-size: 15.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: #166534;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(22,101,52,0.25);
    transition: all 0.2s ease;
}
.contact-submit-btn:hover {
    background: #14532d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22,101,52,0.35);
}

@media (max-width: 992px) {
    .contact-grid-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
}
@media (max-width: 640px) {
    .contact-form-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .contact-hero-banner {
        padding: 28px 16px !important;
        border-radius: 18px !important;
    }
    .contact-form-card {
        padding: 20px 16px !important;
        border-radius: 18px !important;
    }
    .contact-card-item {
        padding: 14px 16px !important;
    }
}
