/* ==========================================================================
   COSECHAS MOCOA - SISTEMA DE DISEÑO Y HOJA DE ESTILOS CORPORATIVA
   Incluye Estilos para Geolocalización Google Maps y Panel Interno de Despacho
   ========================================================================== */

:root {
  /* --- PALETA CORPORATIVA COSECHAS --- */
  --cosechas-purple: #6D236A;
  --cosechas-purple-dark: #4F134D;
  --cosechas-purple-light: #8A2B86;
  --cosechas-magenta: #BB4699;
  --cosechas-magenta-deep: #BA4696;
  --cosechas-orange: #F68B1E;
  --cosechas-orange-amber: #FAA918;
  --cosechas-orange-light: #FFF0E0;
  --cosechas-green: #23B24A;
  --cosechas-green-lime: #9FCB3B;
  --cosechas-green-dark: #053D11;
  --cosechas-green-light: #EBF7EC;
  --cosechas-red: #ED1651;
  --cosechas-red-light: #FDE8EE;
  --cosechas-yellow: #FEF899;
  --cosechas-yellow-dark: #D4B000;
  --cosechas-blue: #2EA3F2;
  --cosechas-teal: #29C4A9;

  /* --- FONDOS Y SUPERFICIES --- */
  --bg-body: #FDFBF8;
  --bg-card: #FFFFFF;
  --bg-cream: #FFF6EC;
  --bg-cream-soft: #FCF7F1;
  --bg-dark: #1F1523;
  --bg-dark-surface: #2A1C30;

  /* --- TEXTOS --- */
  --text-main: #2C282E;
  --text-body: #555057;
  --text-muted: #88828B;
  --text-white: #FFFFFF;

  /* --- TIPOGRAFÍAS --- */
  --font-heading: 'Outfit', 'Poppins', -apple-system, sans-serif;
  --font-subheading: 'Poppins', -apple-system, sans-serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  /* --- SOMBRAS Y BORDES --- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(109, 35, 106, 0.06);
  --shadow-md: 0 8px 24px rgba(109, 35, 106, 0.09);
  --shadow-lg: 0 16px 40px rgba(109, 35, 106, 0.13);
  --shadow-hover: 0 20px 48px rgba(109, 35, 106, 0.18);

  /* --- TRANSICIONES --- */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   REINICIO Y ESTILOS BASE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body, 'Open Sans', -apple-system, sans-serif);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, 'Outfit', 'Poppins', -apple-system, sans-serif);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BARRA SUPERIOR DE ANUNCIOS (TOP BAR)
   ========================================================================== */

.topbar {
  background: linear-gradient(90deg, var(--cosechas-purple) 0%, var(--cosechas-magenta) 50%, var(--cosechas-orange) 100%);
  color: var(--text-white);
  padding: 7px 0;
  font-size: 0.84rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.topbar-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.topbar-schedule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
  font-size: 0.8rem;
  white-space: nowrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  opacity: 0.95;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}

.topbar-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar-link-admin {
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-link-admin:hover {
  background: #fff;
  color: var(--cosechas-purple);
}

/* ==========================================================================
   CABECERA PRINCIPAL Y NAVEGACIÓN (STICKY HEADER)
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.logo-wrap:hover .logo-img {
  transform: scale(1.03);
}

.logo-tag {
  background: var(--cosechas-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(246, 139, 30, 0.35);
  flex-shrink: 0;
  white-space: nowrap;
}

.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--cosechas-purple);
  background-color: var(--bg-cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-search-trigger {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  color: var(--cosechas-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-search-trigger:hover, .btn-search-trigger:active {
  background: var(--cosechas-purple);
  color: #fff;
}

.btn-admin-panel-trigger {
  background: #F4EBF3;
  color: var(--cosechas-purple);
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid rgba(109, 35, 106, 0.25);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-admin-panel-trigger:hover {
  background: var(--cosechas-purple);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(109, 35, 106, 0.25);
}

.btn-cart-trigger {
  background: linear-gradient(135deg, var(--cosechas-purple) 0%, var(--cosechas-magenta) 100%);
  color: #fff;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(109, 35, 106, 0.3);
  transition: var(--transition-fast);
  position: relative;
  flex-shrink: 0;
}

.btn-cart-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(109, 35, 106, 0.4);
}

.cart-count {
  background: var(--cosechas-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--bg-cream);
  color: var(--cosechas-purple);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

/* ==========================================================================
   HERO BANNER & SLIDER
   ========================================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  background: #FFFFFF !important;
  padding: 15px 0 45px 0;
}

.hero-slider-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(109, 35, 106, 0.07);
  background: #FFFFFF !important;
  border: 1px solid #EFEAE3;
}

.hero-slides {
  position: relative;
  min-height: 520px;
  width: 100%;
  background: #FFFFFF !important;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(20px);
  display: flex;
  align-items: center;
  background: #FFFFFF !important;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

/* Fondos blancos puros y limpios */
.hero-slide.slide-general {
  background: #FFFFFF !important;
}

.hero-slide.slide-pasion {
  background: #FFFFFF !important;
}

.hero-slide.slide-alegria {
  background: #FFFFFF !important;
}

.hero-slide.slide-wraps {
  background: #FFFFFF !important;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 35px;
  padding: 40px 80px;
  width: 100%;
  height: 100%;
  background: #FFFFFF !important;
}

.hero-slide-content {
  color: var(--text-main);
  z-index: 2;
  max-width: 580px;
}

.hero-tag {
  display: inline-block;
  background: var(--cosechas-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(246, 139, 30, 0.22);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--cosechas-purple);
}

.hero-title span {
  color: var(--cosechas-orange);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #554A5A;
  margin-bottom: 26px;
  font-weight: 400;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Columna de Imagen / Showcase Amplio en Primer Plano */
.hero-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 420px;
}

.hero-media-showcase {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 420px;
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 14px 36px rgba(109, 35, 106, 0.08);
  border: 1px solid #EFE7DE;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-media-showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(109, 35, 106, 0.12);
}

.hero-product-img {
  max-width: 100%;
  max-height: 370px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
}

.hero-media-showcase:hover .hero-product-img {
  transform: scale(1.03);
}

.hero-media-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #EBE1D6;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--cosechas-purple);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(109, 35, 106, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.15rem;
}

