/*!
 * Vihari Farms Theme v10.0
 * Premium Farm Theme - Green & Gold
 *
 * CHANGES FROM v9.0:
 * - New logo handling (white + colored versions via CSS)
 * - Enhanced animations and effects
 * - Premium typography
 * - Fixed Kodi Punju SVG container
 * - Updated About section background for hen image
 * - Updated Why Us section background for lady feeding image
 * - WhatsApp icon moved to left in footer bottom
 * - How to Order help text styling
 * - Mobile responsive preserved
 */

/* ============================================================
   0. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Brand Colors */
    --vf-primary: #1c7347;
    --vf-dark: #145233;
    --vf-forest: #0d2818;
    --vf-gold: #fcc236;
    --vf-amber: #ffb400;

    /* Brighter accents for hero */
    --vf-green-light: #28a05a;
    --vf-green-bright: #32b866;

    /* Neutrals */
    --vf-white: #ffffff;
    --vf-off-white: #f8faf9;
    --vf-light: #f0f5f2;
    --vf-gray-100: #e8ede9;
    --vf-gray-200: #d1dbd4;
    --vf-gray-300: #b0bfb4;
    --vf-gray-400: #8a9e8f;
    --vf-gray-500: #6b7f70;
    --vf-gray-600: #4d5f52;
    --vf-gray-700: #3a4a3e;
    --vf-gray-800: #2a362d;
    --vf-gray-900: #1a2e22;
    --vf-black: #0a1a0f;

    /* Typography */
    --vf-font-display: 'Playfair Display', Georgia, serif;
    --vf-font-heading: 'Red Hat Display', sans-serif;
    --vf-font-body: 'Red Hat Text', sans-serif;

    /* Layout */
    --vf-container: 1200px;
    --vf-radius: 10px;
    --vf-radius-lg: 16px;
    --vf-radius-full: 9999px;

    /* Shadows */
    --vf-shadow: 0 4px 12px rgba(13, 40, 24, 0.1);
    --vf-shadow-md: 0 8px 24px rgba(13, 40, 24, 0.12);
    --vf-shadow-lg: 0 16px 48px rgba(13, 40, 24, 0.16);
    --vf-shadow-glow: 0 0 30px rgba(252, 194, 54, 0.15);

    /* Transitions */
    --vf-ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --vf-ease-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --vf-z-header: 900;
    --vf-z-mobile-nav: 950;
    --vf-z-overlay: 940;
    --vf-z-call-bar: 800;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--vf-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--vf-gray-700);
    background: var(--vf-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--vf-primary);
    text-decoration: none;
    transition: color var(--vf-ease);
}

a:hover { color: var(--vf-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vf-font-heading);
    color: var(--vf-forest);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; line-height: 1.75; }

::selection {
    background: var(--vf-gold);
    color: var(--vf-forest);
}

/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.vf-container {
    max-width: var(--vf-container);
    margin: 0 auto;
    padding: 0 24px;
}

.vf-section-label {
    display: inline-block;
    font-family: var(--vf-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--vf-gold);
    margin-bottom: 12px;
}

