/* =============================================================
   BROTE — Floristería de autor, CDMX
   1. Tokens
   2. Reset & base
   3. Utilities
   4. Typography
   5. Buttons & form controls
   6. Nav
   7. WhatsApp float
   8. Hero
   9. Sections (home)
   10. Cards (product / category / review / plan / care)
   11. Catalog & filters
   12. Product page (gallery, config, delivery picker, palette)
   13. Nosotros (storytelling)
   14. Cuidados
   15. Contacto (FAQ, zonas, mapa)
   16. Temporada (countdown)
   17. Corporativo (form)
   18. Footer
   19. Marquee
   20. Effects (reveal, tilt, mesh)
   21. Responsive
   22. Reduced motion
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Colores — sobreescritos por inc/head.php desde data/design.json */
  --bg: #F4EEE2;
  --bg-2: #E8DCC6;
  --paper: #FFFDF8;
  --ink: #211D17;
  --ink-soft: #3A342B;
  --ink-mute: #7A7364;
  --moss: #49573B;
  --moss-dark: #333F29;
  --terracotta: #B85C3A;
  --accent: #E2572B;
  --line: rgba(33,24,18,0.12);

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--font-display); font-weight: 600; }
ul, ol { padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--paper);
  border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--paper); }
.section-moss { background: var(--moss); color: var(--bg); }
.section-moss .section-title, .section-moss h1, .section-moss h2, .section-moss h3 { color: var(--bg); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: .9rem;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--terracotta);
}

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

.center { text-align: center; }
.max-prose { max-width: 62ch; }
.max-prose.center { margin-inline: auto; }

hr.hairline { border: 0; border-top: 1px solid var(--line); margin-block: 2.5rem; }

/* =============================================================
   4. Typography
   ============================================================= */
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-title em, h1 em, h2 em { font-style: italic; color: var(--terracotta); }
.section-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 58ch;
}
.eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* =============================================================
   5. Buttons & form controls
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .96rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(33,24,18,.08), 0 1px 3px rgba(33,24,18,.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s, color .3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(33,24,18,.16), 0 8px 18px rgba(226,87,43,.18); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-block { width: 100%; }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; }

.btn-nav-cta { background: var(--accent); color: #fff; padding: .68rem 1.3rem; font-size: .88rem; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.pill-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  padding: .55rem 1rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .88rem; font-weight: 600; background: var(--paper);
  transition: all .25s var(--ease-out);
}
.pill:hover { border-color: var(--terracotta); }
.pill.is-selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pill:disabled, .pill.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(244,238,226,.88);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--container); margin-inline: auto; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em;
}
.nav-brand-dot { color: var(--accent); }
.nav-links { display: none; align-items: center; gap: 1.8rem; }
.nav-link {
  position: relative; font-size: .92rem; font-weight: 600; padding: .3rem 0; color: var(--ink-soft);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--ink); }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem; z-index: 210;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 195; background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile-link { font-family: var(--font-display); font-size: 1.7rem; }
.nav-mobile-link.is-active { color: var(--terracotta); }
.nav-mobile-cta { margin-top: 1rem; }

/* =============================================================
   7. WhatsApp float
   ============================================================= */
.wa-float { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: .8rem; }
.wa-float-btn {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(226,87,43,.4);
  transition: transform .35s var(--ease-soft);
}
.wa-float-btn:hover { transform: scale(1.06); }
.wa-float-pulse {
  position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.85); opacity: .7; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
.wa-float-panel {
  display: none; flex-direction: column; gap: .4rem; background: var(--paper);
  border-radius: 16px; padding: .9rem; box-shadow: 0 24px 60px rgba(33,24,18,.22);
  width: 250px; border: 1px solid var(--line);
  transform: translateY(8px); opacity: 0; transition: transform .3s var(--ease-out), opacity .3s;
}
.wa-float.is-open .wa-float-panel { display: flex; transform: translateY(0); opacity: 1; }
.wa-float-panel-title { font-size: .82rem; font-weight: 700; color: var(--ink-mute); padding: .2rem .3rem .5rem; }
.wa-float-option {
  display: flex; align-items: center; gap: .6rem; padding: .7rem .6rem; border-radius: 10px;
  font-weight: 600; font-size: .9rem; transition: background .2s;
}
.wa-float-option:hover { background: var(--bg); }
.wa-float-option-emoji { font-size: 1.1rem; }

