/*
Theme Name: Vihari Farms - Theme 2.0
Theme URI: https://viharifarms.com
Author: Vihari Farms
Author URI: https://viharifarms.com
Description: Vihari Farms - Theme 2.0. SEO-optimized WordPress theme for Vihari Farms - Free-Range Country Chicken, Kadaknath, Organic Eggs & Farm Fresh Poultry in Hyderabad & Secunderabad. WhatsApp ordering, product manager dashboard, and full local SEO.
Version: 2.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vihari-farms
Tags: one-column, custom-colors, custom-logo, featured-images, theme-options, seo-friendly
*/

/* =============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */
:root {
    /* Primary Colors */
    --vf-green: #2E7D32;
    --vf-green-dark: #1B5E20;
    --vf-green-medium: #43A047;
    --vf-green-light: #E8F5E9;
    --vf-green-lighter: #F1F8E9;
    
    /* Accent Colors */
    --vf-yellow: #FBC02D;
    --vf-yellow-light: #FFD54F;
    --vf-yellow-dark: #F9A825;
    
    /* Neutral Colors */
    --vf-dark: #1A1A1A;
    --vf-dark-70: rgba(26, 26, 26, 0.7);
    --vf-beige: #F5F0E8;
    --vf-warm-white: #FAFAF5;
    --vf-cream: #FFFEF7;
    
    /* Background Colors */
    --bg-background: #FAFAF5;
    --bg-foreground: #1A1A1A;
    --muted-foreground: #6B7280;
    
    /* Typography */
    --font-display: 'Fraunces', 'Poppins', Georgia, serif;
    --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-open-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-mobile: 3rem 0;
    --container-max: 80rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-green: 0 8px 40px rgba(46, 125, 50, 0.1);
    --shadow-yellow: 0 8px 32px rgba(251, 192, 45, 0.35);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-fixed: 50;
    --z-modal-backdrop: 60;
    --z-modal: 70;
    --z-tooltip: 80;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    /* Hard guard: a stray decorative element must never create horizontal
       scrolling on small screens (e.g. the about-section corner accent). */
    overflow-x: hidden;
}

body {
    font-family: var(--font-open-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vf-dark);
    background-color: var(--bg-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--vf-green);
    color: white;
    padding: 0.5rem 1rem;
    z-index: var(--z-tooltip);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* =============================================
   SCROLL PROGRESS BAR
   ============================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: var(--z-modal-backdrop);
    background: linear-gradient(90deg, #1B5E20 0%, #2E7D32 30%, #4CAF50 50%, #2E7D32 70%, #1B5E20 100%);
    opacity: 0.6;
    transition: opacity 500ms;
    width: 0%;
}

.scroll-progress.hidden {
    opacity: 0;
}

/* =============================================
   HEADER STYLES
   ============================================= */
.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: var(--z-fixed);
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-slow) ease-out;
}

@media (min-width: 768px) {
    .site-header {
        height: 72px;
    }
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

/* Logo */
.header-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 0.25rem 0.625rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 125, 50, 0.15);
    transition: transform var(--transition-base);
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.header-logo-link img {
    height: 32px;
    width: auto;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .header-logo-link img {
        height: 40px;
    }
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 0.125rem;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.nav-list li {
    position: relative;
}

.nav-link {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: var(--vf-dark-70);
    border-radius: var(--radius-md);
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--vf-green-dark);
}

.nav-link.active {
    color: var(--vf-green-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 2.5px;
    background: var(--vf-green);
    border-radius: var(--radius-full);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

/* Phone Link */
.header-phone {
    display: none;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.625rem;
    color: var(--vf-dark-70);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .header-phone {
        display: flex;
    }
}

.header-phone:hover {
    color: var(--vf-green);
    background: var(--vf-green-light);
}

.header-phone svg {
    width: 16px;
    height: 16px;
}

.header-phone span {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Header Divider */
.header-divider {
    display: none;
    width: 1px;
    height: 24px;
    background: rgba(26, 26, 26, 0.1);
}

@media (min-width: 768px) {
    .header-divider {
        display: block;
    }
}

/* Order Now Button */
.btn-order {
    display: none;
    position: relative;
    background: linear-gradient(to right, var(--vf-green), var(--vf-green-dark));
    color: white;
    border-radius: var(--radius-full);
    padding: 0.625rem 1.5rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    overflow: hidden;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .btn-order {
        display: inline-flex;
    }
}

.btn-order:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.35);
}

.btn-order:active {
    transform: scale(0.97);
}

.btn-order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--vf-green-medium), var(--vf-green));
    opacity: 0;
    transition: opacity 400ms;
}

.btn-order:hover::before {
    opacity: 1;
}

.btn-order span {
    position: relative;
    z-index: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--vf-green);
    background: #ffffff;
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--vf-green);
    border-color: rgba(46, 125, 50, 0.35);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

/* Morph the hamburger into a crisp X while the menu is open */
body.mobile-menu-open .mobile-menu-btn {
    color: var(--vf-green);
    background: var(--vf-green-light);
    border-color: rgba(46, 125, 50, 0.4);
    box-shadow: 0 4px 14px rgba(46, 125, 50, 0.18);
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile header phone — premium circular button with a breathing pulse
   ring and a playful shake on hover */
.header-phone.mobile-only {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--vf-green);
    transition: all var(--transition-fast);
}

/* Breathing pulse ring */
.header-phone.mobile-only::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(46, 125, 50, 0.4);
    z-index: -1;
    pointer-events: none;
    animation: callPulse 2.6s ease-out infinite;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .header-phone.mobile-only {
        display: flex;
    }
}

.header-phone.mobile-only svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.header-phone.mobile-only:hover {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    border-color: var(--vf-green);
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.35);
}

.header-phone.mobile-only:hover::before {
    animation: none;
    opacity: 0;
}

.header-phone.mobile-only:hover svg {
    animation: callShake 0.5s ease;
}

@keyframes callShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(-14deg);
    }
    45% {
        transform: rotate(10deg);
    }
    70% {
        transform: rotate(-7deg);
    }
    90% {
        transform: rotate(4deg);
    }
}

.header-phone.mobile-only:active {
    transform: scale(0.94);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Menu */
/* Premium slide-in drawer — starts below the fixed header so the
   burger->X close control stays visible while the menu is open */
.mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    bottom: 0;
    z-index: var(--z-modal);
    background:
        radial-gradient(120% 60% at 100% 0%, rgba(46, 125, 50, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #fbfdf8 0%, #f1f7ec 100%);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.45s;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
}

/* Nav list — staggered slide-in when the drawer opens */
.mobile-nav-list {
    padding: 1.5rem 1.5rem 0.5rem;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(28px);
    border-bottom: 1px solid rgba(46, 125, 50, 0.08);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-nav-list li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-list li:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-nav-list li:nth-child(4) { transition-delay: 0.29s; }

.mobile-nav-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.05rem 0.25rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-list a::after {
    content: '';
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-top: 2px solid rgba(46, 125, 50, 0.45);
    border-right: 2px solid rgba(46, 125, 50, 0.45);
    transform: rotate(45deg);
    transition: all var(--transition-fast);
}

.mobile-nav-list a:hover {
    color: var(--vf-green);
    padding-left: 0.5rem;
}

.mobile-nav-list a:hover::after {
    border-color: var(--vf-green);
    transform: rotate(45deg) translate(2px, -2px);
}

/* Menu CTA buttons — fade up on open */
.mobile-nav-actions {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease 0.32s, transform 0.4s ease 0.32s;
    padding: 1rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu.open .mobile-nav-actions {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Background with Ken Burns Effect */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.08) translateY(-10px);
    }
}

/* Hero Overlay — rich forest scrim for depth + text contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(8, 30, 10, 0.62) 0%, rgba(8, 30, 10, 0.05) 45%, rgba(8, 30, 10, 0.18) 100%),
        linear-gradient(90deg, rgba(8, 30, 10, 0.78) 0%, rgba(24, 72, 27, 0.42) 60%, rgba(27, 94, 32, 0.22) 100%);
}

/* Hero Light Effects */
.hero-light-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    bottom: -10px;
    border-radius: var(--radius-full);
    animation: particleFloat var(--particle-duration, 10s) ease-in-out infinite;
    animation-delay: var(--particle-delay, 0s);
}

.hero-particle.yellow {
    background: rgba(251, 192, 45, 0.4);
}

.hero-particle.green {
    background: rgba(67, 160, 71, 0.3);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 7rem 1rem 5rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 9rem;
        padding-bottom: 6rem;
    }
}

.hero-content-inner {
    max-width: 48rem;
}

/* Hero Badge — premium glass pill with a gold leaf mark */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(10, 32, 12, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.625rem 1.375rem 0.625rem 0.875rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    user-select: none;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--vf-yellow-light);
    filter: drop-shadow(0 2px 6px rgba(251, 192, 45, 0.45));
}

/* Hero Headline — Fraunces display serif, warm & premium */
.hero-headline {
    margin-top: 1.75rem;
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-size: 2.75rem;
    font-weight: 520;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .hero-headline {
        margin-top: 2rem;
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4.75rem;
    }
}

/* "Delicious." — signature italic gold gradient accent.
   NB: the gradient must be painted on each .letter span, NOT the parent —
   the glyphs live in child spans, so background-clip: text on the parent
   makes them render invisible. */
.hero-headline .text-accent {
    font-style: italic;
    font-weight: 600;
}