.vf-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--vf-forest);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.vf-section-subtitle {
    font-size: 1.05rem;
    color: var(--vf-gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.vf-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.vf-highlight { color: var(--vf-primary); }

/* ============================================================
   3. ANIMATIONS & EFFECTS
   ============================================================ */

/* Hero entrance animations */
@keyframes vfHeroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vf-animate-in {
    animation: vfHeroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Scroll-triggered fade up */
@keyframes vfFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vf-fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.vf-fade-up.vf-visible {
    animation: vfFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Parallax float effect */
@keyframes vfFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Shimmer effect for gold elements */
@keyframes vfShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Pulse glow for CTAs */
@keyframes vfPulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 194, 54, 0.4); }
    50% { box-shadow: 0 0 20px 4px rgba(252, 194, 54, 0.15); }
}

/* Rotate subtle for decorative elements */
@keyframes vfRotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Text reveal effect */
@keyframes vfTextReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Scale in */
@keyframes vfScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger children animation helper */
.vf-stagger > *:nth-child(1) { animation-delay: 0s; }
.vf-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.vf-stagger > *:nth-child(3) { animation-delay: 0.2s; }
.vf-stagger > *:nth-child(4) { animation-delay: 0.3s; }
.vf-stagger > *:nth-child(5) { animation-delay: 0.35s; }
.vf-stagger > *:nth-child(6) { animation-delay: 0.4s; }

/* ============================================================
   4. BUTTONS
   ============================================================ */
.vf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--vf-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--vf-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--vf-ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.vf-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.vf-btn:hover::after {
    width: 300px;
    height: 300px;
}

.vf-btn svg { flex-shrink: 0; position: relative; z-index: 1; }
.vf-btn span, .vf-btn { position: relative; z-index: 1; }

.vf-btn-primary {
    background: var(--vf-primary);
    color: var(--vf-white);
    border-color: var(--vf-primary);
}

.vf-btn-primary:hover {
    background: var(--vf-dark);
    border-color: var(--vf-dark);
    color: var(--vf-white);
    transform: translateY(-2px);
    box-shadow: var(--vf-shadow-md);
}

.vf-btn-gold {
    background: var(--vf-gold);
    color: var(--vf-forest);
    border-color: var(--vf-gold);
    font-weight: 700;
}

.vf-btn-gold:hover {
    background: var(--vf-amber);
    border-color: var(--vf-amber);
    color: var(--vf-forest);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(252, 194, 54, 0.3);
}

.vf-btn-outline {
    background: transparent;
    color: var(--vf-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.vf-btn-outline:hover {
    background: var(--vf-white);
    color: var(--vf-forest);
    border-color: var(--vf-white);
    transform: translateY(-2px);
}

.vf-btn-outline-light {
    background: transparent;
    color: var(--vf-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.vf-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vf-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.vf-btn-order {
    background: var(--vf-gold);
    color: var(--vf-forest);
    border-color: var(--vf-gold);
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: var(--vf-radius-full);
    font-weight: 700;
}

.vf-btn-order:hover {
    background: var(--vf-amber);
    border-color: var(--vf-amber);
    transform: scale(1.05);
}

.vf-btn-order-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vf-font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--vf-radius);
    background: var(--vf-primary);
    color: var(--vf-white);
    border: none;
    cursor: pointer;
    transition: all var(--vf-ease);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.vf-btn-order-sm:hover {
    background: var(--vf-dark);
    color: var(--vf-white);
    transform: translateY(-1px);
    box-shadow: var(--vf-shadow);
}

/* ============================================================
   5. HEADER
   ============================================================ */
.vf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--vf-z-header);
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.vf-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(13, 40, 24, 0.08);
}

.vf-header.scrolled .vf-nav-desktop a {
    color: var(--vf-gray-700);
}

.vf-header.scrolled .vf-nav-desktop a:hover {
    color: var(--vf-primary);
}

/* Logo: show white by default, colored on scroll */
.vf-logo-wrap { flex-shrink: 0; }
.vf-logo-link { display: block; position: relative; min-height: 48px; }

.vf-logo-img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

/* White logo shown by default (transparent header) */
.vf-logo-white {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Colored logo hidden by default */
.vf-logo-colored {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 44px;
    width: auto;
}

/* On scroll: hide white, show colored */
.vf-header.scrolled .vf-logo-white {
    opacity: 0;
    pointer-events: none;
}

.vf-header.scrolled .vf-logo-colored {
    opacity: 1;
    position: relative;
}

.vf-header.scrolled .vf-mobile-toggle .vf-ham-line {
    background: var(--vf-forest);
}

/* Removed: .vf-btn-order scrolled style - Order Now button removed from header */

.vf-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Desktop Nav */
.vf-nav-desktop {
    display: flex;
    align-items: center;
}

.vf-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.vf-nav-list li a {
    font-family: var(--vf-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--vf-ease);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
}

.vf-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vf-gold);
    transition: width var(--vf-ease);
}

.vf-nav-list li a:hover::after,
.vf-nav-list li a.active::after { width: 100%; }
.vf-nav-list li a:hover { color: var(--vf-gold); }

.vf-header.scrolled .vf-nav-list li a:hover { color: var(--vf-primary); }
.vf-header.scrolled .vf-nav-list li a::after { background: var(--vf-primary); }

/* Header Actions */
.vf-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Toggle - Enhanced visibility */
.vf-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: var(--vf-z-mobile-nav);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--vf-ease);
}

