/* ========================================
   FRESH PICKS — ESTILOS (TEMA OSCURO COMPLETO)
   ======================================== */

:root {
    --verde-oscuro:   #0c2810;
    --verde-medio:    #1a4a1e;
    --verde-card:     #163820;
    --verde-primario: #2d7a35;
    --verde-claro:    #5cb85c;
    --naranja:        #e07a1f;
    --naranja-hover:  #c46a10;
    --rojo:           #c43329;
    --blanco:         #ffffff;
    --texto-claro:    rgba(255,255,255,0.85);
    --texto-suave:    rgba(255,255,255,0.6);
    --texto-muy-suave:rgba(255,255,255,0.35);
    --borde-dark:     rgba(255,255,255,0.1);
    --borde-dark-sm:  rgba(255,255,255,0.07);
    --sombra-sm:      0 2px 12px rgba(0,0,0,0.25);
    --sombra-md:      0 8px 32px rgba(0,0,0,0.35);
    --sombra-lg:      0 20px 60px rgba(0,0,0,0.45);
    --radio:          12px;
    --radio-lg:       20px;
    --transicion:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--texto-claro);
    background: var(--verde-oscuro);
    line-height: 1.6;
    overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
em   { font-style: normal; }
strong { font-weight: 700; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; font-weight: 800; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-naranja    { color: var(--naranja); }
.text-verde-claro{ color: var(--verde-claro); }

/* ── Botones ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; border: none; transition: var(--transicion); white-space: nowrap;
}
.btn-primary {
    background: var(--naranja); color: var(--blanco);
    box-shadow: 0 4px 20px rgba(224,122,31,0.4);
}
.btn-primary:hover { background: var(--naranja-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,122,31,0.5); }

.btn-secondary {
    background: rgba(255,255,255,0.12); color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: var(--blanco); transform: translateY(-2px); }

.btn-outline-light {
    background: transparent; color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--blanco); }

.btn-outline-dark {
    background: transparent; color: var(--texto-claro);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-wa-main {
    width: 100%; justify-content: center;
    background: #25d366; color: var(--blanco); font-size: 1rem; padding: 15px 24px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-wa-main:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── Sección header ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--blanco); margin-bottom: 12px; }
.section-desc  { color: var(--texto-suave); font-size: 1rem; }

/* ============================================================
   ANIMACIONES SCROLL
   ============================================================ */
.reveal-up {
    opacity: 0; transform: translateY(44px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; clip-path: inset(0 100% 0 0);
    transition: opacity 0.8s ease, clip-path 0.9s cubic-bezier(0.77,0,0.175,1);
}
.reveal-left.is-visible { opacity: 1; clip-path: inset(0 0% 0 0); }

.reveal-scale {
    opacity: 0; transform: scale(0.88) translateY(20px);
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.reveal-scale.is-visible { opacity: 1; transform: scale(1) translateY(0); }

/* Delays para efecto stagger */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transicion);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.whatsapp-float::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; background: #25d366;
    animation: pulse-wa 2.5s ease-out infinite;
}
@keyframes pulse-wa {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
.wa-tooltip {
    position: absolute; right: calc(100% + 12px);
    background: #0c2810; color: var(--blanco);
    font-size: 0.8rem; font-family: 'Montserrat', sans-serif; font-weight: 600;
    padding: 6px 12px; border-radius: 6px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity 0.2s;
    border: 1px solid var(--borde-dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   CARRITO SIDEBAR
   ============================================================ */
.cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(3px);
    z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-sidebar {
    position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw;
    height: 100vh; background: #0d2e12;
    border-left: 1px solid var(--borde-dark);
    z-index: 1100; display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -12px 0 50px rgba(0,0,0,0.5);
}
.cart-sidebar.open { right: 0; }

.cart-header {
    padding: 20px 20px; border-bottom: 1px solid var(--borde-dark);
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(0,0,0,0.2);
}
.cart-header-left {
    display: flex; align-items: center; gap: 10px; color: var(--blanco);
}
.cart-header-left svg { opacity: 0.7; }
.cart-header h3 { font-size: 1.05rem; color: var(--blanco); }
.cart-header-count { font-size: 0.75rem; color: var(--texto-suave); background: rgba(255,255,255,0.08); padding: 3px 10px; border-radius: 50px; }

.cart-close {
    background: rgba(255,255,255,0.08); border: 1px solid var(--borde-dark);
    color: var(--texto-claro); width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.15); }

.cart-items {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.cart-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 100%; gap: 12px; color: var(--texto-suave); text-align: center;
}
.cart-empty-icon { font-size: 3rem; opacity: 0.5; }
.cart-empty p { font-size: 0.95rem; }
.cart-empty small { font-size: 0.82rem; color: var(--texto-muy-suave); }

.cart-item {
    background: rgba(255,255,255,0.05); border: 1px solid var(--borde-dark-sm);
    border-radius: 12px; padding: 12px 14px;
    display: flex; gap: 10px; align-items: center;
    transition: background 0.2s;
}
.cart-item:hover { background: rgba(255,255,255,0.08); }
.cart-item-emoji { font-size: 1.7rem; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--blanco); line-height: 1.3; margin-bottom: 2px; }
.cart-item-unit { font-size: 0.72rem; color: var(--texto-suave); }
.cart-item-subtotal { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--naranja); margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.ci-qty-btn {
    width: 24px; height: 24px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
    color: var(--blanco); cursor: pointer; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center; line-height: 1;
    transition: background 0.15s;
}
.ci-qty-btn:hover { background: rgba(255,255,255,0.2); }
.ci-qty-display {
    width: 28px; text-align: center; color: var(--blanco);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.ci-remove {
    background: rgba(196,51,41,0.15); border: 1px solid rgba(196,51,41,0.25);
    color: #ff7070; width: 24px; height: 24px; border-radius: 50%;
    cursor: pointer; font-size: 0.72rem;
    display: flex; align-items: center; justify-content: center;
    margin-left: 4px; transition: background 0.15s;
}
.ci-remove:hover { background: rgba(196,51,41,0.3); }

.cart-footer { padding: 18px 20px; border-top: 1px solid var(--borde-dark); display: flex; flex-direction: column; gap: 12px; background: rgba(0,0,0,0.15); }
.cart-total { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--borde-dark-sm); }
.cart-total span { color: var(--texto-suave); font-size: 0.9rem; }
.cart-total strong { font-family: 'Montserrat', sans-serif; color: var(--naranja); font-size: 1.4rem; }
.cart-note { font-size: 0.75rem; color: var(--texto-muy-suave); text-align: center; }
.btn-clear-cart {
    background: none; border: 1px solid rgba(255,255,255,0.15);
    color: var(--texto-suave); padding: 10px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.8rem;
    cursor: pointer; transition: var(--transicion);
}
.btn-clear-cart:hover { border-color: rgba(196,51,41,0.4); color: #ff7070; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
    padding: 18px 0; transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(10,30,13,0.97); backdrop-filter: blur(14px);
    padding: 12px 0; box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--blanco); }
.logo-emblem { font-size: 1.8rem; line-height: 1; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-fresh { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; color: var(--blanco); letter-spacing: 2px; }
.logo-picks { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.68rem; color: var(--naranja); letter-spacing: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    color: rgba(255,255,255,0.8); font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 0.85rem; padding: 8px 12px; border-radius: 8px;
    transition: var(--transicion); display: flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--blanco); background: rgba(255,255,255,0.1); }
.nav-cta { background: var(--naranja); color: var(--blanco) !important; padding: 9px 18px; border-radius: 50px; }
.nav-cta:hover { background: var(--naranja-hover) !important; transform: translateY(-1px); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* Botón carrito */
.cart-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--blanco); padding: 8px 16px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
    cursor: pointer; transition: var(--transicion); position: relative;
}
.cart-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.cart-badge {
    background: var(--naranja); color: var(--blanco);
    border-radius: 50px; padding: 2px 7px;
    font-size: 0.72rem; font-weight: 700; min-width: 20px; text-align: center;
    transition: transform 0.2s;
}
.cart-badge.bump { transform: scale(1.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blanco); border-radius: 2px; transition: var(--transicion); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--verde-oscuro);
}
.hero-bg-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(45,122,53,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(224,122,31,0.12) 0%, transparent 60%),
        linear-gradient(160deg, #0c2810 0%, #0f3a14 40%, #0a2010 100%);
    z-index: 0;
}
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; opacity: 0.08; filter: blur(60px); }
.orb-1 { width: 400px; height: 400px; background: var(--verde-claro); top: -100px; right: 10%; animation: orb-float 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: var(--naranja); bottom: 10%; left: 5%; animation: orb-float 10s ease-in-out infinite reverse; }
.orb-3 { width: 250px; height: 250px; background: var(--verde-primario); top: 40%; right: 30%; animation: orb-float 6s ease-in-out infinite 2s; }
@keyframes orb-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; min-height: 100vh;
    padding: 120px 24px 80px; max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
    font-size: 0.84rem; font-weight: 600; font-family: 'Montserrat', sans-serif;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: #4cff4c; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { font-size: clamp(2.8rem, 5vw, 4.5rem); color: var(--blanco); margin-bottom: 24px; font-weight: 900; letter-spacing: -1px; }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.7; max-width: 480px; }