.hero-headline .text-accent .letter {
    /* Wider gradient with a soft bright band so the shimmer has room to travel */
    background: linear-gradient(100deg, #FFD54F 0%, #FBC02D 28%, #FFF3C4 50%, #FBC02D 72%, #F9A825 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Reveal first, then a slow, subtle gold glint that sweeps across the word.
       The existing inline animation-delay stagger (40ms per letter) makes the
       glint cascade letter-to-letter — a gentle traveling shine. */
    animation: letterReveal 0.6s ease forwards, goldShimmer 5s ease-in-out infinite;
}

/* Gold shimmer — a soft highlight band glides across "Delicious." */
@keyframes goldShimmer {
    0%,
    8% {
        background-position: 12% 50%;
    }
    42%,
    100% {
        background-position: 88% 50%;
    }
}

.hero-headline .word-group {
    display: inline-flex;
    flex-wrap: wrap;
    overflow: hidden;
    /* inline-flex collapses the literal space between words — restore it */
    margin-right: 0.28em;
    /* Extra clip room below so deep descenders (y, g, p) are never sliced */
    padding-bottom: 0.18em;
    margin-bottom: -0.18em;
}

/* Last word on each line shouldn't add trailing space */
.hero-headline .word-group:last-of-type {
    margin-right: 0;
}

.hero-headline .letter {
    display: inline-block;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    animation: letterReveal 0.6s ease forwards;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-headline .space {
    display: inline-block;
    width: 0.3em;
}

/* Word Underline Animation */
.hero-headline .word-underline {
    position: relative;
}

.hero-headline .word-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(251, 192, 45, 0.7);
    border-radius: var(--radius-full);
    animation: underlineSlide 0.8s ease forwards;
    animation-delay: 0.8s;
    transform: scaleX(0);
    transform-origin: left;
}

@media (min-width: 768px) {
    .hero-headline .word-underline::after {
        height: 4px;
    }
}

@keyframes underlineSlide {
    to {
        transform: scaleX(1);
    }
}

/* Word Shimmer Animation */
.hero-headline .word-shimmer {
    position: relative;
    background: linear-gradient(90deg, #fff 0%, #FBC02D 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    animation-delay: 1.2s;
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Hero Description — refined weight & generous leading */
.hero-description {
    margin-top: 1.5rem;
    font-family: var(--font-open-sans);
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .hero-description {
        margin-top: 1.625rem;
        font-size: 1.125rem;
    }
}

/* Hero Benefits — frosted-glass chips with gold check medallions */
.hero-benefits {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

@media (min-width: 768px) {
    .hero-benefits {
        margin-top: 2.25rem;
    }
}

.hero-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem 0.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .hero-benefit {
        font-size: 0.875rem;
    }
}

.hero-benefit:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(251, 192, 45, 0.4);
    transform: translateY(-2px);
}

.hero-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #FFD54F 0%, #F9A825 100%);
    box-shadow: 0 2px 8px rgba(251, 192, 45, 0.4);
}

.hero-benefit-icon svg {
    width: 13px;
    height: 13px;
    color: #1a1a1a;
    stroke-width: 3.5;
}

/* Hero CTA */
.hero-cta {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-cta {
        margin-top: 2.5rem;
    }
}

/* Primary Yellow Button */
.btn-primary-yellow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #FBC02D 0%, #FFD54F 25%, #FBC02D 50%, #FFD54F 75%, #FBC02D 100%);
    color: var(--vf-dark);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary-yellow:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.btn-primary-yellow:active {
    transform: scale(0.97);
}

.btn-primary-yellow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 700ms ease-in-out;
}

.btn-primary-yellow:hover::before {
    transform: translateX(100%);
}

.btn-primary-yellow svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-primary-yellow:hover svg {
    transform: translateX(4px);
}

/* Secondary Hero Button */
.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all var(--transition-base);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.03);
}

.btn-secondary-hero:active {
    transform: scale(0.97);
}

.btn-secondary-hero svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.btn-secondary-hero:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem;
    border-radius: var(--radius-full);
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator span {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* Hero Bottom Fade */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    z-index: 1;
    background: linear-gradient(to top, rgba(250, 250, 245, 0.85) 0%, rgba(250, 250, 245, 0.3) 40%, transparent 100%);
}

/* Phones: the hero must never clip its content behind the fixed bottom
   action bar, and the copy is compressed so the Order Now / View Products
   buttons stay visible above it. The hero may still grow past 100svh on
   very small screens (content then scrolls naturally). The scroll hint is
   dropped on mobile — the Call Us / Order Now bar replaces it, so the
   SCROLL text can no longer overlap the hero's bottom edge or the bar. */
@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: 100svh;
    }
    .hero-content {
        padding-top: 5rem;
        padding-bottom: calc(6rem + env(safe-area-inset-bottom));
    }
    .hero-badge {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        font-size: 0.6875rem;
    }
    .hero-headline {
        font-size: clamp(2.125rem, 7vw, 2.5rem);
        margin-top: 1.125rem;
        line-height: 1.2;
    }
    .hero-description {
        margin-top: 0.875rem;
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    .hero-benefits {
        margin-top: 1.125rem;
        gap: 0.5rem;
    }
    .hero-benefit {
        padding: 0.4375rem 0.8125rem 0.4375rem 0.4375rem;
        font-size: 0.78125rem;
    }
    .hero-cta {
        margin-top: 1.125rem;
        gap: 0.75rem;
    }
    .btn-primary-yellow,
    .btn-secondary-hero {
        padding: 0.8125rem 1.5rem;
        font-size: 0.9375rem;
    }
    .scroll-indicator {
        display: none;
    }
}

/* Extra-tight for short phones (568px-class through 667px iPhones): pull
   the CTA up so it clears the bottom bar with a real margin, and keep the
   bottom padding above the bar height even at full scroll. */
@media (max-height: 700px) and (max-width: 767px) {
    .hero-content {
        padding-top: 3.75rem;
        padding-bottom: calc(5rem + env(safe-area-inset-bottom));
    }
    .hero-headline {
        font-size: 1.875rem;
        margin-top: 0.875rem;
    }
    .hero-description {
        margin-top: 0.75rem;
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    .hero-benefits {
        margin-top: 0.875rem;
    }
    .hero-cta {
        margin-top: 0.875rem;
    }
}

/* =============================================
   TRUST INDICATORS SECTION
   ============================================= */
.trust-indicators {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--vf-beige);
    border-bottom: 1px solid var(--vf-beige);
    background: white;
}

.trust-indicators-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .trust-indicators-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .trust-indicators-inner {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .trust-indicators-inner {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-2xl);
    background: var(--vf-green-light);
    color: var(--vf-green);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.15);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-title {
    margin-top: 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 1rem;
    }
}

.trust-description {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.375;
    max-width: 160px;
}

@media (min-width: 768px) {
    .trust-description {
        font-size: 0.875rem;
    }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .about-section {
        padding: var(--section-padding);
    }
}

.about-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .about-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-green);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    left: 1rem;
    background: var(--vf-green);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25);
}

@media (min-width: 640px) {
    .about-badge {
        left: 1.5rem;
    }
}

.about-badge-label {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-badge-value {
    display: block;
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.about-decoration {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 5rem;
    height: 5rem;
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(46, 125, 50, 0.15);
    z-index: -1;
}

/* On smaller screens the corner accent must stay inside the section — the
   negative offset previously poked past the viewport and caused a 5px
   horizontal scroll on phones. */
@media (max-width: 1023px) {
    .about-decoration {
        right: 0.75rem;
    }
}

/* About Content */
.about-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vf-green);
}

.about-title {
    margin-top: 0.75rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

.about-title .text-gradient {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    margin-top: 1.25rem;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 0.9375rem;
    }
}

/* About Stats */
.about-stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-stats {
        gap: 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .stat-item {
        text-align: left;
    }
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .stat-header {
        justify-content: flex-start;
    }
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-lg);
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.stat-icon svg {
    width: 16px;
    height: 16px;
}

.stat-number {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vf-dark);
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* About CTA Button */
.about-cta {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-cta {
        margin-top: 2.5rem;
    }
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--vf-green);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: var(--vf-green);
    transition: all var(--transition-base);
}

.btn-outline-green:hover {
    background: var(--vf-green);
    color: white;
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.25);
}

.btn-outline-green:active {
    transform: scale(0.97);
}

.btn-outline-green svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.btn-outline-green:hover svg {
    transform: translateX(4px);
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .products-section {
        padding: var(--section-padding);
    }
}

.products-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .products-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .products-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

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

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

.section-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vf-green);
}