.vf-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vf-header.scrolled .vf-mobile-toggle:hover {
    background: rgba(13, 40, 24, 0.06);
}

.vf-ham-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--vf-white);
    border-radius: 3px;
    transition: all var(--vf-ease);
    transform-origin: center;
}

.vf-mobile-toggle.active .vf-ham-line:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.vf-mobile-toggle.active .vf-ham-line:nth-child(2) { opacity: 0; }
.vf-mobile-toggle.active .vf-ham-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Overlay */
.vf-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 40, 24, 0.6);
    backdrop-filter: blur(4px);
    z-index: var(--vf-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--vf-ease);
}

.vf-mobile-overlay.active { opacity: 1; visibility: visible; }

/* Mobile Navigation Drawer */
.vf-mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--vf-forest);
    z-index: var(--vf-z-mobile-nav);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.vf-mobile-nav.active { right: 0; }

.vf-mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vf-mobile-close {
    background: none;
    border: none;
    color: var(--vf-white);
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--vf-ease);
}

.vf-mobile-close:hover { color: var(--vf-gold); }

.vf-mobile-list { padding: 24px; flex: 1; }

.vf-mobile-list li { margin-bottom: 4px; }

.vf-mobile-list li a {
    display: block;
    font-family: var(--vf-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 16px;
    border-radius: 6px;
    transition: all var(--vf-ease);
    letter-spacing: 0.02em;
}

.vf-mobile-list li a:hover {
    color: var(--vf-gold);
    background: rgba(252, 194, 54, 0.1);
}

.vf-mobile-cta {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vf-btn-call-mobile,
.vf-btn-wa-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--vf-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--vf-radius);
    text-decoration: none;
    transition: all var(--vf-ease);
}

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

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

.vf-btn-wa-mobile {
    background: #25d366;
    color: var(--vf-white);
    border: 2px solid #25d366;
}

.vf-btn-wa-mobile:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: var(--vf-white);
}

/* ============================================================
   6. HERO SECTION - BRIGHTER
   ============================================================ */
.vf-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vf-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: vfHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes vfHeroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

/* BRIGHTER overlay */
.vf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 40, 24, 0.65) 0%,
        rgba(28, 115, 71, 0.5) 50%,
        rgba(13, 40, 24, 0.6) 100%
    );
    z-index: 1;
}

.vf-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.vf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 194, 54, 0.15);
    border: 1px solid rgba(252, 194, 54, 0.35);
    color: var(--vf-gold);
    font-family: var(--vf-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: var(--vf-radius-full);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vf-hero-title {
    font-family: var(--vf-font-heading);
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--vf-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.vf-hero-accent {
    color: var(--vf-gold);
    font-family: var(--vf-font-display);
    font-style: italic;
    text-shadow: 0 0 30px rgba(252, 194, 54, 0.3);
}

.vf-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.vf-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vf-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vf-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.5);
    animation: vf-bounce 2s ease-in-out infinite;
}

.vf-hero-scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes vf-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   7. FEATURES SECTION
   ============================================================ */
.vf-features {
    padding: 80px 0;
    background: var(--vf-white);
    position: relative;
}

.vf-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vf-gray-200), transparent);
}