.hero-desc strong { color: var(--blanco); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-phones { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-phones a { color: rgba(255,255,255,0.65); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.hero-phones a:hover { color: var(--blanco); }
.separator { color: rgba(255,255,255,0.25); }

.produce-mosaic { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; position: relative; }
.mosaic-item {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 2.4rem;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.09); border-radius: 16px;
    transition: transform 0.3s;
    animation: mosaic-float var(--dur,3s) ease-in-out infinite var(--delay,0s);
}
.mosaic-item:hover { transform: scale(1.15) rotate(5deg); }
.mi-1{--dur:3.0s;--delay:0.0s}.mi-2{--dur:3.5s;--delay:0.2s}.mi-3{--dur:2.8s;--delay:0.4s}
.mi-4{--dur:3.2s;--delay:0.6s}.mi-5{--dur:3.8s;--delay:0.8s}.mi-6{--dur:3.1s;--delay:1.0s}
.mi-7{--dur:2.9s;--delay:0.3s}.mi-8{--dur:3.4s;--delay:0.5s}.mi-9{--dur:3.6s;--delay:0.7s}
.mi-10{--dur:3.3s;--delay:0.9s}.mi-11{--dur:2.7s;--delay:1.1s}.mi-12{--dur:3.7s;--delay:0.1s}
@keyframes mosaic-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-card-float {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.95); border-radius: 12px; padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25); animation: card-float 4s ease-in-out infinite;
}
.hero-card-float:first-of-type { bottom: 20px; left: -20px; }
.hero-card-float-2 { top: -10px; right: -20px; animation-delay: 2s; }
.hcf-icon { font-size: 1.4rem; }
.hero-card-float strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; color: #1a1a1a; }
.hero-card-float span  { font-size: 0.72rem; color: #777; }
@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-cue {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif; letter-spacing: 1px; text-transform: uppercase;
    transition: color 0.2s;
}
.scroll-cue:hover { color: rgba(255,255,255,0.8); }
.scroll-cue-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); animation: bounce-arrow 1.5s ease-in-out infinite;
}
@keyframes bounce-arrow { 0%,100% { transform: rotate(45deg) translateY(0); opacity: 1; } 50% { transform: rotate(45deg) translateY(6px); opacity: 0.4; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--verde-medio); padding: 28px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 10px 36px; text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--naranja); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ============================================================
   CATÁLOGO (OSCURO)
   ============================================================ */