.section-title {
    margin-top: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* Section Heading and Subtitle */
.section-heading {
    margin-top: 0.5rem;
    font-family: var(--font-poppins);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

.section-heading .text-gradient {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-medium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    margin-top: 0.75rem;
    font-family: var(--font-open-sans);
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .product-filters {
        gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .product-filters {
        margin-bottom: 3rem;
    }
}

.filter-tab {
    padding: 0.5rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vf-dark-70);
    background: var(--vf-green-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.filter-tab:hover {
    color: var(--vf-green-dark);
}

.filter-tab.active {
    background: var(--vf-green);
    color: white;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Product Card - Fixed Layout */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(20, 60, 30, 0.06);
    border: 1px solid rgba(20, 60, 30, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    height: 100%;
    min-height: 420px;
}

@media (min-width: 640px) {
    .product-card {
        min-height: 450px;
    }
}

@media (min-width: 1024px) {
    .product-card {
        min-height: 480px;
    }
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 61, 20, 0.14);
    border-color: rgba(46, 125, 50, 0.25);
}

.product-card.hidden {
    display: none;
}

/* Product Image Container - Unified Styles.
   The box aspect follows the photo's orientation (img-tall 3:4, img-square
   1:1, img-wide 4:3) so cover-cropping is minimal and the subject is always
   fully in view. Galleries swap their ratio to the ACTIVE slide (theme.js). */
.product-gallery,
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(160deg, #f8faf4 0%, #eef3e7 100%);
}

/* Portrait / square photos keep a portrait-ish box instead of being forced
   into a wide frame and cropped by half. */
.product-card.img-tall .product-image,
.product-gallery.img-tall {
    aspect-ratio: 3/4;
}

.product-card.img-square .product-image,
.product-gallery.img-square {
    aspect-ratio: 1/1;
}

.product-card.img-wide .product-image,
.product-gallery.img-wide {
    aspect-ratio: 4/3;
}

/* Every product photo fills its frame (object-fit: cover) so the grid reads
   as one consistent, premium collection — no more floating/letterboxed
   images. The card carries an orientation class (img-tall / img-square /
   img-wide) so object-position keeps each subject comfortably in view. */
.product-image img,
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

/* Portrait shots are usually framed top-down (bird + head) — bias the crop
   upward so the subject's head is never cut off. Applied per-slide so a
   mixed gallery (portrait + landscape) never mis-crops one of its photos. */
.product-card.img-tall .product-image img,
.gallery-slide.img-tall img {
    object-position: center 22%;
}

/* Wide shots: nudge the focal point a touch above center for balance. */
.product-card.img-wide .product-image img,
.gallery-slide.img-wide img {
    object-position: center 45%;
}

/* Soft depth overlay — grounds the photo and makes the badge pop. */
.product-gallery::after,
.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 30, 10, 0) 62%, rgba(8, 30, 10, 0.10) 100%);
}

.product-card:hover .product-image img,
.product-card:hover .gallery-slide img {
    transform: scale(1.05);
}

/* Product Gallery */
.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.gallery-slide.active {
    opacity: 1;
}

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: white;
    opacity: 0.5;
    transition: all var(--transition-fast);
}

.gallery-dot.active {
    opacity: 1;
    width: 18px;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 10;
}

.product-badge {
    padding: 0.25rem 0.625rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-badge.bestseller {
    background: var(--vf-yellow);
    color: var(--vf-dark);
}

.product-badge.organic {
    background: var(--vf-green);
    color: white;
}

.product-badge.new {
    background: #3B82F6;
    color: white;
}

/* Product Content */
.product-content {
    padding: 1rem;
}

@media (min-width: 640px) {
    .product-content {
        padding: 1.25rem;
    }
}

.product-category {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    margin-top: 0.25rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.product-description {
    margin-top: 0.625rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.rating-value {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.rating-count {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Product Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.price-current {
    font-family: var(--font-poppins);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.2;
}

.price-unit {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Product CTA */
.product-cta {
    margin-top: 1rem;
}

.btn-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-product:hover {
    background: var(--vf-green-dark);
}

.btn-product svg {
    width: 16px;
    height: 16px;
}

/* Product Info Section - Flex Layout for Button Alignment */
.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.125rem;
}

@media (min-width: 640px) {
    .product-info {
        padding: 1.375rem;
    }
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category {
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-type {
    font-family: var(--font-open-sans);
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    padding-left: 0.5rem;
    border-left: 1px solid var(--vf-beige);
}

.product-name {
    margin-top: 0.375rem;
    font-family: var(--font-poppins);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--vf-dark);
    line-height: 1.3;
}

@media (min-width: 1024px) {
    .product-name {
        font-size: 1.125rem;
    }
}

.product-local-name {
    margin-top: 0.125rem;
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Product Badges - Consistent Styling */
.product-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 10;
}

.badge-bestseller {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--vf-yellow);
    color: var(--vf-dark);
    box-shadow: 0 2px 8px rgba(251, 192, 45, 0.3);
}

.badge-new {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: #3B82F6;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-discount {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    border-radius: var(--radius-full);
    background: var(--vf-green);
    color: white;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

/* Sold Out badge — premium red pill with soft glow */
.badge-sold-out {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(198, 40, 40, 0.35);
    animation: sold-out-pulse 2.4s ease-in-out infinite;
}

@keyframes sold-out-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(198, 40, 40, 0.35); }
    50%      { box-shadow: 0 2px 18px rgba(198, 40, 40, 0.6); }
}

/* Sold Out notice — replaces the order button with a polished status card */
.sold-out-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(198, 40, 40, 0.05) 100%);
    border: 1.5px solid rgba(229, 57, 53, 0.35);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #C62828;
}

.sold-out-notice svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #E53935;
}

.product-card.sold-out {
    position: relative;
}

.product-card.sold-out .product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(12, 20, 13, 0.25);
    pointer-events: none;
}

/* Keep badges crisp above the sold-out dim */
.product-card.sold-out .product-badges {
    z-index: 6;
}

@media (prefers-reduced-motion: reduce) {
    .badge-sold-out {
        animation: none;
    }
}

/* WhatsApp Order Button - Fixed */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    margin-top: auto;
    white-space: nowrap;
    min-height: 44px;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #2ee371 0%, #14a089 100%);
}

.btn-whatsapp svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-whatsapp span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating Stars - Improved Spacing */
.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
    color: #d1d5db;
}

.rating-stars svg.filled {
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.rating-stars svg.half {
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
    opacity: 0.5;
}

.rating-value {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-left: 0.5rem;
    white-space: nowrap;
}

/* Price Styles */
.price-original {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works {
    padding: var(--section-padding-mobile);
    background: var(--vf-green-lighter);
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: var(--section-padding);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vf-green);
    color: white;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 1rem auto 0;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-2xl);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-title {
    margin-top: 1.25rem;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.step-description {
    margin-top: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* =============================================
   WHY CHOOSE SECTION
   ============================================= */
.why-choose {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .why-choose {
        padding: var(--section-padding);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--vf-warm-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--vf-green-light);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    margin-top: 1rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.feature-description {
    margin-top: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* =============================================
   WHY FREE-RANGE SECTION
   ============================================= */
.why-freerange {
    padding: var(--section-padding-mobile);
    background: var(--vf-green);
    color: white;
}

@media (min-width: 1024px) {
    .why-freerange {
        padding: var(--section-padding);
    }
}

.why-freerange .section-label {
    color: var(--vf-yellow);
}

.why-freerange .section-title {
    color: white;
}

.freerange-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .freerange-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.freerange-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.freerange-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
}

.freerange-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vf-yellow);
    color: var(--vf-dark);
    border-radius: var(--radius-lg);
}

.freerange-item-icon svg {
    width: 20px;
    height: 20px;
}

.freerange-item-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
}

.freerange-item-description {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    opacity: 0.9;
}

.freerange-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.freerange-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .testimonials {
        padding: var(--section-padding);
    }
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
    }
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    color: var(--vf-yellow);
    fill: var(--vf-yellow);
}

.testimonial-text {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--vf-beige);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--vf-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: var(--vf-green);
}

.testimonial-name {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.testimonial-location {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: white;
    color: var(--vf-green);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--vf-green);
    color: white;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--vf-beige);
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    width: 24px;
    background: var(--vf-green);
}

/* =============================================
   DELIVERY SECTION
   ============================================= */
.delivery {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .delivery {
        padding: var(--section-padding);
    }
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .delivery-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.delivery-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.delivery-info-item {
    display: flex;
    gap: 1rem;
}

.delivery-info-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-xl);
}

.delivery-info-icon svg {
    width: 24px;
    height: 24px;
}

.delivery-info-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.delivery-info-text {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.delivery-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--vf-green-light);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-map-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--vf-green);
}

.delivery-map-placeholder svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

/* Additional Delivery Section Styles */
.delivery-section {
    padding: var(--section-padding-mobile);
    background: white;
}

@media (min-width: 1024px) {
    .delivery-section {
        padding: var(--section-padding);
    }
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .delivery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--vf-green-lighter);
    border-radius: var(--radius-lg);
}

.delivery-feature svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vf-green);
}

.delivery-feature span {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    line-height: 1.5;
}

.service-areas {
    margin-top: 2rem;
}

.service-areas h4 {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 1rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.delivery-card {
    background: var(--vf-warm-white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    border: 1px solid var(--vf-beige);
}

.delivery-card-label {
    display: inline-block;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vf-green);
    margin-bottom: 0.5rem;
}

.delivery-card-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin-bottom: 1.25rem;
}

.delivery-card .delivery-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.delivery-card .delivery-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--vf-green);
    margin-top: 2px;
}

.delivery-card .delivery-info-item span,
.delivery-card .delivery-info-item a {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
}

.delivery-card .delivery-info-item a {
    color: var(--vf-green);
    text-decoration: none;
}

.delivery-card .delivery-info-item a:hover {
    text-decoration: underline;
}

.delivery-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vf-beige);
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vf-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.delivery-link:hover {
    color: var(--vf-green-dark);
}

/* =============================================
   FAQ SECTION — accessible premium accordion
   ============================================= */
.faq-section {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .faq-section {
        padding: var(--section-padding);
    }
}

.faq-list {
    max-width: 46rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq-item {
    background: white;
    border: 1px solid rgba(20, 60, 30, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(20, 60, 30, 0.05);
    overflow: hidden;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.faq-item.open {
    border-color: rgba(46, 125, 50, 0.35);
    box-shadow: 0 10px 28px rgba(46, 125, 50, 0.1);
}

.faq-question-heading {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    text-align: left;
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vf-dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 200ms ease;
}

.faq-toggle:hover {
    color: var(--vf-green-dark);
}

.faq-toggle:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: -2px;
    border-radius: var(--radius-xl);
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--vf-green);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Smooth open/close: animate grid rows 0fr -> 1fr (no JS height measuring).
   Collapsed panels get inert via JS so screen readers skip their text. */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.7;
}

/* Product list inside an answer (e.g. "What products are available") */
.faq-answer-list {
    margin: 0 0 1.25rem;
    padding: 0 1.25rem 0 2.5rem;
    list-style: none;
}

.faq-answer-list li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.6;
}