.vf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vf-feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--vf-radius-lg);
    background: var(--vf-light);
    border: 1px solid var(--vf-gray-100);
    transition: all var(--vf-ease);
    position: relative;
    overflow: hidden;
}

.vf-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vf-primary), var(--vf-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.vf-feature-card:hover::before {
    transform: scaleX(1);
}

.vf-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vf-shadow-md);
    border-color: var(--vf-primary);
}

.vf-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--vf-primary), var(--vf-dark));
    border-radius: var(--vf-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--vf-ease-bounce);
    overflow: hidden;
}

.vf-feature-card:hover .vf-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Custom PNG icon images */
.vf-feature-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make icons white */
    transition: transform var(--vf-ease);
}

.vf-feature-card:hover .vf-feature-icon-img {
    transform: scale(1.1);
}

/* SVG icon fallback styling */
.vf-feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--vf-white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vf-feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--vf-forest);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vf-feature-card p {
    font-size: 0.92rem;
    color: var(--vf-gray-500);
    margin-bottom: 0;
}

/* ============================================================
   8. ABOUT SECTION
   CHANGED: Warm earthy background to complement hen image
   ============================================================ */
.vf-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #eef5e9 40%, #f5f0e8 100%);
    position: relative;
}

.vf-about::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(252, 194, 54, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.vf-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vf-about-image {
    position: relative;
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    box-shadow: var(--vf-shadow-lg);
}

.vf-about-image::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 120px;
    height: 120px;
    background: var(--vf-gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.vf-about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--vf-radius-lg);
    transition: transform 0.6s ease;
}

.vf-about-image:hover img {
    transform: scale(1.03);
}

.vf-about-content .vf-section-label { text-align: left; }

.vf-about-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.vf-about-text {
    color: var(--vf-gray-600);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}

.vf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vf-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--vf-white);
    border-radius: var(--vf-radius);
    border: 1px solid var(--vf-gray-100);
    transition: all var(--vf-ease);
}

.vf-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--vf-shadow);
    border-color: var(--vf-primary);
}

.vf-stat-num {
    display: inline;
    font-family: var(--vf-font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--vf-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.vf-stat-suffix {
    font-family: var(--vf-font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--vf-primary);
}

.vf-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--vf-gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================================
   9. PRODUCTS SECTION
   ============================================================ */
.vf-products {
    padding: 80px 0;
    background: var(--vf-white);
}

/* Filter Tabs */
.vf-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vf-filter-tab {
    font-family: var(--vf-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--vf-radius-full);
    border: 2px solid var(--vf-gray-200);
    background: var(--vf-white);
    color: var(--vf-gray-600);
    cursor: pointer;
    transition: all var(--vf-ease);
    letter-spacing: 0.02em;
}

.vf-filter-tab:hover {
    border-color: var(--vf-primary);
    color: var(--vf-primary);
    transform: translateY(-1px);
}

.vf-filter-tab.active {
    background: var(--vf-primary);
    color: var(--vf-white);
    border-color: var(--vf-primary);
    box-shadow: 0 4px 12px rgba(28, 115, 71, 0.25);
}

/* Products Grid */
.vf-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Product Card */
.vf-product-card {
    background: var(--vf-white);
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    border: 1px solid var(--vf-gray-100);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vf-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vf-shadow-lg);
    border-color: var(--vf-gray-200);
}

/* FIXED: Product image container - proper sizing for ALL image types */
.vf-product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--vf-light);
}

.vf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FIXED: SVG images (Kodi Punju) - proper containment with correct sizing */
.vf-product-image--svg {
    background: linear-gradient(145deg, #f0f5f2 0%, #e4ede7 50%, #d8e8dd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-product-image--svg img {
    object-fit: contain;
    padding: 24px;
    height: 100%;
    width: 100%;
}

/* For product images that need to fill the box completely (like country-rooster) */
.vf-product-image--fill img {
    object-fit: cover;
    object-position: center top;
    padding: 0;
}

.vf-product-card:hover .vf-product-image img {
    transform: scale(1.08);
}

.vf-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--vf-primary);
    color: var(--vf-white);
    font-family: var(--vf-font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--vf-radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Product Body */
.vf-product-body { padding: 20px; }

.vf-product-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--vf-forest);
    letter-spacing: 0.01em;
}