.slider-arrow:hover {
  background: var(--cosechas-red);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 24px rgba(237, 22, 81, 0.45);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #EFEAE3;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: #D8CED9;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 26px;
  background: var(--cosechas-orange);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cosechas-orange) 0%, var(--cosechas-orange-amber) 100%);
  color: #fff;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(246, 139, 30, 0.35);
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246, 139, 30, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--cosechas-purple);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Frutas Flotantes Decorativas con Aceleración GPU */
.floating-fruit {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.88;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  animation: floatFruit 6s ease-in-out infinite alternate;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.fruit-1 { top: 15%; left: 3%; width: 62px; animation-delay: 0s; }
.fruit-2 { bottom: 10%; right: 4%; width: 70px; animation-delay: 1.5s; }
.fruit-3 { top: 70%; left: 7%; width: 52px; animation-delay: 3s; }
.fruit-4 { top: 18%; right: 7%; width: 56px; animation-delay: 2.2s; }
.fruit-5 { bottom: 25%; right: 16%; width: 48px; animation-delay: 4s; }

@keyframes floatFruit {
  0% { transform: translate3d(0, 0px, 0) rotate(0deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(5deg); }
  100% { transform: translate3d(0, 6px, 0) rotate(-4deg); }
}

/* ==========================================================================
   SECCIÓN "COSECHAS PARA TI" (TARJETAS DE CATEGORÍA CORPORATIVAS)
   ========================================================================== */

.cosechas-para-ti-section {
  padding: 55px 0 45px 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.para-ti-header {
  text-align: center;
  margin-bottom: 36px;
}

.para-ti-pill {
  display: inline-block;
  background: rgba(114, 184, 66, 0.12);
  color: #58992D;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.para-ti-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #72B842;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.para-ti-subtitle {
  font-size: 0.95rem;
  color: #7A7080;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ==========================================================================
   SECCIÓN "COSECHAS PARA TI" - NUEVA DISTRIBUCIÓN BENTO GRID CON IMÁGENES
   ========================================================================== */
.bento-lines-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr;
  grid-template-rows: 270px 165px 165px;
  gap: 18px;
  max-width: 1120px;
  margin: 32px auto 0;
}

.bento-card {
  border-radius: 26px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease;
  user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

.bento-card:active {
  transform: translateY(-2px) scale(0.99);
}

/* Tipografía de las tarjetas Bento */
.bento-sub {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  color: #3D1D28;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #3D1D28;
  line-height: 1.05;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.bento-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 9999px;
  border: 1.5px solid #3D1D28;
  background: rgba(255, 255, 255, 0.35);
  color: #3D1D28;
  font-family: var(--font-subheading);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(4px);
  outline: none;
}

.bento-card:hover .bento-btn {
  background: #3D1D28;
  color: #FFFFFF;
  border-color: #3D1D28;
}

/* Elemento contenedor de medios e imagen individual */
.bento-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}

.bento-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  will-change: transform;
}

.bento-card:hover .bento-img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.14));
}

/* 1. Combos (Superior Izquierda, amplio horizontal) */
.bento-card.bento-combos {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: #FCE7EC;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
}

.bento-card.bento-combos .bento-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.bento-card.bento-combos .bento-title {
  font-size: 2.6rem;
}

.bento-card.bento-combos .bento-media {
  width: 46%;
  height: 220px;
}
.bento-card.bento-combos .bento-img {
  max-height: 215px;
}

/* 2. Alegría (Superior Centro, vertical) */
.bento-card.bento-alegria {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: #FF7583;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 22px 14px 14px;
}

.bento-card.bento-alegria .bento-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.bento-card.bento-alegria .bento-media {
  width: 100%;
  height: 130px;
}
.bento-card.bento-alegria .bento-img {
  max-height: 125px;
}

/* 3. Pasión (Superior Derecha, vertical) */
.bento-card.bento-pasion {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  background: #BA84BD;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 22px 14px 14px;
}

.bento-card.bento-pasion .bento-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.bento-card.bento-pasion .bento-media {
  width: 100%;
  height: 130px;
}
.bento-card.bento-pasion .bento-img {
  max-height: 125px;
}

/* 4. Wraps (Medio Izquierda, horizontal) */
.bento-card.bento-wraps {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: #F5E78D;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
}

.bento-card.bento-wraps .bento-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.bento-card.bento-wraps .bento-media {
  width: 44%;
  height: 135px;
}
.bento-card.bento-wraps .bento-img {
  max-height: 130px;
}