/* =============================================================
   8. Hero
   ============================================================= */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: clip; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(33,24,18,.15) 0%, rgba(33,24,18,.35) 55%, rgba(33,24,18,.78) 100%);
}
.hero-content { position: relative; padding: clamp(2rem, 6vw, 5rem) 1.25rem clamp(3rem, 8vw, 6rem); max-width: var(--container); margin-inline: auto; width: 100%; color: var(--bg); }
.hero-eyebrow { color: var(--bg); opacity: .9; }
.hero-eyebrow::before { background: var(--accent); height: 2px; }
.hero-title {
  color: var(--bg); font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: .98;
  max-width: 16ch; text-wrap: balance;
}
.hero-title em { color: var(--terracotta); font-style: italic; }
.hero-sub { color: rgba(244,238,226,.86); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 46ch; margin-top: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-actions .btn-ghost { border-color: rgba(244,238,226,.4); color: var(--bg); }
.hero-actions .btn-ghost:hover { border-color: var(--bg); color: var(--bg); }

/* =============================================================
   9. Sections (home)
   ============================================================= */
.value-prop { text-align: center; }
.value-prop-body {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.4; max-width: 46ch; margin-inline: auto; color: var(--ink-soft);
}

.categories-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.category-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: clip;
  display: flex; align-items: flex-end; padding: 1.3rem;
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .6s; }
.category-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(33,24,18,.82) 100%); z-index: 1;
}
.category-card:hover img { transform: scale(1.1); filter: saturate(1.15); }
.category-card-label { position: relative; z-index: 2; color: #fff; font-family: var(--font-display); font-size: 1.35rem; }
.category-card-count { position: relative; z-index: 2; color: rgba(255,255,255,.75); font-size: .82rem; display: block; margin-top: .2rem; }

.cta-final { text-align: center; }
.cta-final-body { max-width: 50ch; margin: 1rem auto 2rem; color: rgba(244,238,226,.85); }

/* =============================================================
   10. Cards
   ============================================================= */
.product-card {
  display: flex; flex-direction: column; border-radius: var(--radius); overflow: clip;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(33,24,18,.25), 0 0 0 1px var(--line); }
.product-card-img-wrap { position: relative; aspect-ratio: 4/5; overflow: clip; }
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft); }
.product-card:hover .product-card-img-wrap img { transform: scale(1.1); }
.product-card-tags { position: absolute; top: .7rem; left: .7rem; display: flex; gap: .35rem; z-index: 2; }
.tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .55rem; border-radius: 999px; background: rgba(255,253,248,.92); color: var(--ink-soft);
}
.product-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-card-name { font-size: 1.15rem; }
.product-card-desc { font-size: .87rem; color: var(--ink-mute); flex: 1; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .6rem; }
.product-card-price { font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; }

.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem;
}
.review-stars { color: var(--terracotta); letter-spacing: .1em; }
.review-text { font-style: italic; color: var(--ink-soft); }
.review-name { font-weight: 700; font-size: .88rem; }

.plan-card {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: .8rem;
  transition: transform .4s var(--ease-soft), border-color .3s;
}
.plan-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.plan-card.is-popular { border-color: var(--accent); box-shadow: 0 20px 50px -20px rgba(226,87,43,.35); }
.plan-name { font-size: 1.4rem; }
.plan-freq { color: var(--ink-mute); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.plan-price { font-family: var(--font-display); font-size: 2.1rem; margin-top: .4rem; }
.plan-price span { font-size: .95rem; font-family: var(--font-body); color: var(--ink-mute); }
.plan-benefit { color: var(--moss); font-weight: 700; font-size: .85rem; }
.plan-desc { color: var(--ink-soft); font-size: .92rem; flex: 1; }

.care-card { display: grid; grid-template-columns: 100px 1fr; gap: 1.2rem; align-items: start; }
.care-card img { width: 100px; height: 100px; object-fit: cover; border-radius: var(--radius-sm); }
.care-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.care-card ul { display: flex; flex-direction: column; gap: .45rem; }
.care-card li { position: relative; padding-left: 1.2rem; font-size: .92rem; color: var(--ink-soft); }
.care-card li::before { content: "—"; position: absolute; left: 0; color: var(--terracotta); }

/* =============================================================
   11. Catalog & filters
   ============================================================= */
.filters-bar { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2.2rem; }
.filters-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.filters-row-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); margin-right: .4rem; }
.products-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }
.product-card.is-hidden { display: none; }
.catalog-empty { display: none; text-align: center; padding: 3rem 1rem; color: var(--ink-mute); }
.catalog-empty.is-visible { display: block; }