.vf-product-local {
    font-family: var(--vf-font-display);
    font-style: italic;
    color: var(--vf-primary);
    font-size: 0.88rem;
    display: block;
    margin-bottom: 8px;
}

.vf-product-desc {
    font-size: 0.88rem;
    color: var(--vf-gray-500);
    line-height: 1.6;
    margin-bottom: 14px;
}

.vf-product-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.vf-price {
    font-family: var(--vf-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--vf-radius-full);
    letter-spacing: 0.02em;
}

.vf-price-live {
    background: rgba(28, 115, 71, 0.1);
    color: var(--vf-primary);
}

.vf-price-meat {
    background: rgba(252, 194, 54, 0.15);
    color: #b8860b;
}

.vf-price-pack {
    background: rgba(28, 115, 71, 0.1);
    color: var(--vf-primary);
}

/* Product card hidden by filter */
.vf-product-card.hidden {
    display: none;
}

/* ============================================================
   10. WHY US SECTION
   CHANGED: Warm golden-green background to complement lady feeding image
   ============================================================ */
.vf-why {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf6ee 0%, #eef5e9 40%, #f0f3e8 100%);
    position: relative;
}

.vf-why::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(28, 115, 71, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.vf-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vf-why-image {
    position: relative;
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    background: var(--vf-light);
    box-shadow: var(--vf-shadow-lg);
}

.vf-why-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--vf-radius-lg);
    transition: transform 0.6s ease;
}

.vf-why-image:hover img {
    transform: scale(1.03);
}

.vf-why-content .vf-section-label { text-align: left; }
.vf-why-content .vf-section-title { text-align: left; }

.vf-why-feature {
    padding: 20px 0;
    border-bottom: 1px solid var(--vf-gray-200);
    transition: all var(--vf-ease);
}

.vf-why-feature:last-child { border-bottom: none; }

.vf-why-feature:hover {
    padding-left: 8px;
}

.vf-why-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vf-forest);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.vf-why-feature h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--vf-gold);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(252, 194, 54, 0.3);
}

.vf-why-feature p {
    font-size: 0.92rem;
    color: var(--vf-gray-500);
    margin-bottom: 0;
    padding-left: 18px;
}

/* ============================================================
   11. HOW TO ORDER SECTION
   ============================================================ */
.vf-howto {
    padding: 80px 0;
    background: var(--vf-forest);
    color: var(--vf-white);
    position: relative;
    overflow: hidden;
}

.vf-howto::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(252, 194, 54, 0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: vfRotateSlow 60s linear infinite;
}

.vf-howto .vf-section-title { color: var(--vf-white); }
.vf-howto .vf-section-subtitle { color: rgba(255, 255, 255, 0.6); }

.vf-howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.vf-howto-step {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--vf-radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.vf-howto-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--vf-gold), transparent);
    opacity: 0;
    transition: opacity var(--vf-ease);
}

.vf-howto-step:hover::before {
    opacity: 1;
}

.vf-howto-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(252, 194, 54, 0.3);
    transform: translateY(-4px);
}

.vf-step-num {
    font-family: var(--vf-font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--vf-gold);
    margin-bottom: 16px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(252, 194, 54, 0.15);
}

.vf-howto-step h3 {
    color: var(--vf-white);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vf-howto-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Help text - bold and styled */
.vf-howto-help {
    text-align: center;
    margin-bottom: 40px;
}

.vf-howto-help-text {
    font-family: var(--vf-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--vf-gold);
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 0 20px rgba(252, 194, 54, 0.1);
}

.vf-howto-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   12. CTA BANNER
   ============================================================ */
.vf-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--vf-forest) 0%, var(--vf-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vf-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 194, 54, 0.08), transparent);
    pointer-events: none;
}