.catalogo { padding: 96px 0 80px; background: #0e3015; }

/* Filtros */
.filter-wrapper { margin-bottom: 20px; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    padding: 9px 20px; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.2); background: transparent;
    color: rgba(255,255,255,0.7); font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 0.83rem; cursor: pointer; transition: var(--transicion);
}
.filter-btn:hover { border-color: rgba(255,255,255,0.5); color: var(--blanco); background: rgba(255,255,255,0.06); }
.filter-btn.active { background: var(--naranja); border-color: var(--naranja); color: var(--blanco); box-shadow: 0 4px 16px rgba(224,122,31,0.35); }

/* Buscador */
.search-wrapper { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.search-box { position: relative; display: flex; align-items: center; max-width: 420px; width: 100%; }
.search-icon { position: absolute; left: 14px; color: rgba(255,255,255,0.4); pointer-events: none; }
.search-input {
    width: 100%; padding: 12px 44px; border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.07);
    color: var(--blanco); font-size: 0.95rem; font-family: 'Inter', sans-serif; outline: none;
    transition: border-color 0.2s;
}
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
.search-clear { position: absolute; right: 14px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1rem; display: none; padding: 4px; }
.products-count { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.5); white-space: nowrap; }

/* Grilla de productos */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 48px; }

/* Tarjeta de producto */
.product-card {
    background: var(--verde-card); border-radius: var(--radio-lg);
    overflow: hidden; box-shadow: var(--sombra-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,0.08);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.45); border-color: rgba(255,255,255,0.14); }