/* =============================================================
   12. Product page
   ============================================================= */
.product-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.product-gallery-main { border-radius: var(--radius); overflow: clip; aspect-ratio: 4/5; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: .6rem; }
.product-gallery-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); opacity: .85; transition: opacity .3s; }
.product-gallery-thumbs img:hover { opacity: 1; }

.product-config-name { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.product-config-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--terracotta); margin: .4rem 0 1rem; }
.product-config-desc { color: var(--ink-soft); margin-bottom: 1.6rem; max-width: 52ch; }

.config-block { margin-bottom: 1.6rem; }
.config-block-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-mute); margin-bottom: .7rem; }

.addon-row { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .93rem; }
.addon-row:last-child { border-bottom: 0; }
.addon-row input { width: 18px; height: 18px; accent-color: var(--accent); }
.addon-row-label { flex: 1; }
.addon-row-price { color: var(--ink-mute); font-weight: 600; }

.palette-picker { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.palette-swatch {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent;
  box-shadow: 0 0 0 1px var(--line); transition: transform .3s var(--ease-out), box-shadow .3s;
}
.palette-swatch:hover { transform: scale(1.12); }
.palette-swatch.is-selected { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink); transform: scale(1.12); }
.palette-selected-label { font-size: .88rem; color: var(--ink-mute); margin-left: .3rem; }
.product-gallery-main { transition: box-shadow .5s var(--ease-soft); }
.product-gallery-main.has-palette-glow { box-shadow: 0 0 0 6px var(--swatch-glow, transparent); }

.delivery-picker { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.2rem; background: var(--paper); }
.delivery-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.delivery-cal-head button { padding: .4rem .7rem; border-radius: 8px; }
.delivery-cal-head button:hover { background: var(--bg); }
.delivery-cal-month { font-weight: 700; font-family: var(--font-display); }
.delivery-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; text-align: center; }
.delivery-cal-dow { font-size: .68rem; font-weight: 700; color: var(--ink-mute); padding-bottom: .3rem; }
.delivery-day {
  aspect-ratio: 1; border-radius: 8px; font-size: .85rem; display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.delivery-day:not(.is-disabled):not(.is-empty):hover { background: var(--bg-2); }
.delivery-day.is-selected { background: var(--accent); color: #fff; font-weight: 700; }
.delivery-day.is-disabled { color: var(--ink-mute); opacity: .3; cursor: not-allowed; text-decoration: line-through; }
.delivery-day.is-empty { visibility: hidden; }
.delivery-day.is-today:not(.is-selected) { box-shadow: inset 0 0 0 1.5px var(--terracotta); }
.delivery-slots { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.delivery-slot-note { font-size: .82rem; color: var(--ink-mute); margin-top: .8rem; }
.delivery-summary { margin-top: 1rem; padding: .8rem 1rem; background: var(--bg); border-radius: var(--radius-sm); font-size: .88rem; display: none; }
.delivery-summary.is-visible { display: block; }

.product-sticky-cta {
  position: sticky; bottom: 1rem; margin-top: 2rem; display: flex; gap: .8rem; flex-wrap: wrap;
}

.certificado-badge {
  display: flex; gap: 1rem; align-items: flex-start; background: var(--bg-2); border-radius: var(--radius);
  padding: 1.3rem; margin-top: 2rem;
}
.certificado-badge-icon { font-size: 1.8rem; }
.certificado-badge h4 { font-size: 1rem; margin-bottom: .3rem; }
.certificado-badge p { font-size: .87rem; color: var(--ink-soft); }

.product-reviews { margin-top: 3rem; }

/* =============================================================
   13. Nosotros
   ============================================================= */
.story-block { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; margin-block: 3rem; }
.story-block img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }
.story-block h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.story-block p { color: var(--ink-soft); }

.process-steps { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 1.6rem; }
.process-step { display: flex; gap: 1rem; }
.process-step-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--terracotta); font-style: italic; min-width: 2.4rem; }