/* 5. Bowls (Inferior Izquierda, horizontal) */
.bento-card.bento-bowls {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  background: #C6E6BF;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
}

.bento-card.bento-bowls .bento-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.bento-card.bento-bowls .bento-media {
  width: 44%;
  height: 135px;
}
.bento-card.bento-bowls .bento-img {
  max-height: 130px;
}

/* 6. Snacks (Inferior Centro, vertical extendido) */
.bento-card.bento-snacks {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  background: #F27EC1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 24px 14px 16px;
}

.bento-card.bento-snacks .bento-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.bento-card.bento-snacks .bento-media {
  width: 100%;
  height: 190px;
}
.bento-card.bento-snacks .bento-img {
  max-height: 185px;
}

/* 7. Panadería (Inferior Derecha, vertical extendido) */
.bento-card.bento-panaderia {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
  background: #FAECDA;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 24px 14px 16px;
}

.bento-card.bento-panaderia .bento-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.bento-card.bento-panaderia .bento-media {
  width: 100%;
  height: 190px;
}
.bento-card.bento-panaderia .bento-img {
  max-height: 185px;
}

/* Responsive para Tablets y Celulares */
@media (max-width: 992px) {
  .bento-lines-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .bento-card.bento-combos {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 180px;
  }
  .bento-card.bento-wraps,
  .bento-card.bento-bowls,
  .bento-card.bento-alegria,
  .bento-card.bento-pasion,
  .bento-card.bento-snacks,
  .bento-card.bento-panaderia {
    grid-column: auto;
    grid-row: auto;
    min-height: 160px;
  }
}

@media (max-width: 640px) {
  .bento-lines-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bento-card.bento-combos,
  .bento-card.bento-wraps,
  .bento-card.bento-bowls,
  .bento-card.bento-alegria,
  .bento-card.bento-pasion,
  .bento-card.bento-snacks,
  .bento-card.bento-panaderia {
    grid-column: 1 / -1;
    min-height: 130px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
  }
  .bento-card.bento-alegria .bento-content,
  .bento-card.bento-pasion .bento-content,
  .bento-card.bento-snacks .bento-content,
  .bento-card.bento-panaderia .bento-content {
    align-items: flex-start;
  }
  .bento-card.bento-alegria .bento-media,
  .bento-card.bento-pasion .bento-media,
  .bento-card.bento-snacks .bento-media,
  .bento-card.bento-panaderia .bento-media {
    width: 38%;
    height: 100px;
    margin-top: 0;
  }
}

/* ==========================================================================
   SECCIÓN MANIFIESTO DE MARCA ("EL SABOR DE LO QUE SOMOS")
   ========================================================================== */

.manifesto-section {
  padding: 70px 0;
  background: #fff;
  position: relative;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.manifesto-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cosechas-magenta);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.manifesto-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  line-height: 1.2;
  margin-bottom: 20px;
}

.manifesto-title span { color: var(--cosechas-orange); }

.manifesto-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.manifesto-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-cream-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--cosechas-orange);
  transition: var(--transition-fast);
}

.feature-pill:hover {
  transform: translateX(4px);
  background: var(--bg-cream);
}

.feature-icon { font-size: 1.5rem; }

.feature-title {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.feature-desc { font-size: 0.8rem; color: var(--text-muted); }

.manifesto-media { position: relative; }

.manifesto-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.manifesto-card-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 5px solid var(--cosechas-green);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cosechas-green);
  line-height: 1;
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

/* ==========================================================================
   SECCIÓN DE CATÁLOGO Y FILTROS INTERACTIVOS
   ========================================================================== */

.catalog-section {
  padding: 80px 0;
  background: var(--bg-body);
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px auto;
}

.section-tag {
  display: inline-block;
  background: var(--cosechas-purple);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span { color: var(--cosechas-orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
}

/* Barra de Búsqueda y Filtros */
.catalog-controls {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-box-wrap {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  font-size: 1rem;
  background: #fff;
  border: 2px solid #EADBCE;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  color: var(--text-main);
}

.search-input:focus {
  border-color: var(--cosechas-purple);
  box-shadow: 0 0 0 4px rgba(109, 35, 106, 0.12);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cosechas-purple);
  font-size: 1.2rem;
}

.search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
}

.search-clear.visible { display: block; }

/* Pestañas de Categoría */
.category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--text-main);
  border: 1px solid #E8E0D7;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--cosechas-purple);
  color: var(--cosechas-purple);
  background: var(--bg-cream);
}

.tab-btn.active {
  background: var(--cosechas-purple);
  color: #fff;
  border-color: var(--cosechas-purple);
  box-shadow: 0 4px 14px rgba(109, 35, 106, 0.3);
}

.tab-btn[data-category="02_Linea_Alegria"].active {
  background: var(--cosechas-orange);
  border-color: var(--cosechas-orange);
  box-shadow: 0 4px 14px rgba(246, 139, 30, 0.35);
}

.tab-btn[data-category="03_Wraps"].active {
  background: var(--cosechas-green);
  border-color: var(--cosechas-green);
  box-shadow: 0 4px 14px rgba(35, 178, 74, 0.35);
}

.tab-btn[data-category="04_Complementos_y_Snacks"].active {
  background: var(--cosechas-magenta);
  border-color: var(--cosechas-magenta);
  box-shadow: 0 4px 14px rgba(187, 70, 153, 0.35);
}