.vf-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 115, 71, 0.1), transparent);
    pointer-events: none;
}

.vf-cta-banner h2 {
    color: var(--vf-white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.01em;
}

.vf-cta-banner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 32px;
    position: relative;
}

.vf-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.vf-footer {
    padding: 60px 0 0;
    background: var(--vf-forest);
    color: rgba(255, 255, 255, 0.7);
}

.vf-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vf-footer-brand { }

.vf-footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.vf-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.vf-footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

.vf-footer-col h4 {
    color: var(--vf-white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.vf-footer-col ul li {
    margin-bottom: 8px;
}

.vf-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: all var(--vf-ease);
}

.vf-footer-col ul li a:hover {
    color: var(--vf-gold);
    padding-left: 4px;
}

.vf-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.vf-footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--vf-gold);
}

.vf-footer-contact li a,
.vf-footer-contact li span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

.vf-footer-contact li a:hover {
    color: var(--vf-gold);
}

/* Footer Bottom: WhatsApp on LEFT before copyright */
.vf-footer-bottom {
    padding: 20px 0;
}

.vf-footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vf-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--vf-ease);
    flex-shrink: 0;
}

.vf-footer-whatsapp:hover {
    background: #25d366;
    color: var(--vf-white);
    transform: scale(1.1);
}

.vf-footer-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.vf-footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* ============================================================
   14. MOBILE CALL BAR (Fixed at bottom on mobile)
   ============================================================ */
.vf-mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--vf-z-call-bar);
    background: var(--vf-forest);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    gap: 10px;
}

.vf-mobile-call-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--vf-font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 12px;
    border-radius: var(--vf-radius);
    text-decoration: none;
    transition: all var(--vf-ease);
}

.vf-mobile-call-btn {
    background: var(--vf-primary);
    color: var(--vf-white) !important;
}

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

.vf-mobile-wa-btn {
    background: #25d366;
    color: var(--vf-white) !important;
}

.vf-mobile-wa-btn:hover {
    background: #128c7e;
}

/* ============================================================
   15. PAGE & SINGLE TEMPLATES
   ============================================================ */
.vf-page,
.vf-single,
.vf-archive,
.vf-search {
    padding-top: 80px;
}

.vf-page-header {
    background: linear-gradient(135deg, var(--vf-forest), var(--vf-dark));
    padding: 60px 0;
    text-align: center;
}

.vf-page-title {
    color: var(--vf-white);
    margin-bottom: 0;
}

.vf-page-content {
    padding: 40px 24px;
    min-height: 400px;
}

.vf-post-meta {
    margin-top: 12px;
    display: flex;
    gap: 16px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.vf-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    padding: 40px 0;
}

.vf-post-card {
    border-radius: var(--vf-radius-lg);
    overflow: hidden;
    border: 1px solid var(--vf-gray-100);
    transition: all var(--vf-ease);
}

.vf-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vf-shadow-md);
}

.vf-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vf-post-body { padding: 20px; }
.vf-post-body h2 { font-size: 1.2rem; margin-bottom: 8px; }
.vf-post-body h2 a { color: var(--vf-forest); }
.vf-post-body h2 a:hover { color: var(--vf-primary); }
.vf-post-date { font-size: 0.82rem; color: var(--vf-gray-400); margin-bottom: 8px; }

/* 404 */
.vf-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}