.faq-answer-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.faq-answer-list li strong {
    color: var(--vf-dark);
    font-weight: 600;
}

/* ============ FAQ answer CTA ("Check Products" / "Order on WhatsApp") ============ */
.faq-answer-cta {
    padding: 0 1.25rem 1.4rem;
}

.faq-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-cta-products {
    color: var(--vf-green-dark);
    background: var(--vf-green-light);
    border: 1.5px solid rgba(46, 125, 50, 0.35);
}

.faq-cta-products:hover {
    background: var(--vf-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.28);
}

.faq-cta-whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.faq-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
}

.faq-cta-icon {
    width: 17px;
    height: 17px;
    flex: none;
}

.faq-cta-arrow {
    width: 15px;
    height: 15px;
    flex: none;
    transition: transform 220ms ease;
}

.faq-cta-link:hover .faq-cta-arrow {
    transform: translateX(3px);
}

/* ============ "Still have a question?" premium footer card ============ */
.faq-footer {
    margin-top: 2.5rem;
}

.faq-footer-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 2.6rem 2rem;
    border-radius: 22px;
    background:
        radial-gradient(420px 200px at 85% -40px, rgba(46, 125, 50, 0.16), transparent 65%),
        radial-gradient(360px 190px at 10% 115%, rgba(37, 211, 102, 0.12), transparent 65%),
        linear-gradient(135deg, #F2F9F0 0%, #EAF4E7 55%, #F7FAF4 100%);
    border: 1px solid rgba(46, 125, 50, 0.18);
    box-shadow: 0 14px 40px rgba(27, 55, 29, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.faq-footer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--vf-green), #25D366, var(--vf-green), transparent);
    animation: faq-rail 4s ease-in-out infinite;
}

@keyframes faq-rail {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scaleX(0.9); }
    50%      { opacity: 1;   transform: translateX(-50%) scaleX(1.05); }
}

.faq-footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--vf-green) 0%, #1B5E20 100%);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.35);
    animation: faq-badge-float 3.2s ease-in-out infinite;
}

.faq-footer-badge svg {
    width: 24px;
    height: 24px;
}

@keyframes faq-badge-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.faq-footer-title {
    margin: 0;
    font-family: var(--font-poppins);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vf-dark);
}

.faq-footer-text {
    margin: 0;
    max-width: 46ch;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.65;
}

.faq-footer-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.faq-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-family: var(--font-poppins);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.faq-footer-btn svg {
    width: 17px;
    height: 17px;
    flex: none;
}

.faq-footer-btn-call {
    color: var(--vf-green-dark);
    background: #fff;
    border: 1.5px solid rgba(46, 125, 50, 0.35);
    box-shadow: 0 4px 12px rgba(27, 55, 29, 0.08);
}

.faq-footer-btn-call:hover {
    border-color: var(--vf-green);
    color: var(--vf-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(46, 125, 50, 0.2);
}

.faq-footer-btn-wa {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

.faq-footer-btn-wa::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    animation: faq-wa-pulse 2.6s ease-out infinite;
    pointer-events: none;
}

@keyframes faq-wa-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.faq-footer-btn-wa:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

.faq-footer-arrow {
    transition: transform 220ms ease;
}

.faq-footer-btn-wa:hover .faq-footer-arrow {
    transform: translateX(3px);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .faq-answer {
        transition: none;
    }
    .faq-icon {
        transition: none;
    }
    .faq-cta-link,
    .faq-footer-btn {
        transition: none;
        transform: none !important;
    }
    .faq-footer-card::before,
    .faq-footer-badge,
    .faq-footer-btn-wa::after {
        animation: none;
    }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-section {
        padding: var(--section-padding);
    }
}

.cta-title {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Heading and Subtitle (aliases for consistency) */
.cta-heading {
    font-family: var(--font-poppins);
    font-size: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .cta-heading {
        font-size: 2.25rem;
    }
}

.cta-subtitle {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Trust Badges */
.cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.cta-badge svg {
    width: 16px;
    height: 16px;
    color: var(--vf-yellow);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--vf-yellow);
    color: var(--vf-dark);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #141b12 0%, #10150e 100%);
    color: white;
    padding: 4.5rem 0 0;
    overflow: hidden;
}

/* Premium top accent — a thin green-to-gold gradient rail */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vf-green-dark) 0%, var(--vf-green-medium) 45%, var(--vf-yellow) 100%);
}

/* Soft radial glow for depth */
.site-footer::after {
    content: '';
    position: absolute;
    top: -220px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.16) 0%, transparent 65%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-inner {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.35fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.footer-logo:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    margin-top: 1.125rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.85);
    transition: all 250ms ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(46, 125, 50, 0.45);
}

.footer-social a:active {
    transform: translateY(-1px) scale(0.96);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    position: relative;
    padding-bottom: 0.875rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--vf-yellow);
}

/* Gold underline accent under each column heading */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--vf-yellow) 0%, rgba(251, 192, 45, 0.15) 100%);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.68);
    transition: color 200ms ease, transform 200ms ease;
}

.footer-links a:hover {
    color: var(--vf-yellow-light);
    transform: translateX(5px);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    text-decoration: underline;
    text-decoration-color: rgba(251, 192, 45, 0.6);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

/* Contact column: phone + hours side-by-side, address full-width below */
.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
    margin-top: 0.125rem;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.footer-contact-label {
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
}

/* Keep the opening-hours on one clean line — never wrap into awkward pieces */
.footer-contact-hours {
    white-space: nowrap;
}

/* Green contact icons in subtle chips — premium detail */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-top: 1.125rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 5px;
    box-sizing: content-box;
    background: rgba(46, 125, 50, 0.16);
    border: 1px solid rgba(46, 125, 50, 0.4);
    border-radius: 10px;
    color: #66BB6A;
}

.footer-contact-item a,
.footer-contact-item span {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.footer-contact-item a {
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.footer-contact-item a {
    transition: color 200ms ease;
}

.footer-contact-item a:hover {
    color: var(--vf-yellow-light);
}

/* Footer CTA buttons (Get Directions / Order on WhatsApp) */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.125rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all 250ms ease;
}

.footer-cta-btn svg {
    width: 15px;
    height: 15px;
}

.footer-directions-link {
    border: 1.5px solid rgba(102, 187, 106, 0.55);
    color: #81C784;
}

.footer-directions-link:hover {
    background: rgba(46, 125, 50, 0.22);
    border-color: #81C784;
    color: white;
    transform: translateY(-2px);
}

.footer-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.footer-whatsapp-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
}

.footer-whatsapp-btn:active {
    transform: translateY(0) scale(0.97);
}

/* Footer widget area — rendered only when widgets exist (populated by the
   one-click Demo Content importer or the site owner). Invisible by default
   so the stock footer stays an exact replica. Styled as a premium glassy
   panel that matches the footer's gold-accent design language. */