.tab-btn[data-category="05_Bowls"].active {
  background: var(--cosechas-purple-dark);
  border-color: var(--cosechas-purple-dark);
  box-shadow: 0 4px 14px rgba(79, 19, 77, 0.35);
}

.tab-count {
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Banner de Información de la Categoría Activa */
.category-info-banner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-left: 6px solid var(--cosechas-purple);
  transition: var(--transition-normal);
}

.cat-info-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cosechas-purple);
  margin-bottom: 4px;
}

.cat-info-text p { font-size: 0.95rem; color: var(--text-body); }

.cat-info-tag {
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  color: var(--cosechas-purple);
  white-space: nowrap;
}

/* Cuadrícula de Productos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(225, 215, 205, 0.6);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(109, 35, 106, 0.2);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: radial-gradient(circle at center, #FFF9F2 0%, #F5EAE0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  cursor: pointer;
}

.card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover .card-img {
  transform: scale(1.08) rotate(2deg);
}

/* Presentación Dual / Dúo para Combos */
.card-combo-duo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.combo-img-left {
  max-height: 90%;
  max-width: 48%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  transform: rotate(-5deg) translateY(-2px);
  transition: transform var(--transition-smooth);
}

.combo-img-right {
  max-height: 90%;
  max-width: 50%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  transform: rotate(5deg) translateY(4px);
  transition: transform var(--transition-smooth);
}

.product-card:hover .combo-img-left {
  transform: scale(1.08) rotate(-8deg) translateX(-4px);
}

.product-card:hover .combo-img-right {
  transform: scale(1.08) rotate(8deg) translateX(4px);
}

.combo-plus-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ED1651;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(237, 22, 81, 0.4);
  border: 2px solid #fff;
  z-index: 3;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-subheading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-pasion { background: var(--cosechas-purple); }
.badge-alegria { background: var(--cosechas-orange); }
.badge-wraps { background: var(--cosechas-green); }
.badge-snacks { background: var(--cosechas-magenta); }
.badge-bowls { background: var(--cosechas-purple-dark); }
.badge-combos { background: #ED1651; }
.badge-panaderia { background: #D97706; }

.card-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(30, 18, 34, 0.92);
  color: #FAA918;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 8px;
}

.card-price-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  letter-spacing: -0.2px;
}

.card-currency-tag {
  display: none !important;
}

.card-wrap-dia-tag {
  background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
  border: 1px solid #FECDD3;
  color: #BE123C;
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-live-price-card {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1.5px solid #DBEAFE;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.modal-price-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1E293B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-price-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ED1651;
  letter-spacing: -0.5px;
}

.combo-info-highlight {
  background: #FFF0F5;
  border-left: 4px solid #ED1651;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #831843;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-unit-price {
  font-size: 0.82rem;
  color: var(--cosechas-orange);
  font-weight: 700;
  margin-bottom: 2px;
}

.cart-item-subtotal {
  font-size: 0.84rem;
  color: var(--cosechas-purple);
  margin-top: 4px;
}

.cart-totals-summary {
  background: var(--bg-cream-soft);
  border: 1px solid rgba(225, 215, 205, 0.8);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 14px;
}

.cart-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #4B5563;
  margin-bottom: 6px;
}

.cart-total-line.grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  border-top: 1px solid rgba(109, 35, 106, 0.15);
  padding-top: 8px;
  margin-top: 8px;
  margin-bottom: 0;
}

.cart-total-line.grand-total .total-amount {
  color: #ED1651;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.card-quick-view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--cosechas-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-card:hover .card-quick-view {
  opacity: 1;
  transform: scale(1);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.25;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-title:hover { color: var(--cosechas-purple); }

.card-components {
  font-size: 0.85rem;
  color: var(--cosechas-purple);
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: var(--bg-cream-soft);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  margin-top: auto;
  width: 100%;
}

.btn-card-order {
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cosechas-purple) 0%, var(--cosechas-magenta) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(109, 35, 106, 0.22);
  width: 100%;
}

.btn-card-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(109, 35, 106, 0.35);
  background: linear-gradient(135deg, var(--cosechas-orange) 0%, var(--cosechas-magenta) 100%);
}

/* Estado de Producto Agotado (OFF en Inventario) */
.product-card.is-agotado {
  opacity: 0.76;
  border-color: rgba(237, 22, 81, 0.3);
  background: #FCFAFA;
}

.product-card.is-agotado .card-img-wrap {
  filter: grayscale(35%);
  cursor: not-allowed;
}

.product-card.is-agotado:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(237, 22, 81, 0.5);
}

.card-agotado-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ED1651;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(237, 22, 81, 0.35);
  z-index: 3;
}

.btn-card-order.btn-agotado,
.btn-card-order:disabled {
  background: #ECE5DE !important;
  color: #8C7F8E !important;
  border: 1px solid #DED4CA !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.btn-card-order.btn-agotado:hover {
  background: #E4DAD0 !important;
  color: #6D236A !important;
  transform: none !important;
}


/* Estado de Sin Resultados */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.no-results-icon {
  font-size: 3.5rem;
  color: var(--cosechas-orange);
  margin-bottom: 16px;
}

.no-results h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cosechas-purple);
  margin-bottom: 8px;
}

/* ==========================================================================
   SECCIÓN LOCAL MOCOA & DOMICILIOS
   ========================================================================== */

.mocoa-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream-soft) 100%);
}

.mocoa-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(225, 215, 205, 0.7);
}