.product-emoji-wrap {
    display: flex; align-items: center; justify-content: center;
    height: 90px; font-size: 2.8rem; transition: transform 0.3s;
}
.product-card:hover .product-emoji-wrap { transform: scale(1.1); }

/* Gradientes de categoría (más oscuros para tema dark) */
.cat-verduras .product-emoji-wrap { background: linear-gradient(135deg, #1a3d20, #0e2a14); }
.cat-frutas   .product-emoji-wrap { background: linear-gradient(135deg, #3d2a10, #2a1c08); }
.cat-lechugas .product-emoji-wrap { background: linear-gradient(135deg, #1e3d14, #132610); }
.cat-hierbas  .product-emoji-wrap { background: linear-gradient(135deg, #0e3020, #081e14); }
.cat-hongos   .product-emoji-wrap { background: linear-gradient(135deg, #2a2018, #1a1410); }

.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.product-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--blanco); line-height: 1.3; }
.product-desc { font-size: 0.77rem; color: rgba(255,255,255,0.55); line-height: 1.4; flex: 1; }

/* Footer de la tarjeta con carrito */
.product-footer {
    padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.07);
    background: rgba(0,0,0,0.2); display: flex; flex-direction: column; gap: 10px;
}
.product-price-row { display: flex; align-items: baseline; gap: 4px; }
.product-price { font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--naranja); font-size: 1rem; }
.product-unit  { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* Controles de cantidad en tarjeta */
.card-cart-row { display: flex; align-items: center; gap: 8px; }
.qty-selector-card {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px; padding: 4px 10px;
}
.qty-btn-card {
    width: 22px; height: 22px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.1); color: var(--blanco);
    cursor: pointer; font-size: 1rem; font-weight: 700; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.qty-btn-card:hover { background: rgba(255,255,255,0.25); }
.qty-num {
    color: var(--blanco); font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 0.85rem; min-width: 20px; text-align: center;
}
.btn-add-to-cart {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
    background: var(--verde-primario); color: var(--blanco);
    border: none; padding: 8px 10px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem;
    cursor: pointer; transition: var(--transicion); white-space: nowrap;
}
.btn-add-to-cart:hover { background: var(--verde-claro); transform: scale(1.03); }
.btn-add-to-cart.added { background: var(--naranja); }

/* Sin resultados */
.no-results { text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center; gap: 16px; }
.no-results span { font-size: 3rem; }

/* CTA inferior catálogo */
/* Botón Ver Más */
.ver-mas-wrapper {
    display: flex; justify-content: center; padding: 16px 0 32px;
}
.btn-ver-mas {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    color: var(--blanco); padding: 14px 36px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem;
    cursor: pointer; transition: var(--transicion); letter-spacing: 0.3px;
}
.btn-ver-mas:hover {
    background: var(--verde-primario); border-color: var(--verde-primario);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,53,0.35);
}
.btn-ver-mas svg { transition: transform 0.3s ease; }
.btn-ver-mas:hover svg { transform: translateY(2px); }
.ver-mas-count {
    background: rgba(255,255,255,0.12); border-radius: 50px;
    padding: 2px 10px; font-size: 0.78rem; color: rgba(255,255,255,0.7);
}

.catalogo-bottom {
    text-align: center; padding: 36px; background: rgba(255,255,255,0.04);
    border-radius: var(--radio-lg); border: 1.5px dashed rgba(255,255,255,0.12);
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.catalogo-bottom p { color: rgba(255,255,255,0.6); font-size: 1rem; }

/* ============================================================
   SOBRE NOSOTROS (OSCURO)
   ============================================================ */
.nosotros { padding: 96px 0; background: var(--verde-oscuro); }
.nosotros-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* VIDEO */
.nosotros-video {
    position: relative; border-radius: 22px; overflow: hidden;
    aspect-ratio: 4/3; background: var(--verde-card);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.fresh-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Placeholder (cuando no hay video aún) */
.video-placeholder {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 20px;
    background: linear-gradient(135deg, #163820, #0c2810);
    padding: 28px; transition: opacity 0.6s ease;
}
.vp-emoji-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; width: 100%; max-width: 220px; }
.vp-emoji-grid span {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
}
.vp-badge {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 14px 18px; width: 100%; max-width: 260px;
}
.vp-badge span { font-size: 1.6rem; }
.vp-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--blanco); }
.vp-badge div > span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* Badge flotante sobre video */
.video-overlay-badge {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    background: var(--naranja); color: var(--blanco);
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem;
    padding: 10px 20px; border-radius: 50px; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(224,122,31,0.45);
}
.video-overlay-badge strong { font-size: 1rem; }

/* Texto nosotros */
.nosotros-text { display: flex; flex-direction: column; gap: 18px; }
.nosotros-text p { color: rgba(255,255,255,0.72); line-height: 1.8; }
.nosotros-text strong { color: var(--blanco); }

.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 4px 0; }
.valor-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: rgba(255,255,255,0.05); border-radius: var(--radio); border: 1px solid rgba(255,255,255,0.08); }
.valor-icon { font-size: 1.3rem; flex-shrink: 0; }
.valor-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.84rem; color: var(--blanco); margin-bottom: 3px; }
.valor-text span   { font-size: 0.77rem; color: rgba(255,255,255,0.55); }

/* ============================================================
   ZONAS DE ENTREGA — DOS MAPAS
   ============================================================ */
.zonas { padding: 96px 0; background: var(--verde-medio); }
.zonas .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }

/* Grid de dos mapas lado a lado */
.zonas-maps-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    align-items: start; margin-bottom: 24px;
}

/* Tarjeta de cada mapa */
.zona-map-card {
    background: rgba(255,255,255,0.04); border-radius: 22px;
    overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: flex; flex-direction: column;
}

/* Encabezado de cada mapa */
.zona-map-header {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.zona-map-title {
    display: flex; align-items: center; gap: 10px; min-width: 0;
}
.zona-map-title h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 0.92rem; color: var(--blanco); line-height: 1.2;
}
.zona-map-title p {
    font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px;
}

/* Punto pulsante */
.map-live-dot {
    width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
    background: #4cff4c; animation: blink 1.5s ease-in-out infinite;
}
.dot-naranja { background: var(--naranja); }

/* Tags de zona */
.zona-tag { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; padding: 5px 12px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }
.zona-tag-green   { background: rgba(92,184,92,0.18); color: #7dde7d; border: 1px solid rgba(92,184,92,0.25); }
.zona-tag-naranja { background: rgba(224,122,31,0.18); color: #f0a060; border: 1px solid rgba(224,122,31,0.25); }

/* Iframe del mapa */
.map-frame iframe { width: 100%; height: 340px; border: none; display: block; }

/* Pie de cada mapa: días + botón */
.zona-map-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 20px; background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.zona-days { display: flex; gap: 5px; }
.day {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.68rem;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.08);
}
.day.on {
    background: var(--verde-primario); color: var(--blanco);
    border-color: var(--verde-primario); box-shadow: 0 2px 10px rgba(45,122,53,0.4);
}

/* Barra consulta inferior */
.zona-consulta {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radio-lg); padding: 20px 28px;
}
.zona-consulta span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ============================================================
   CONTACTO (OSCURO)
   ============================================================ */
.contacto { padding: 96px 0; background: #0e2c12; }

.contacto-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

.wa-card {
    background: var(--verde-oscuro); border-radius: var(--radio-lg); padding: 36px;
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
}
.wa-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(92,184,92,0.1), transparent 60%); }
.wa-card-icon { position: relative; width: 76px; height: 76px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.wa-card h3 { position: relative; color: var(--blanco); font-size: 1.3rem; }
.wa-card p  { position: relative; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.wa-card .btn-wa-main { position: relative; }
.wa-numbers { position: relative; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.wa-numbers a { color: rgba(255,255,255,0.65); font-size: 0.95rem; font-weight: 600; font-family: 'Montserrat', sans-serif; transition: color 0.2s; }
.wa-numbers a:hover { color: var(--blanco); }

.contacto-info { display: flex; flex-direction: column; gap: 24px; }
.info-items { display: flex; flex-direction: column; gap: 12px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; background: rgba(255,255,255,0.04); border-radius: var(--radio); border: 1px solid rgba(255,255,255,0.07); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: var(--blanco); margin-bottom: 3px; }
.info-item span   { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.pasos-pedido { background: rgba(255,255,255,0.04); border-radius: var(--radio-lg); padding: 24px; border: 1px solid rgba(255,255,255,0.07); }
.pasos-pedido h4 { font-size: 0.95rem; color: var(--blanco); margin-bottom: 18px; }
.paso { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.paso:last-child { margin-bottom: 0; }
.paso-num { width: 26px; height: 26px; background: var(--naranja); color: var(--blanco); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.paso p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; padding-top: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--verde-oscuro); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding: 64px 24px 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.footer-phones { display: flex; flex-direction: column; gap: 8px; }
.footer-phones a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-phones a:hover { color: var(--blanco); }
.footer-nav h4,.footer-zonas h4,.footer-cta h4 { font-size: 0.82rem; color: var(--blanco); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; font-weight: 700; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-nav a:hover { color: var(--blanco); }
.footer-zonas { display: flex; flex-direction: column; gap: 0; }
.fz-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.84rem; }
.fz-item:last-child { border-bottom: none; }
.fz-item > span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.fz-item strong { display: block; color: rgba(255,255,255,0.8); font-family: 'Montserrat', sans-serif; font-size: 0.83rem; }
.fz-item div > span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-cta p { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom strong { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3,1fr); }
    .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nosotros-inner{ gap: 40px; }
    .hero-inner    { gap: 40px; }
    .zonas-maps-grid { grid-template-columns: 1fr; }
    .map-frame iframe { height: 320px; }
    .zona-consulta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — MÓVIL
   ============================================================ */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(10,30,13,0.98); backdrop-filter: blur(14px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 24px; z-index: 800;
    }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.1rem; padding: 12px 24px; }
    .nav-actions .nav-cta { display: none; }

    .hero-inner { grid-template-columns: 1fr; padding: 100px 24px 110px; text-align: center; }
    .hero-desc { max-width: 100%; margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-phones { justify-content: center; }
    .produce-mosaic { max-width: 280px; margin: 0 auto; gap: 8px; }
    .mosaic-item { font-size: 1.8rem; }
    .hero-card-float { display: none; }
    .hero-visual { order: -1; }

    .stats-inner { flex-direction: column; gap: 4px; }
    .stat-divider { width: 80%; height: 1px; }

    .products-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .filter-bar { gap: 6px; }
    .filter-btn { padding: 7px 12px; font-size: 0.78rem; }

    .nosotros-inner { grid-template-columns: 1fr; }
    .nosotros-video { order: -1; aspect-ratio: 16/9; }
    .valores-grid { grid-template-columns: 1fr; }

    .zonas-maps-grid { grid-template-columns: 1fr; }
    .zona-map-footer { flex-wrap: wrap; }
    .zona-consulta { flex-direction: column; }

    .contacto-grid { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .cart-sidebar { width: 100%; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-emoji-wrap { height: 72px; font-size: 2.2rem; }
    .hero-title { font-size: 2.2rem; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .cart-btn { padding: 7px 10px; font-size: 0.75rem; }

    /* Stack qty-selector + add button vertically so nothing gets clipped */
    .card-cart-row { flex-direction: column; align-items: stretch; gap: 6px; }
    .qty-selector-card { justify-content: center; }
    .btn-add-to-cart { justify-content: center; padding: 8px 6px; }
    .product-footer { padding: 10px; }
}