.footer-widgets-area {
    position: relative;
    margin-top: 3rem;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.012) 100%),
        radial-gradient(circle at 92% 12%, rgba(46, 125, 50, 0.18) 0%, transparent 58%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 0.25rem;
    max-width: 720px;
    overflow: hidden;
}
/* Thin gold-to-green accent rail along the top of the panel */
.footer-widgets-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vf-green-medium) 0%, var(--vf-yellow) 100%);
    opacity: 0.85;
}
.footer-widgets-area .widget {
    max-width: 640px;
}
.footer-widgets-area .widget-title {
    position: relative;
    margin: 0 0 1rem;
    padding-bottom: 0.875rem;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--vf-yellow);
}
/* Gold underline accent under the heading (matches .footer-heading) */
.footer-widgets-area .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--vf-yellow) 0%, rgba(251, 192, 45, 0.15) 100%);
}
.footer-widgets-area .textwidget {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}
.footer-widgets-area .textwidget p {
    margin: 0 0 0.75rem;
}
.footer-widgets-area .textwidget p:last-child {
    margin-bottom: 0;
}
.footer-widgets-area a {
    color: var(--vf-yellow-light);
    text-decoration: none;
    transition: color 200ms ease;
}
.footer-widgets-area a:hover {
    color: white;
}
/* Premium call/whatsapp chip — mirrors the footer contact-icon chips */
.footer-widgets-area .textwidget .vf-widget-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    padding: 0.625rem 1.125rem;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #81C784;
    background: rgba(46, 125, 50, 0.16);
    border: 1px solid rgba(46, 125, 50, 0.42);
    border-radius: var(--radius-full);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: all 250ms ease;
}
.footer-widgets-area .textwidget .vf-widget-call:hover {
    background: rgba(46, 125, 50, 0.3);
    border-color: #81C784;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}
@media (max-width: 639px) {
    .footer-widgets-area {
        margin-top: 2.25rem;
        padding: 1.75rem 1.25rem;
    }
    .footer-widgets-area .textwidget .vf-widget-call {
        font-size: 0.8125rem;
    }
}
@media (max-width: 359px) {
    .footer-widgets-area .textwidget .vf-widget-call {
        white-space: normal;
        line-height: 1.5;
    }
}

.footer-bottom {
    position: relative;
    margin-top: 3.5rem;
    padding: 1.75rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-copyright {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 200ms ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Footer responsiveness — premium balanced layout on phones:
   brand + contact full-width, link columns side-by-side, gentle
   section dividers, comfortable touch targets. */
@media (max-width: 639px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1.25rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        padding-bottom: 1.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-tagline {
        font-size: 0.9375rem;
        line-height: 1.75;
    }

    .footer-social {
        margin-top: 1.375rem;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-column {
        padding-bottom: 1.25rem;
    }

    /* Contact column spans full width below the two link columns */
    .footer-column:last-of-type {
        grid-column: 1 / -1;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Center the link-column headings + gold accent under them */
    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.125rem;
    }

    .footer-links a {
        font-size: 0.9375rem;
    }

    .footer-contact-item {
        margin-top: 1rem;
    }

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

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

    .footer-bottom {
        margin-top: 2rem;
        padding-bottom: 6.5rem; /* clears the fixed mobile bottom bar */
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.back-to-top:hover {
    background: var(--vf-green-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-padding {
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .section-padding {
        padding: var(--section-padding);
    }
}

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

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

/* Animation Classes */
.animate-blur-reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
}

.animate-blur-reveal.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 639px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .btn-primary-yellow,
    .btn-secondary-hero {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .hero-headline {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

/* =============================================
   HOW IT WORKS SECTION - Premium Process Timeline
   ============================================= */
.how-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(180deg, var(--vf-green-lighter) 0%, #f6faf1 100%);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .how-section {
        padding: var(--section-padding);
    }
}

/* Soft decorative glows */
.how-section::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.how-section::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 192, 45, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.how-section .container {
    position: relative;
    z-index: 1;
}

/* Steps grid: 1 col mobile -> 2 col tablet -> 4 col desktop */
.how-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: how-step;
}

@media (min-width: 640px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .how-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
        position: relative;
    }
    /* Connector line behind the number nodes */
    .how-steps::before {
        content: '';
        position: absolute;
        top: 34px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: linear-gradient(90deg, var(--vf-green) 0%, var(--vf-green-medium) 35%, var(--vf-yellow) 70%, var(--vf-yellow-dark) 100%);
        border-radius: 99px;
        opacity: 0.35;
    }
}

/* Step node (numbered gradient circle) */
.how-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-step-node {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 210deg, var(--vf-green-light) 0%, var(--vf-green-medium) 35%, var(--vf-green-dark) 65%, var(--vf-green-light) 100%);
    box-shadow: 0 10px 28px rgba(46, 125, 50, 0.30);
    margin-bottom: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-step-node::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #ffffff;
}

.how-step-num {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--font-poppins);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--vf-green-dark);
}

.how-step-num::after {
    content: 'STEP';
    margin-top: 4px;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted-foreground);
}

.how-step:nth-child(2) .how-step-node {
    background: conic-gradient(from 210deg, #fdf0c0 0%, var(--vf-yellow) 35%, var(--vf-yellow-dark) 65%, #fdf0c0 100%);
    box-shadow: 0 10px 28px rgba(251, 192, 45, 0.38);
}

.how-step:nth-child(2) .how-step-num {
    color: #8a6a06;
}

.how-step:hover .how-step-node {
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 16px 36px rgba(46, 125, 50, 0.42);
}

.how-step:nth-child(2):hover .how-step-node {
    transform: translateY(-4px) scale(1.07);
    box-shadow: 0 16px 36px rgba(251, 192, 45, 0.48);
}

/* Step card */
.how-step-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border-radius: var(--radius-2xl);
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(46, 125, 50, 0.10);
    box-shadow: 0 4px 24px rgba(46, 125, 50, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.how-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46, 125, 50, 0.14);
    border-color: rgba(46, 125, 50, 0.22);
}

.how-step:nth-child(2) .how-step-card {
    border-color: rgba(251, 192, 45, 0.35);
    box-shadow: 0 8px 32px rgba(251, 192, 45, 0.10);
}

.how-step:nth-child(2) .how-step-card:hover {
    box-shadow: 0 18px 44px rgba(251, 192, 45, 0.18);
}

/* Icon chip */
.how-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--vf-green-light);
    color: var(--vf-green-dark);
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.how-step-card:hover .how-step-icon {
    transform: scale(1.08) rotate(-4deg);
}

.how-step:nth-child(2) .how-step-icon {
    background: linear-gradient(135deg, rgba(251, 192, 45, 0.18), rgba(251, 192, 45, 0.08));
    color: var(--vf-yellow-dark);
}

.how-step-icon svg {
    width: 26px;
    height: 26px;
}

/* Title + description */
.how-step-title {
    margin-top: 0.125rem;
    font-family: var(--font-poppins);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--vf-dark);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .how-step-title {
        font-size: 1.125rem;
    }
}

.how-step-desc {
    margin-top: 0.625rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .how-step-desc {
        font-size: 0.9375rem;
    }
}

/* Staggered reveal */
.how-step.animate-blur-reveal {
    transition-delay: var(--step-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    .how-step.animate-blur-reveal {
        transition-delay: 0ms;
    }
}

/* =============================================
   MOBILE BOTTOM ACTION BAR
   ============================================= */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    /* Add padding to body to account for fixed bottom bar */
    body {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mobile-action-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-call-btn {
    background: var(--vf-green-light);
    color: var(--vf-green);
    border: 2px solid var(--vf-green);
}

.mobile-call-btn:hover {
    background: var(--vf-green);
    color: white;
}

.mobile-order-btn {
    background: linear-gradient(to right, #25D366, #128C7E);
    color: white;
}

.mobile-order-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Mobile back-to-top button position — clear of the fixed Call/Order bar
   AND the iPhone home-indicator safe area (Android hides no UI there, but
   iOS does, so the extra inset keeps it from overlapping on iPhones). */
@media (max-width: 767px) {
    .back-to-top {
        bottom: calc(5rem + env(safe-area-inset-bottom));
        right: 1rem;
    }
}

/* The back-to-top FAB must never sit on top of the floating cart bar —
   when the cart bar is showing, lift the button above it (desktop: above
   the cart bar; mobile: above the cart bar + the Call/Order bar). */
body.has-floating-cart .back-to-top {
    bottom: calc(6rem + env(safe-area-inset-bottom));
}

@media (max-width: 767px) {
    body.has-floating-cart .back-to-top {
        bottom: calc(11.5rem + env(safe-area-inset-bottom));
    }
}

/* =============================================
   COLORFUL INSTAGRAM ICON
   ============================================= */
.social-icon-instagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xl);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transition: all var(--transition-base);
}

.social-icon-instagram svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.social-icon-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(188, 24, 136, 0.3);
}

.social-icon-instagram:hover svg {
    stroke: white;
}

.social-icon-facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-xl);
    background: #1877F2;
    color: white;
    transition: all var(--transition-base);
}

.social-icon-facebook svg {
    width: 24px;
    height: 24px;
}

.social-icon-facebook:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
}

/* =============================================
   RESPONSIVE IMPROVEMENTS
   ============================================= */
@media (max-width: 767px) {
    /* Section header adjustments */
    .section-heading {
        font-size: 1.75rem;
    }
    
    /* Delivery section mobile */
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-card {
        margin-top: 1.5rem;
    }
    
    /* CTA section mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-step-card {
        max-width: 100%;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .site-header,
    .scroll-progress,
    .back-to-top,
    .scroll-indicator,
    .mobile-bottom-bar {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        page-break-inside: avoid;
    }
    
    body {
        background: white;
        color: black;
        padding-bottom: 0;
    }
}

/* =============================================
   UTILITY CLASSES - VISIBILITY
   ============================================= */
.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: flex;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .desktop-only {
        display: flex;
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* =============================================
   PRODUCT ORDER MODAL
   ============================================= */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-modal[hidden] {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    padding: 0;
}

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--vf-beige);
}

.modal-title {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin: 0;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--vf-green-light);
    color: var(--vf-green);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--vf-green);
    color: white;
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

/* Modal Body */
.modal-body {
    padding: 1.5rem;
}

/* Product Summary */
.modal-product-summary {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--vf-green-lighter);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.modal-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-details {
    flex: 1;
    min-width: 0;
}

.modal-product-category {
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--vf-green);
    margin: 0 0 0.25rem;
}

.modal-product-name {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin: 0 0 0.25rem;
}

.modal-product-price {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Modal Labels */
.modal-label {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

/* Size Selection */
.modal-size-section {
    margin-bottom: 1.5rem;
}

.modal-size-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-option:hover {
    border-color: var(--vf-green-medium);
    background: var(--vf-green-lighter);
}

.size-option.active {
    border-color: var(--vf-green);
    background: var(--vf-green-light);
}

.size-name {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--vf-dark);
}

.size-price {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vf-green);
}

/* Poultry Disclaimer */
.poultry-disclaimer {
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border: 1px solid #FFD54F;
    border-radius: var(--radius-lg);
    border-left: 4px solid #F9A825;
}

.poultry-disclaimer .disclaimer-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #F57C00;
}

.poultry-disclaimer .disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.poultry-disclaimer .disclaimer-content {
    flex: 1;
}

.poultry-disclaimer .disclaimer-content strong {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: #E65100;
    margin-bottom: 0.25rem;
}

.poultry-disclaimer .disclaimer-content p {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: #5D4037;
    line-height: 1.5;
    margin: 0;
}

.poultry-disclaimer .disclaimer-content .highlight {
    font-weight: 600;
    color: #E65100;
    background: rgba(249, 168, 37, 0.3);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
}

@media (max-width: 480px) {
    .poultry-disclaimer {
        padding: 0.875rem;
    }
    
    .poultry-disclaimer .disclaimer-content strong {
        font-size: 0.8125rem;
    }
    
    .poultry-disclaimer .disclaimer-content p {
        font-size: 0.75rem;
    }
}

/* Quantity Controls */
.modal-quantity-section {
    margin-bottom: 1.5rem;
}

.modal-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--vf-green-light);
    border: 2px solid var(--vf-green);
    border-radius: var(--radius-lg);
    color: var(--vf-green);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--vf-green);
    color: white;
}

.qty-btn svg {
    width: 18px;
    height: 18px;
}