/* =============================================================
   14. Cuidados
   ============================================================= */
.care-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }

/* =============================================================
   15. Contacto
   ============================================================= */
.faq-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.6rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); overflow: clip; }
.faq-item summary {
  padding: 1rem 1.2rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--accent); transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); font-size: .94rem; }

.zones-wrap { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-top: 2rem; align-items: start; }
.zones-map-svg { width: 100%; height: auto; }
.zones-list { display: flex; flex-direction: column; gap: .9rem; }
.zone-row { display: flex; align-items: flex-start; gap: .8rem; padding: .9rem; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.zone-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .3rem .55rem; border-radius: 999px; white-space: nowrap; }
.zone-badge.same-day { background: var(--moss); color: #fff; }
.zone-badge.next-day { background: var(--bg-2); color: var(--ink-soft); }
.zone-row-name { font-weight: 700; }
.zone-row-colonias { font-size: .85rem; color: var(--ink-mute); }

/* =============================================================
   16. Temporada
   ============================================================= */
.temporada-hero { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); position: relative; overflow: clip; }
.temporada-countdown { display: flex; justify-content: center; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
.countdown-unit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.3rem; min-width: 84px; }
.countdown-unit strong { display: block; font-family: var(--font-display); font-size: 2rem; }
.countdown-unit span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); }

/* =============================================================
   17. Corporativo
   ============================================================= */
.corp-layout { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.corp-benefits { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.4rem; }
.corp-benefit { display: flex; gap: .7rem; align-items: flex-start; }
.corp-benefit-check { color: var(--moss); font-weight: 700; }
.corp-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.is-visible { display: block; }
.corp-form.is-sent form { display: none; }

/* =============================================================
   18. Footer
   ============================================================= */
.site-footer { background: var(--ink); color: var(--bg); padding-top: 3.5rem; }
.footer-inner { max-width: var(--container); margin-inline: auto; padding: 0 1.25rem 2.5rem; display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.6rem; }
.footer-tagline { color: rgba(244,238,226,.7); margin-top: .3rem; font-size: .92rem; }
.footer-script { font-family: var(--font-script); color: var(--terracotta); font-size: 1.2rem; margin-top: .6rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; font-size: .9rem; }
.footer-col a, .footer-col span { color: rgba(244,238,226,.78); }
.footer-col a:hover { color: var(--terracotta); }
.footer-col-title { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(244,238,226,.5); margin-bottom: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,226,.14); padding: 1.2rem 1.25rem; max-width: var(--container); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .78rem; color: rgba(244,238,226,.55);
}
.footer-credits a { color: rgba(244,238,226,.7); text-decoration: underline; }

/* =============================================================
   19. Marquee
   ============================================================= */
.marquee { overflow: clip; position: relative; padding-block: 1.4rem; border-block: 1px solid var(--line); }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track { display: inline-flex; gap: 2.4rem; white-space: nowrap; will-change: transform; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink-mute); }
.marquee-track span.dot { color: var(--accent); font-style: normal; }

/* =============================================================
   20. Effects
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

.has-tilt { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transform-style: preserve-3d; }

/* =============================================================
   21. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .story-block { grid-template-columns: 1fr 1fr; }
  .story-block.is-reverse .story-block-media { order: 2; }
  .zones-wrap { grid-template-columns: .8fr 1.2fr; }
  .corp-layout { grid-template-columns: 1fr 1fr; }
  .care-card { grid-template-columns: 140px 1fr; }
  .care-card img { width: 140px; height: 140px; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   22. Reduced motion — solo lo intrusivo, nunca micro-interacciones
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wa-float-pulse { animation: none; }
  .category-card img, .product-card-img-wrap img { transition-duration: .01s; }
}