.mocoa-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.mocoa-content { padding: 45px; }

.mocoa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cosechas-green-light);
  color: var(--cosechas-green-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.mocoa-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  line-height: 1.2;
  margin-bottom: 16px;
}

.mocoa-title span { color: var(--cosechas-orange); }

.mocoa-desc {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 26px;
  line-height: 1.65;
}

.mocoa-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mocoa-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mocoa-info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-cream);
  color: var(--cosechas-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mocoa-info-text strong {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.mocoa-info-text p { font-size: 0.9rem; color: var(--text-body); }

.mocoa-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-whatsapp-direct {
  background: #25D366;
  color: #fff;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-whatsapp-direct:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.mocoa-visual {
  background: radial-gradient(circle at center, var(--cosechas-purple) 0%, var(--cosechas-purple-dark) 100%);
  padding: 45px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.mocoa-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../../06_Banners_y_Recursos_5023/banner_comunidad_cosechas.webp') center/cover no-repeat;
  opacity: 0.25;
}

.mocoa-visual-content { position: relative; z-index: 2; }

.mocoa-visual-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.mocoa-step-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--cosechas-orange);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text { font-size: 0.88rem; line-height: 1.4; }

/* ==========================================================================
   MODAL / POPUP DE PRODUCTO
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 9, 22, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.active { opacity: 1; visibility: visible; }

.modal-window {
  background: #fff;
  width: 92%;
  max-width: 1040px;
  max-height: 92vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-window { transform: scale(1) translateY(0); }

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: #F2ECE5;
  color: var(--cosechas-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--cosechas-red);
  color: #fff;
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
}

.modal-media {
  background: radial-gradient(circle at center, #FFF8F0 0%, #F5E8DC 100%);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-img {
  max-height: 290px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.modal-info {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
}

.modal-cat-tag {
  font-family: var(--font-subheading);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cosechas-magenta);
  margin-bottom: 2px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  line-height: 1.15;
  margin-bottom: 8px;
}

.modal-block { margin-bottom: 8px; }

.modal-label {
  font-family: var(--font-subheading);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cosechas-orange);
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.modal-components {
  font-size: 0.84rem;
  color: var(--text-main);
  font-weight: 600;
  background: var(--bg-cream-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--cosechas-orange);
  display: inline-block;
}

.modal-desc {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.42;
  margin-bottom: 10px;
}

/* Opciones de Personalización Desplegables "¿Y con qué lo quieres?" */
.modal-custom-options {
  background: linear-gradient(180deg, #FFFDFB 0%, #FAF5EE 100%);
  padding: 11px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1.5px solid #EADBCE;
  box-shadow: 0 3px 10px rgba(109, 35, 106, 0.03);
}

.modal-custom-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #E5D5C5;
}

.modal-custom-banner-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.modal-custom-banner-title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--cosechas-purple);
  margin: 0;
  line-height: 1;
}

.modal-custom-banner-sub {
  font-size: 0.75rem;
  color: #7A6D80;
  margin: 0;
}

.custom-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.custom-option-group {
  margin-bottom: 6px;
}

.custom-option-group:last-child {
  margin-bottom: 0;
}