.qty-input {
    width: 80px;
    height: 44px;
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
    background: white;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    outline: none;
    transition: border-color var(--transition-fast);
}

.qty-input:focus {
    border-color: var(--vf-green);
}

/* Hide number input spinners */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Total Price */
.modal-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--vf-dark);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.modal-total-label {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.modal-total-price {
    font-family: var(--font-poppins);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vf-yellow);
}

/* Special Instructions */
.modal-instructions {
    margin-bottom: 0;
}

.modal-instructions textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    background: var(--vf-green-lighter);
    border: 1px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    resize: none;
    outline: none;
    transition: border-color var(--transition-fast);
}

.modal-instructions textarea:focus {
    border-color: var(--vf-green);
}

.modal-instructions textarea::placeholder {
    color: var(--muted-foreground);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--vf-beige);
    background: var(--vf-green-lighter);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.modal-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-btn-cancel {
    background: white;
    border: 2px solid var(--vf-beige);
    color: var(--muted-foreground);
}

.modal-btn-cancel:hover {
    border-color: var(--vf-dark);
    color: var(--vf-dark);
}

.modal-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
}

.modal-btn-whatsapp:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.modal-btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* Body class when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Mobile Modal Adjustments */
@media (max-width: 640px) {
    .product-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .modal-container {
        max-width: 100%;
        max-height: 85vh;
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    }
    
    .modal-product-summary {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-product-image {
        width: 100%;
        height: 120px;
    }
    
    .modal-size-options {
        flex-direction: column;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* =============================================
   WHY FREE-RANGE SECTION - COMPLETE STYLES
   ============================================= */
.freerange-section {
    padding: var(--section-padding-mobile);
    background: linear-gradient(180deg, var(--vf-warm-white) 0%, white 100%);
}

@media (min-width: 1024px) {
    .freerange-section {
        padding: var(--section-padding);
    }
}

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

@media (min-width: 1024px) {
    .freerange-section .section-header {
        margin-bottom: 3rem;
    }
}

/* Trust Banner */
.freerange-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    border-radius: var(--radius-full);
    margin: 0 auto 2.5rem;
    max-width: fit-content;
}

.freerange-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vf-yellow);
}

.freerange-banner-icon svg {
    width: 20px;
    height: 20px;
}

.freerange-banner-text {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
}

@media (min-width: 768px) {
    .freerange-banner-text {
        font-size: 1rem;
    }
}

/* Two Column Grid */
.freerange-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .freerange-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Image Column */
.freerange-image-wrapper {
    position: relative;
}

.freerange-image-wrapper .freerange-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.freerange-image-wrapper .freerange-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Stats Column */
.freerange-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Stat Block */
.stat-block {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--vf-beige);
    transition: all var(--transition-base);
}

.stat-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--vf-green-medium);
}

/* Stat Icon */
.stat-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--vf-green-light);
    border-radius: var(--radius-lg);
    color: var(--vf-green);
}

.stat-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

/* Stat Content */
.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-family: var(--font-poppins);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-value-gold {
    color: var(--vf-yellow-dark);
}

.stat-value-green {
    color: var(--vf-green);
}

.stat-value-red {
    color: #DC2626;
}

.stat-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-title {
        font-size: 1.125rem;
    }
}

.stat-text {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .stat-text {
        font-size: 0.9375rem;
    }
}

/* Animation for stat blocks */
.stat-block.animate-blur-reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}

.stat-block.animate-blur-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Stats with centered content */
.stats-grid .stat-block {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
}

.stats-grid .stat-block .stat-value {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stats-grid .stat-block .stat-value {
        font-size: 3rem;
    }
}

.stats-grid .stat-block .stat-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.stats-grid .stat-block .stat-text {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Free-range Images Grid */
.freerange-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .freerange-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.freerange-images .freerange-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
}

.freerange-images .freerange-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.freerange-images .freerange-image:hover img {
    transform: scale(1.05);
}

/* =============================================
   WHY CHOOSE SECTION - COMPLETE STYLES
   ============================================= */
.why-section {
    padding: var(--section-padding-mobile);
    background: var(--vf-green-lighter);
}

@media (min-width: 1024px) {
    .why-section {
        padding: var(--section-padding);
    }
}

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

.why-section .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-section .feature-card {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--vf-beige);
    transition: all var(--transition-base);
}

.why-section .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--vf-green-medium);
}

.why-section .feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--vf-green);
    opacity: 0.5;
}

.why-section .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--vf-green-light);
    border-radius: var(--radius-xl);
    margin-bottom: 1.25rem;
    color: var(--vf-green);
}

.why-section .feature-icon svg {
    width: 28px;
    height: 28px;
}

.why-section .feature-title {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vf-dark);
    margin-bottom: 0.75rem;
}

.why-section .feature-description {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ==========================================================================
   WEB INTERFACE GUIDELINES COMPLIANCE FIXES
   ========================================================================== */

/* Focus-visible: Replace bare outline: none with proper keyboard focus rings.
   All 12 instances of outline: none in the theme are paired with box-shadow
   for visual focus, but they break keyboard-only navigation. This rule
   restores visible focus for keyboard users while keeping mouse focus clean. */
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: 2px;
}

/* Touch-action: Eliminates the 300ms tap delay on mobile by telling the
   browser the element handles its own touch gestures. Applied to all
   interactive controls per Web Interface Guidelines. */
button,
a,
input,
select,
textarea,
[role="button"],
.filter-tab,
.nav-link,
.product-card,
.feature-card,
.trust-item,
.gallery-dot,
.how-timeline-tag {
    touch-action: manipulation;
}

/* Overscroll-behavior: Prevents scroll chaining from modals and drawers
   to the underlying page. When a user scrolls to the top/bottom of a
   modal, the scroll stops there instead of bouncing the background. */
.cart-modal,
.product-modal,
.map-picker-modal,
.mobile-menu {
    overscroll-behavior: contain;
}

/* Scroll-margin-top: Provides offset for anchor navigation targets so
   headings aren't hidden behind the fixed header when linked to directly. */
[id] {
    scroll-margin-top: 88px;
}

/* Reduced motion: Global animation suppression for users who prefer
   reduced motion. Complements the existing per-section reduced-motion
   rules but provides a comprehensive fallback. */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
        scroll-behavior: auto !important;
    }
}

/* Focus-visible global fallback: Ensure all interactive elements show
   focus ring on keyboard navigation but not on mouse click. */
*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--vf-green);
    outline-offset: 2px;
}

/* =============================================
   FIX: Footer WhatsApp Button
   ============================================= */
.footer-whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.footer-whatsapp-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* =============================================
   FIX: Modal Note Section
   ============================================= */
.modal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--vf-green-lighter);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.modal-note svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--vf-green);
    margin-top: 2px;
}

.modal-note span {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: #4B5563;
    line-height: 1.5;
}

/* =============================================
   FIX: Cart Modal Styles
   ============================================= */
.cart-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: opacity var(--transition-base);
}

.cart-modal[hidden] {
    display: none;
}

.cart-modal .cart-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cart-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 480px;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--shadow-md);
}

.cart-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-lg);
}

.cart-header-icon svg {
    width: 18px;
    height: 18px;
}

.cart-header h2 {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.cart-item-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: var(--vf-green);
    color: white;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.cart-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--vf-dark-70);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-close:hover {
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.cart-close svg {
    width: 20px;
    height: 20px;
}

.cart-body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 50vh;
    overflow-y: auto;
    background: white;
    padding: 1rem 1.25rem;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.cart-empty-icon {
    width: 48px;
    height: 48px;
    color: var(--vf-beige);
}

.cart-empty-text {
    margin-top: 1rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.cart-empty-subtext {
    margin-top: 0.25rem;
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cart-empty-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.cart-empty-continue:hover {
    background: var(--vf-green-dark);
}

.cart-empty-continue svg {
    width: 16px;
    height: 16px;
}

/* Cart Item Row */
.cart-item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--vf-beige);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    line-height: 1.3;
}

.cart-item-local {
    font-weight: 400;
    color: var(--muted-foreground);
    font-style: italic;
}

.cart-item-meta {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.125rem;
}

.cart-item-total {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    white-space: nowrap;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.cart-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--vf-beige);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    transition: all var(--transition-fast);
}

.cart-qty-btn:hover {
    border-color: var(--vf-green);
    color: var(--vf-green);
}

.cart-qty-value {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #9CA3AF;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    margin-left: 0.25rem;
}

.cart-item-remove:hover {
    color: #EF4444;
    background: #FEF2F2;
}

.cart-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vf-green);
    border: 1px solid var(--vf-green);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-continue-shopping:hover {
    background: var(--vf-green-light);
}

.cart-continue-shopping svg {
    width: 14px;
    height: 14px;
}

/* Cart Footer */
.cart-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-lg);
}

.cart-customer-details h3 {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

.cart-customer-details input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--vf-dark);
    background: white;
    transition: border-color var(--transition-fast);
    margin-bottom: 0.5rem;
}

.cart-customer-details input:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.cart-customer-details input::placeholder {
    color: #9CA3AF;
}

.cart-address-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cart-address-wrapper input {
    flex: 1;
    margin-bottom: 0;
}

.pin-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.625rem 0.75rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.pin-map-btn:hover {
    background: var(--vf-green);
    color: white;
}

.pin-map-btn svg {
    width: 14px;
    height: 14px;
}

.cart-maps-link {
    display: none;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--vf-green);
}

.cart-maps-link svg {
    width: 14px;
    height: 14px;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--vf-dark);
}