.vf-404 h1 {
    font-size: 6rem;
    color: var(--vf-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.vf-404 h2 {
    margin-bottom: 16px;
}

/* ============================================================
   16. RESPONSIVE - CRITICAL (PRESERVED EXACTLY)
   ============================================================ */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    .vf-nav-desktop { display: none; }
    .vf-mobile-toggle { display: flex; }
    .vf-mobile-call-bar { display: flex; }

    /* Header: tighter padding on tablet */
    .vf-header { padding: 12px 0; }
    .vf-header.scrolled { padding: 8px 0; }

    /* Logo slightly smaller on tablet */
    .vf-logo-img { height: 38px; }
    .vf-logo-colored { height: 38px; }
    .vf-logo-link { min-height: 38px; }

    /* Responsive scroll padding */
    html { scroll-padding-top: 68px; }

    /* Add bottom padding to body for mobile call bar */
    body { padding-bottom: 70px; }

    .vf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-about-grid,
    .vf-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vf-about-image img,
    .vf-why-image img {
        height: 350px;
    }

    .vf-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-howto-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
    /* Header: compact for mobile */
    .vf-header { padding: 10px 0; }
    .vf-header.scrolled { padding: 6px 0; }

    /* Logo sizing for mobile */
    .vf-logo-img { height: 34px; }
    .vf-logo-colored { height: 34px; }
    .vf-logo-link { min-height: 34px; }

    /* Smaller hamburger on mobile */
    .vf-ham-line { width: 22px; height: 2.5px; }
    .vf-mobile-toggle { min-width: 40px; min-height: 40px; padding: 8px; }
    .vf-mobile-toggle.active .vf-ham-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .vf-mobile-toggle.active .vf-ham-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* Responsive scroll padding */
    html { scroll-padding-top: 56px; }

    .vf-hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .vf-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vf-features { padding: 60px 0; }

    .vf-feature-card {
        padding: 28px 24px;
    }

    .vf-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vf-about,
    .vf-why { padding: 60px 0; }

    .vf-about-image img,
    .vf-why-image img {
        height: 280px;
    }

    .vf-products { padding: 60px 0; }

    .vf-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vf-howto { padding: 60px 0; }

    .vf-howto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vf-howto-step { padding: 28px 24px; }

    .vf-cta-banner { padding: 60px 0; }

    .vf-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vf-footer-bottom-left {
        flex-direction: row;
        justify-content: center;
    }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
    .vf-header-inner { gap: 8px; }

    /* Even more compact header on small phones */
    .vf-header { padding: 8px 0; }
    .vf-header.scrolled { padding: 4px 0; }

    /* Logo smaller for small phones */
    .vf-logo-img { height: 28px; }
    .vf-logo-colored { height: 28px; }
    .vf-logo-link { min-height: 28px; }

    /* Smaller hamburger for small phones - still easy to tap */
    .vf-ham-line { width: 20px; height: 2.5px; }
    .vf-mobile-toggle { min-width: 36px; min-height: 36px; padding: 6px; gap: 5px; }
    .vf-mobile-toggle.active .vf-ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .vf-mobile-toggle.active .vf-ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Responsive scroll padding */
    html { scroll-padding-top: 48px; }

    .vf-container { padding: 0 16px; }

    .vf-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .vf-hero-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .vf-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .vf-hero-buttons .vf-btn {
        width: 100%;
    }

    .vf-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vf-stat {
        padding: 14px 8px;
    }

    .vf-stat-num { font-size: 1.3rem; }
    .vf-stat-label { font-size: 0.65rem; }

    .vf-filter-tabs { gap: 6px; }

    .vf-filter-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .vf-product-image { height: 200px; }

    .vf-mobile-call-bar a {
        font-size: 0.82rem;
        padding: 12px 8px;
    }
}

/* ============================================================
   17. ELEMENTOR COMPATIBILITY
   Ensure Elementor can override theme styles
   ============================================================ */
.elementor-page .vf-page-header {
    display: none;
}

.elementor-page .vf-page-content {
    padding: 0;
    max-width: 100%;
}

/* Ensure Elementor sections aren't constrained */
.elementor-page .vf-container {
    max-width: 100%;
    padding: 0;
}