.custom-label {
  font-family: var(--font-subheading);
  font-size: 0.76rem;
  font-weight: 700;
  color: #4A1249;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.custom-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FFFFFF;
  border: 1.5px solid #E2D4C6;
  border-radius: 8px;
  padding: 6px 28px 6px 10px;
  font-family: var(--font-subheading);
  font-size: 0.81rem;
  font-weight: 600;
  color: #3B2A3D;
  height: 32px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.custom-select:hover {
  border-color: var(--cosechas-orange);
  background-color: #FFFCF9;
}

.custom-select:focus {
  border-color: var(--cosechas-purple);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(109, 35, 106, 0.12);
}

.custom-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cosechas-purple);
  font-size: 0.72rem;
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.custom-select:focus ~ .custom-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-notes-input {
  width: 100%;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1.5px solid #E2D4C6;
  background: #FFFFFF;
  font-family: var(--font-subheading);
  font-size: 0.79rem;
  color: var(--text-main);
  height: 32px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-notes-input:focus {
  border-color: var(--cosechas-purple);
  box-shadow: 0 0 0 3px rgba(109, 35, 106, 0.12);
}

.custom-notes-group {
  margin-top: 2px;
}

.modal-btn-row {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

.btn-modal-cart {
  width: 100%;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.92rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cosechas-purple) 0%, #852680 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(109, 35, 106, 0.25);
  transition: all 0.2s ease;
}

.btn-modal-cart:hover {
  background: linear-gradient(135deg, var(--cosechas-purple-dark) 0%, #6E1B6A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(109, 35, 106, 0.35);
}

/* Fallback chips styles if ever reused */
.custom-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid #E5DACF;
  background: #FFFFFF;
  color: #4A3E50;
  font-family: var(--font-subheading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.custom-chip:hover {
  border-color: var(--cosechas-orange);
  color: var(--cosechas-orange);
  transform: translateY(-1px);
}

.custom-chip.active {
  background: linear-gradient(135deg, var(--cosechas-purple) 0%, #852680 100%);
  color: #FFFFFF;
  border-color: var(--cosechas-purple);
  box-shadow: 0 4px 10px rgba(109, 35, 106, 0.25);
  font-weight: 700;
}

.modal-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-modal-cart {
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--cosechas-purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-modal-cart:hover {
  background: var(--cosechas-purple-dark);
  transform: translateY(-2px);
}

.btn-modal-wa {
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-modal-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* ==========================================================================
   DRAWER / CARRITO LATERAL & GEOLOCALIZACIÓN GOOGLE MAPS
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #fff;
  z-index: 2200;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.active .cart-drawer { transform: translateX(0); }

.cart-drawer-header {
  padding: 20px 24px;
  background: var(--cosechas-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-close {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  background: #fff;
  color: var(--cosechas-purple);
}

.cart-drawer-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FDF9F4;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid #EADBCE;
}

.cart-item-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 4px;
}

.cart-item-info { flex-grow: 1; }

.cart-item-name {
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.cart-item-custom {
  font-size: 0.75rem;
  color: var(--cosechas-purple);
  margin-top: 2px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: #E5DDD0;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: var(--cosechas-purple);
  color: #fff;
}

.qty-display {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

.cart-item-remove {
  color: var(--cosechas-red);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition-fast);
}

.cart-item-remove:hover { transform: scale(1.15); }

.cart-empty-state {
  text-align: center;
  padding: 50px 10px;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--cosechas-orange);
  margin-bottom: 12px;
}

/* Formulario de Envío & Ubicación Google Maps en Carrito */
.cart-form {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px dashed #E5DDD0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-input-group label {
  display: block;
  font-family: var(--font-subheading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 4px;
}

.cart-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #DED4C7;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: #fff;
  transition: var(--transition-fast);
}

.cart-input:focus { border-color: var(--cosechas-purple); }

/* Componente de Geolocalización Google Maps */
.location-picker-box {
  background: #F4F8FA;
  border: 1px solid #D0E5EE;
  padding: 14px;
  border-radius: var(--radius-md);
}

.btn-gps-locate {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1A73E8 0%, #0D47A1 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
  transition: var(--transition-fast);
}

.btn-gps-locate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.35);
}

.btn-gps-locate.success {
  background: linear-gradient(135deg, #23B24A 0%, #168032 100%);
}

.location-status-badge {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.4;
}

.location-status-badge.loading {
  background: #FFF8E1;
  color: #8D6E63;
  border: 1px solid #FFE082;
}

.location-status-badge.success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.location-status-badge.warning {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFCC80;
}

.maps-preview-link {
  color: #1A73E8;
  font-weight: 700;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-drawer-footer {
  padding: 20px 24px;
  background: #FAF7F2;
  border-top: 1px solid #EADBCE;
}

.btn-checkout-wa {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 700;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-checkout-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
}

/* ==========================================================================
   PANEL INTERNO DE CONTROL DE PEDIDOS & DESPACHOS (ADMIN)
   ========================================================================== */

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.admin-modal-backdrop.active { opacity: 1; visibility: visible; }

.admin-modal-window {
  background: #F9F6F2;
  width: 100%;
  max-width: 1100px;
  height: 92vh;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.admin-modal-header {
  background: var(--cosechas-purple);
  color: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-modal-body {
  padding: 24px 30px;
  overflow-y: auto;
  flex-grow: 1;
}

/* Estadísticas del Panel */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--cosechas-purple);
}

.admin-stat-card.stat-pending { border-left-color: #F68B1E; }
.admin-stat-card.stat-kitchen { border-left-color: #2EA3F2; }
.admin-stat-card.stat-route { border-left-color: #7E3BD0; }
.admin-stat-card.stat-total { border-left-color: #23B24A; }

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.1;
  margin-top: 4px;
}

/* Filtros del Panel Interno */
.admin-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-filter-select {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1px solid #DED4C7;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Lista de Pedidos en Tarjetas */
.admin-orders-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.admin-order-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid #EADBCE;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.admin-order-header {
  padding: 14px 18px;
  background: #FCF8F3;
  border-bottom: 1px solid #EADBCE;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-order-id {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cosechas-purple);
}

.admin-order-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge-pending { background: #FFF3E0; color: #E65100; border: 1px solid #FFE0B2; }
.status-badge-kitchen { background: #E1F5FE; color: #0277BD; border: 1px solid #B3E5FC; }
.status-badge-route { background: #F3E5F5; color: #6A1B9A; border: 1px solid #E1BEE7; }
.status-badge-delivered { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.status-badge-cancelled { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

.admin-order-body {
  padding: 16px 18px;
  flex-grow: 1;
}

.admin-order-client {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 6px;
}

.admin-order-address {
  font-size: 0.88rem;
  color: var(--text-body);
  margin-bottom: 12px;
}

.admin-maps-box {
  margin-bottom: 14px;
}

.btn-open-maps {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #E8F0FE;
  color: #1A73E8;
  border: 1px solid #AECBFA;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-open-maps:hover {
  background: #1A73E8;
  color: #fff;
}

.admin-order-items {
  background: #FDF9F4;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.admin-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 3px 0;
  border-bottom: 1px dotted #EADBCE;
}

.admin-item-row:last-child { border-bottom: none; }

.admin-notes-row {
  font-size: 0.8rem;
  color: var(--cosechas-red);
  margin-top: 6px;
}

.admin-payment-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-order-actions {
  padding: 12px 18px;
  background: #FAF7F2;
  border-top: 1px solid #EADBCE;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-status-select {
  flex-grow: 1;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #DED4C7;
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
}

.btn-admin-action {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid #DED4C7;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-admin-action:hover {
  background: var(--cosechas-purple);
  color: #fff;
}

.btn-admin-action.wa:hover { background: #25D366; color: #fff; }
.btn-admin-action.delete:hover { background: var(--cosechas-red); color: #fff; }

.admin-empty-orders {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */

.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 70px 0 25px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-desc {
  color: #A99EAF;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-dark-surface);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--cosechas-orange);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--cosechas-orange);
  border-radius: var(--radius-full);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #A99EAF;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--cosechas-orange);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #A99EAF;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--cosechas-orange);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.82rem;
  color: #7D7283;
}

/* Botón Flotante Permanente de WhatsApp */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 1500;
  cursor: pointer;
  transition: var(--transition-fast);
  animation: pulseWa 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  background: #20BA5A;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Toast de Notificación */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--cosechas-purple-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 3500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA SUAVES (SCROLL REVEAL)
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Feedback Táctil Rápido para Dispositivos Móviles */
button:active, 
.btn-primary:active, 
.btn-secondary:active, 
.btn-search-trigger:active,
.btn-cart-trigger:active,
.custom-chip:active, 
.para-ti-card:active {
  transform: scale(0.97);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1100px) {
  .para-ti-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px;
  }
  .para-ti-card { 
    height: 410px; 
  }
}

@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .mocoa-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-window { max-width: 900px; width: 94%; }
  .modal-grid { grid-template-columns: 310px 1fr; }
  .modal-media { padding: 25px 18px; }
  .modal-img { max-height: 270px; }
  .modal-info { padding: 22px 24px; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .modal-grid { grid-template-columns: 1fr; }
  .modal-media { padding: 22px 20px 12px 20px; }
  .modal-img { max-height: 180px; }
}

@media (max-width: 860px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1200;
    display: block;
  }
  .navbar.open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-link { width: 100%; font-size: 1rem; padding: 10px 14px; }
  .mobile-toggle { display: flex; }
  
  .header-wrapper { height: 70px; padding: 0 16px; }
  .logo-img { height: 42px; }
  
  .hero-slides { min-height: auto; height: auto; }
  .hero-slide { position: absolute; height: auto; min-height: 100%; }
  .hero-slide.active { position: relative; height: auto; }
  .hero-slide-grid { 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px 36px 20px; 
    gap: 14px; 
  }
  .hero-slide-content {
    display: contents;
  }
  .hero-tag {
    order: 1;
    margin-bottom: 6px;
  }
  .hero-title {
    order: 2;
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .hero-slide-media {
    order: 3;
    min-height: auto !important;
    height: auto !important;
    width: 100%;
    margin: 4px 0 10px 0;
    display: flex;
    justify-content: center;
  }
  .hero-media-showcase {
    max-width: 280px;
    height: 250px;
    padding: 14px;
    border-radius: 22px;
    background: radial-gradient(circle at center, #FFFDF8 0%, #F6EDE4 100%);
    border: 1px solid #ECE3DA;
    box-shadow: 0 10px 28px rgba(109, 35, 106, 0.08);
    margin: 0 auto;
  }
  .hero-product-img {
    max-height: 200px;
    max-width: 90%;
  }
  .hero-desc {
    order: 4;
    margin: 0 auto 16px auto;
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .hero-btn-group {
    order: 5;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    top: 42%;
    transform: translateY(-50%);
  }
  .slider-arrow.prev { left: 12px; }
  .slider-arrow.next { right: 12px; }
  .btn-admin-panel-trigger span { display: none; }
  
  .para-ti-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px;
  }
  .para-ti-card { height: 400px; }
  .para-ti-title { font-size: 2.5rem; }

  /* Frutas Flotantes en Tablet */
  .fruit-1 { top: 8%; left: 2%; width: 46px; }
  .fruit-2 { bottom: 6%; right: 2%; width: 50px; }
  .fruit-3 { top: 60%; left: 3%; width: 40px; }
  .fruit-4 { top: 10%; right: 3%; width: 42px; }
  .fruit-5 { bottom: 18%; right: 8%; width: 36px; }
}

@media (max-width: 640px) {
  /* Barra Superior Compacta */
  .topbar {
    padding: 6px 0;
    font-size: 0.78rem;
  }
  .topbar-content {
    justify-content: space-between;
    gap: 8px;
  }
  .topbar-schedule {
    display: none;
  }
  .topbar-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  .topbar-link {
    font-size: 0.78rem;
  }
  .topbar-link-admin {
    display: none;
  }

  /* Cabecera Móvil y Distribución Impecable del Logo */
  .header-wrapper {
    height: 64px;
    padding: 0 12px;
    gap: 8px;
  }
  .logo-wrap {
    gap: 6px;
    flex-shrink: 0;
  }
  .logo-img {
    height: 38px;
    max-width: 130px;
    object-fit: contain;
  }
  .logo-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
    letter-spacing: 0.5px;
  }
  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }
  .btn-search-trigger {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .btn-cart-trigger {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: var(--radius-full);
    justify-content: center;
    align-items: center;
  }
  .cart-btn-label {
    display: none;
  }
  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 900;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  /* Hero Section Móvil Optimizado */
  .hero-section {
    padding: 8px 0 20px 0;
  }
  .hero-slider-container {
    border-radius: 22px;
  }
  .hero-slide-grid {
    padding: 20px 14px 28px 14px;
    gap: 10px;
  }
  .hero-tag {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 6px;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.16;
    margin-bottom: 8px;
  }
  .hero-slide-media {
    margin: 4px 0 10px 0;
  }
  .hero-media-showcase {
    max-width: 240px;
    height: 220px;
    padding: 10px;
    border-radius: 20px;
    background: radial-gradient(circle at center, #FFFDF8 0%, #F5EDE4 100%);
    box-shadow: 0 10px 24px rgba(109, 35, 106, 0.08);
    border: 1px solid #ECE3DA;
  }
  .hero-product-img {
    max-height: 180px;
    max-width: 90%;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
  }
  .hero-media-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #EAE0D5;
  }
  .hero-desc {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 14px;
    padding: 0 4px;
  }
  .hero-btn-group {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 8px;
  }
  .hero-btn-group .btn-primary,
  .hero-btn-group .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.88rem;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    top: 41%;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(109, 35, 106, 0.3);
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }

  /* Frutas Flotantes en Celulares */
  .floating-fruit {
    opacity: 0.8;
  }
  .fruit-1 { top: 5%; left: 1%; width: 34px; }
  .fruit-2 { bottom: 4%; right: 1%; width: 38px; }
  .fruit-3 { top: 62%; left: 2%; width: 28px; }
  .fruit-4 { top: 7%; right: 2%; width: 32px; }
  .fruit-5 { bottom: 14%; right: 4%; width: 26px; }

  /* Sección "Cosechas para ti" y Efecto Acordeón Móvil */
  .cosechas-para-ti-section {
    padding: 40px 0 30px 0;
  }
  .para-ti-title {
    font-size: 2.1rem;
  }
  .para-ti-subtitle {
    font-size: 0.88rem;
    padding: 0 10px;
  }
  .para-ti-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 330px;
    margin: 0 auto;
    width: 100%;
  }
  .para-ti-card {
    height: 380px;
    width: 100%;
    border-radius: 26px;
    padding-top: 22px;
  }
  .para-ti-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .para-ti-media.fan-collection {
    height: 220px;
  }
  .fan-item {
    max-height: 200px;
  }

  /* Ajuste de Despliegue de Abanico en Celular */
  .para-ti-card.fan-active .fan-left,
  .para-ti-card:hover .fan-left {
    transform: translateX(-40px) translateY(-6px) rotate(-16deg) scale(0.92);
  }
  .para-ti-card.fan-active .fan-right,
  .para-ti-card:hover .fan-right {
    transform: translateX(40px) translateY(-6px) rotate(16deg) scale(0.92);
  }
  .para-ti-card.fan-active .fan-center,
  .para-ti-card:hover .fan-center {
    transform: translateY(-14px) scale(1.06);
  }

  /* Catálogo de Productos Móvil */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .category-info-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 12px;
  }
  .cat-info-text h3 {
    font-size: 1.3rem;
  }
  .cat-info-text p {
    font-size: 0.88rem;
  }
  .cat-info-tag {
    font-size: 0.78rem;
    padding: 4px 12px;
  }
  .category-tabs-container {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }
  .tab-btn {
    flex-shrink: 0;
    font-size: 0.84rem;
    padding: 8px 16px;
  }

  /* Manifiesto de Marca */
  .manifesto-section {
    padding: 45px 0;
  }
  .manifesto-title {
    font-size: 1.8rem;
  }
  .manifesto-features {
    grid-template-columns: 1fr;
  }

  /* Sede Mocoa */
  .mocoa-content {
    padding: 24px 18px;
  }
  .mocoa-title {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer {
    padding: 45px 0 20px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Modal de Producto en Celular (Formato Bottom Sheet Táctil) */
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .modal-window {
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    margin: 0;
  }
  .modal-close-btn {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .modal-media {
    padding: 18px 16px 6px 16px;
  }
  .modal-img {
    max-height: 140px;
  }
  .modal-info {
    padding: 14px 16px 18px 16px;
  }
  .modal-title {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }
  .modal-block {
    margin-bottom: 8px;
  }
  .modal-desc {
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .modal-custom-options {
    padding: 12px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .modal-custom-banner {
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  .modal-custom-banner-title {
    font-size: 0.98rem;
  }
  .modal-custom-banner-sub {
    font-size: 0.74rem;
  }
  .custom-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .custom-select {
    padding: 7px 26px 7px 8px;
    font-size: 0.78rem;
    border-radius: 8px;
  }
  .custom-notes-input {
    padding: 7px 10px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  .modal-btn-row {
    display: flex;
    width: 100%;
    margin-top: 10px;
  }
  .btn-modal-cart {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.88rem;
    gap: 6px;
  }

  /* Botón Flotante Permanente de WhatsApp y Toast */
  .floating-wa-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
  .toast-msg {
    width: 90%;
    max-width: 340px;
    font-size: 0.84rem;
    padding: 10px 16px;
  }

  /* Panel de Administración */
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-modal-body { padding: 15px; }
}

@media (max-width: 360px) {
  .header-wrapper {
    height: 58px;
    padding: 0 8px;
  }
  .logo-img {
    height: 32px;
    max-width: 110px;
  }
  .logo-tag {
    font-size: 0.58rem;
    padding: 2px 4px;
  }
  .btn-search-trigger, 
  .btn-cart-trigger, 
  .mobile-toggle {
    width: 34px;
    height: 34px;
  }
  .para-ti-card {
    height: 350px;
    max-width: 290px;
  }
  .hero-title {
    font-size: 1.45rem;
  }
}