.cart-total-label {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.cart-total {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
}

.cart-send-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.cart-send-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.cart-send-order:disabled,
.product-modal.cart-view-modal .cart-btn-send:disabled,
.product-modal.cart-view-modal .cart-btn-send[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(0.65);
}

.cart-send-order svg {
    width: 20px;
    height: 20px;
}

.cart-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    color: #9CA3AF;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.cart-clear:hover {
    color: #EF4444;
}

.cart-clear svg {
    width: 14px;
    height: 14px;
}

/* =============================================
   FIX: Floating Cart Bar (Swiggy/Zomato style)
   ============================================= */
.floating-cart-bar {
    position: fixed;
    bottom: calc(76px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 2rem);
    max-width: 480px;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-xl);
    box-shadow: 0 14px 40px rgba(18, 56, 21, 0.45);
    transition: transform var(--transition-base);
}

/* On mobile the floating cart bar sits ABOVE the fixed Call/Order bar,
   never covering it — with a comfortable gap for touch targets. */
@media (max-width: 767px) {
    .floating-cart-bar {
        bottom: calc(104px + env(safe-area-inset-bottom));
    }
}

/* On desktop there is no fixed mobile bar, so the cart bar can sit lower
   and never hover awkwardly over the footer content. */
@media (min-width: 768px) {
    .floating-cart-bar {
        bottom: calc(1.25rem + env(safe-area-inset-bottom));
    }
}

/* Reserve room so the page footer is never hidden behind the fixed bars —
   on desktop the floating cart bar alone, on mobile both bars. */
body.has-floating-cart {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

@media (max-width: 767px) {
    body.has-floating-cart {
        padding-bottom: calc(180px + env(safe-area-inset-bottom));
    }
}

/* The floating cart bar is hidden while the hero (with its Order Now /
   View Products buttons) is on screen — the bar only appears once the
   shopper scrolls past the hero, so it never covers the CTAs. */
body.hero-cta-visible .floating-cart-bar {
    transform: translateX(-50%) translateY(120%);
    visibility: hidden;
    pointer-events: none;
    /* Let the slide-down play out before it disappears */
    transition: transform var(--transition-base), visibility 0s var(--transition-base);
}

.floating-cart-bar.visible {
    transform: translateX(-50%) translateY(0);
}

/* Attention pulse after adding an item */
@keyframes vfCartPulse {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
        box-shadow: 0 14px 40px rgba(18, 56, 21, 0.45);
    }
    30% {
        transform: translateX(-50%) translateY(0) scale(1.035);
        box-shadow: 0 18px 48px rgba(251, 192, 45, 0.55);
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        box-shadow: 0 14px 40px rgba(18, 56, 21, 0.45);
    }
}

.floating-cart-bar.pulse {
    animation: vfCartPulse 0.7s ease;
}

.floating-cart-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.floating-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
}

.floating-cart-icon svg {
    width: 20px;
    height: 20px;
}

.floating-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 0.25rem;
    background: var(--vf-yellow);
    color: var(--vf-dark);
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.floating-cart-details {
    display: flex;
    flex-direction: column;
}

.floating-cart-count-text {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
}

.floating-cart-total {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 700;
}

.floating-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background: white;
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.floating-cart-btn:hover {
    background: var(--vf-green-light);
}

.floating-cart-btn svg {
    width: 14px;
    height: 14px;
}

/* =============================================
   FIX: How It Works Timeline
   ============================================= */
.how-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.how-timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--vf-beige);
}

.how-timeline-line-fill {
    width: 100%;
    height: 100%;
    background: var(--vf-green);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1s ease;
}

.how-timeline-step {
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.how-timeline-step:first-child {
    padding-top: 0;
}

.how-timeline-dot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-full);
    z-index: 1;
}

.how-timeline-dot-highlighted {
    border-color: var(--vf-yellow);
    background: var(--vf-yellow);
}

.how-timeline-number {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 700;
    color: var(--vf-dark);
}

.how-timeline-dot-highlighted .how-timeline-number {
    color: var(--vf-dark);
}

.how-timeline-card {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.how-timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.how-timeline-card-highlighted {
    background: var(--vf-green-lighter);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.how-timeline-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
}

.how-timeline-card-icon-yellow {
    background: rgba(251, 192, 45, 0.15);
    color: var(--vf-yellow-dark);
}

.how-timeline-card-icon svg {
    width: 22px;
    height: 22px;
}

.how-timeline-title {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

.how-timeline-desc {
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.how-timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.how-timeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.how-timeline-cta {
    margin-top: 1rem;
}

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

.how-section-cta p {
    font-family: var(--font-open-sans);
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* =============================================
   FIX: Mobile Bottom Bar
   ============================================= */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    display: flex;
    gap: 0.625rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(46, 125, 50, 0.08);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
    padding: 0.625rem 0.75rem calc(0.625rem + env(safe-area-inset-bottom));
}

@media (min-width: 768px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.mobile-action-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-call-btn {
    color: var(--vf-green);
    background: #ffffff;
    border: 1.5px solid rgba(46, 125, 50, 0.35);
}

.mobile-call-btn:hover {
    background: var(--vf-green-light);
    border-color: var(--vf-green);
}

.mobile-order-btn {
    color: white;
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
}

.mobile-order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.45);
}

/* =============================================
   FIX: Back to Top Button
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 1rem;
    z-index: var(--z-sticky);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    color: var(--vf-green);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    pointer-events: none;
}

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

.back-to-top:hover {
    background: var(--vf-green);
    color: white;
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
    }
}

/* =============================================
   FIX: Toast Notifications
   ============================================= */
.vihari-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: var(--z-tooltip);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--vf-dark);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: all var(--transition-base);
}

.vihari-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.vihari-toast svg {
    width: 18px;
    height: 18px;
    color: #4ADE80;
    flex-shrink: 0;
}

/* =============================================
   FIX: Modal Overlay & Container
   ============================================= */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin: 1rem;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--vf-beige);
}

.modal-title {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title svg {
    width: 20px;
    height: 20px;
    color: var(--vf-green);
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--vf-dark-70);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--vf-green-light);
    color: var(--vf-green);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-body {
    padding: 1.25rem;
}

.modal-product-summary {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--vf-beige);
}

.modal-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--vf-green-light);
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-details {
    flex: 1;
}

.modal-product-category {
    font-family: var(--font-poppins);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--vf-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-product-name {
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-top: 0.125rem;
}

.modal-product-price {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

.modal-label {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

.modal-size-section {
    padding: 1rem 0;
    border-bottom: 1px solid var(--vf-beige);
}

.modal-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.625rem 1rem;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    min-width: 80px;
}

.size-option:hover {
    border-color: var(--vf-green);
}

.size-option.active {
    border-color: var(--vf-green);
    background: var(--vf-green-light);
}

.size-name {
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.size-price {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.poultry-disclaimer {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #FEF3C7;
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
}

.disclaimer-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #D97706;
}

.disclaimer-icon svg {
    width: 20px;
    height: 20px;
}

.disclaimer-content {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: #92400E;
    line-height: 1.4;
}

.disclaimer-content .highlight {
    font-weight: 600;
    color: #D97706;
}

.modal-quantity-section {
    padding: 1rem 0;
    border-bottom: 1px solid var(--vf-beige);
}

.modal-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    color: var(--vf-green);
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    border-color: var(--vf-green);
    background: var(--vf-green-light);
}

.qty-btn svg {
    width: 18px;
    height: 18px;
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--vf-beige);
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.modal-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--vf-dark);
    color: white;
    border-radius: var(--radius-lg);
    margin-top: 0.75rem;
}

.modal-total-label {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 500;
}

.modal-total-price {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-yellow);
}

.modal-instructions {
    padding: 1rem 0;
}

.modal-instructions textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--vf-dark);
    resize: vertical;
    min-height: 60px;
    transition: border-color var(--transition-fast);
}

.modal-instructions textarea:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.modal-instructions textarea::placeholder {
    color: #9CA3AF;
}

.modal-delivery-hint {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.modal-delivery-hint svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--vf-beige);
}

.modal-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.modal-btn-cancel {
    background: white;
    color: var(--vf-dark);
    border: 1px solid var(--vf-beige);
}

.modal-btn-cancel:hover {
    background: var(--vf-green-light);
    border-color: var(--vf-green);
}

.modal-btn-add-cart {
    background: var(--vf-green);
    color: white;
}

.modal-btn-add-cart:hover {
    background: var(--vf-green-dark);
}

.modal-btn-add-cart svg {
    width: 18px;
    height: 18px;
}

.modal-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.modal-btn-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.modal-btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* =============================================
   FIX: Map Picker Modal
   ============================================= */
.map-picker-modal .modal-container {
    max-width: 560px;
}

.map-picker-body {
    padding: 1rem 1.25rem;
}

.map-search-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.map-search-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--vf-dark);
    transition: border-color var(--transition-fast);
}

.map-search-input:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.map-use-current-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    background: var(--vf-green-light);
    color: var(--vf-green);
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.map-use-current-btn:hover {
    background: var(--vf-green);
    color: white;
}

.map-use-current-btn svg {
    width: 16px;
    height: 16px;
}

.map-canvas {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--vf-green-light);
}

.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.5rem;
    color: var(--vf-green);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
}

.map-loading svg {
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
}

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

/* Map-unavailable fallback — shown if the Leaflet CDN is slow or blocked,
   so a map outage can never prevent a customer from completing an order. */
.map-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.5rem;
    gap: 0.75rem;
    text-align: center;
    background: var(--vf-warm-white);
}

.map-fallback-title {
    font-family: var(--font-poppins);
    font-size: 0.9375rem;
    color: var(--vf-dark);
}

.map-fallback-text {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.map-fallback-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: var(--vf-green);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 200ms ease;
}

.map-fallback-continue:hover {
    background: var(--vf-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.map-selected-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.75rem;
    background: var(--vf-green-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--vf-dark);
}

.map-selected-info svg {
    width: 16px;
    height: 16px;
    color: var(--vf-green);
    flex-shrink: 0;
}

.map-edit-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    background: white;
    color: var(--vf-green);
    border-radius: var(--radius-md);
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: auto;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.map-edit-address-btn:hover {
    background: var(--vf-green);
    color: white;
}

.map-detail-fields {
    margin-top: 0.75rem;
}

.map-detail-hint {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.map-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.map-detail-field label {
    display: block;
    font-family: var(--font-poppins);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.25rem;
}

.map-detail-field input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--vf-dark);
    transition: border-color var(--transition-fast);
}

.map-detail-field input:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.map-detail-field-full {
    grid-column: 1 / -1;
    margin-bottom: 0.75rem;
}

.map-detail-field label .req {
    color: #D32F2F;
}

/* Mandatory exact-address input — a red border + shake make the ask visible
   on both mobile and desktop when Confirm is pressed without a typed address. */
.map-detail-field input.map-input-error {
    border-color: #D32F2F;
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.12);
}

.map-address-error {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.25rem 1.25rem 0.75rem;
    padding: 0.65rem 0.85rem;
    background: #FDECEA;
    border: 1px solid #F5C6C0;
    border-left: 4px solid #D32F2F;
    border-radius: var(--radius-md);
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #7F1D1D;
}

.map-address-error.shake {
    animation: map-shake 0.4s ease;
}

@keyframes map-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
    .map-address-error.shake {
        animation: none;
    }
}

.map-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--vf-beige);
}

.map-instruction {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    flex: 1;
}

/* =============================================
   FIX: Screen Reader Text
   ============================================= */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* =============================================
   FIX: Testimonials Section
   ============================================= */
.testimonials-section {
    padding: var(--section-padding-mobile);
    background: var(--vf-warm-white);
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: var(--section-padding);
    }
}

.testimonial-quote {
    margin-top: 1rem;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform var(--transition-slow);
}

/* =============================================
   FIX: Cart Modal - Static Preview Structure
   (The static preview uses product-modal cart-view-modal
    with modal-header inside modal-container)
   ============================================= */
.product-modal.cart-view-modal .modal-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--shadow-md);
}

.product-modal.cart-view-modal .cart-body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 50vh;
    overflow-y: auto;
    background: white;
    padding: 1rem 1.25rem;
}

.product-modal.cart-view-modal .cart-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    background: white;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-lg);
}

.product-modal.cart-view-modal .cart-footer-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.product-modal.cart-view-modal .cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.product-modal.cart-view-modal .cart-btn-clear {
    background: white;
    color: var(--vf-dark);
    border: 1px solid var(--vf-beige);
}

.product-modal.cart-view-modal .cart-btn-clear:hover {
    background: var(--vf-green-light);
    border-color: var(--vf-green);
}

.product-modal.cart-view-modal .cart-btn-send {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.product-modal.cart-view-modal .cart-btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.product-modal.cart-view-modal .cart-btn-send svg {
    width: 18px;
    height: 18px;
}

.product-modal.cart-view-modal .cart-customer-section {
    margin-bottom: 0.75rem;
}

.product-modal.cart-view-modal .cart-customer-section .modal-label {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin-bottom: 0.5rem;
}

.product-modal.cart-view-modal .modal-customer-fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-modal.cart-view-modal .modal-field input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--vf-dark);
    background: white;
    transition: border-color var(--transition-fast);
}

.product-modal.cart-view-modal .modal-field input:focus {
    outline: none;
    border-color: var(--vf-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.product-modal.cart-view-modal .modal-field input::placeholder {
    color: #9CA3AF;
}

/* Phone field error state — red ring + inline message (digits-only rule) */
.product-modal.cart-view-modal .modal-field input[aria-invalid="true"] {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.product-modal.cart-view-modal .modal-field-error {
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: #DC2626;
    line-height: 1.4;
    margin: 0;
}

.product-modal.cart-view-modal .modal-field-address {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.product-modal.cart-view-modal .modal-field-address input {
    flex: 1;
}

.product-modal.cart-view-modal .modal-maps-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0;
    font-family: var(--font-open-sans);
    font-size: 0.75rem;
    color: var(--vf-green);
}

.product-modal.cart-view-modal .cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 2px solid var(--vf-dark);
}

.product-modal.cart-view-modal .cart-total-label {
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.product-modal.cart-view-modal .cart-total-value {
    font-family: var(--font-poppins);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vf-dark);
}

.product-modal.cart-view-modal .cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}

.product-modal.cart-view-modal .cart-empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--vf-beige);
}

.product-modal.cart-view-modal .cart-empty-state p {
    margin-top: 1rem;
    font-family: var(--font-poppins);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vf-dark);
}

.product-modal.cart-view-modal .cart-empty-state span {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-modal.cart-view-modal .cart-items-list {
    display: flex;
    flex-direction: column;
}

/* =============================================
   ORDER REQUEST PREVIEW MODAL — premium PNG card
   ============================================= */
.order-request-modal .order-request-container {
    max-width: 560px;
    width: calc(100% - 2rem);
    max-height: 92vh;
}

.order-request-modal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: 92vh;
}

.order-request-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem 1.25rem;
}

.order-request-hint {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.order-card-wrap {
    display: flex;
    justify-content: center;
    background: #F4F7F0;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
}

.order-card-canvas {
    width: 100%;
    max-width: 300px;
    height: auto;
    /* Height follows the card's intrinsic ratio — set by JS at draw time so
       the footer band always sits below the content and nothing is cropped. */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.order-request-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.order-request-no {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--vf-green);
    background: rgba(46, 125, 50, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
}

.order-request-map-link {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--vf-green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.order-request-footer {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: 1px solid #EEF0F2;
}

.order-request-footer .modal-btn-whatsapp {
    background: var(--vf-green);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.order-request-footer .modal-btn-whatsapp:hover {
    background: var(--vf-green-dark, #1B5E20);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .order-request-body {
        padding: 0.75rem 1rem 1rem;
    }
    .order-card-canvas {
        max-width: 250px;
    }
}

/* =============================================
   ORDER REQUEST — QR SCAN-TO-SEND step (desktop)
   ============================================= */
.order-qr-step {
    padding: 0.25rem 0;
}

.order-qr-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F8F1 100%);
    border: 1px solid rgba(46, 125, 50, 0.18);
    border-radius: var(--radius-2xl);
    box-shadow: 0 12px 36px rgba(18, 56, 21, 0.08);
}

.order-qr-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    margin-bottom: 0.75rem;
}

.order-qr-badge svg {
    width: 28px;
    height: 28px;
}

.order-qr-title {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--vf-dark);
    margin: 0 0 0.375rem;
}

.order-qr-text {
    font-family: var(--font-open-sans);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 380px;
    margin: 0 0 1.25rem;
}

.order-qr-code-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.25rem;
}

.order-qr-code {
    display: none;
    width: 232px;
    height: 232px;
    image-rendering: pixelated;
}

.order-qr-loading {
    font-family: var(--font-open-sans);
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    padding: 3rem 1rem;
}

.order-qr-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    max-width: 380px;
}

.order-qr-actions .modal-btn {
    flex: 1;
}

@media (max-width: 480px) {
    .order-qr-card {
        padding: 1.25rem 1rem;
    }
    .order-qr-code {
        width: 200px;
        height: 200px;
    }
    .order-qr-actions {
        flex-direction: column;
    }
}

.order-qr-download-row {
    margin-top: 0.75rem;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
}

.order-qr-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1.5px dashed rgba(22, 101, 52, 0.45);
    border-radius: var(--radius-full);
    background: rgba(22, 101, 52, 0.05);
    color: #166534;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.order-qr-download:hover,
.order-qr-download:focus-visible {
    background: rgba(22, 101, 52, 0.12);
    border-color: #166534;
    transform: translateY(-1px);
    outline: none;
}

.order-qr-download-note {
    margin: 0;
    font-size: 0.72rem;
    color: #66736b;
    text-align: center;
    line-height: 1.45;
}

/* =============================================
   SEARCH FORM — premium pill (404 + search pages)
   ============================================= */
.search-form {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    border: 1.5px solid rgba(46, 125, 50, 0.25);
    border-radius: var(--radius-full);
    padding: 0.375rem;
    box-shadow: 0 4px 20px rgba(20, 60, 30, 0.08);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.search-form:focus-within {
    border-color: var(--vf-green);
    box-shadow: 0 4px 24px rgba(46, 125, 50, 0.18);
}

.search-form .search-field {
    flex: 1;
    min-width: 0;
    padding: 0.625rem 1rem;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-open-sans);
    font-size: 0.9375rem;
    color: var(--vf-dark);
}

.search-form .search-field::placeholder {
    color: var(--muted-foreground);
}

.search-form .search-submit {
    flex-shrink: 0;
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--vf-green) 0%, var(--vf-green-dark) 100%);
    color: #fff;
    font-family: var(--font-poppins);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.search-form .search-submit:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
}

@media (max-width: 480px) {
    .search-form .search-submit {
        padding: 0.625rem 1rem;
        font-size: 0;
    }
    .search-form .search-submit::after {
        content: 'Go';
        font-size: 0.8125rem;
    }
}

/* Pagination (search results) */
.navigation.pagination,
.posts-navigation {
    margin-top: 2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.nav-links .page-numbers,
.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: var(--vf-green);
    font-family: var(--font-poppins);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.nav-links .page-numbers.current {
    background: var(--vf-green);
    border-color: var(--vf-green);
    color: #fff;
}

.nav-links a:hover {
    background: var(--vf-green-light);
    border-color: var(--vf-green);
}
