/* ============================================
   Dely Salsa — Stylesheet
   ============================================ */

:root {
  --color-bg: #FFFDF9;
  --color-bg-warm: #FAF3E7;
  --color-ink: #1A1A1A;
  --color-ink-soft: #3a3a3a;
  --color-muted: #6b6258;
  --color-line: rgba(26, 26, 26, 0.08);

  --color-brand: #C0392B;       /* primary red */
  --color-brand-dark: #A93226;  /* hover / AA */
  --color-accent: #F07A12;      /* warm orange */
  --color-accent-dark: #C9620A;
  --color-gold: #F5C400;

  --shadow-card: 0 1px 2px rgba(26, 26, 26, .04),
                 0 8px 24px rgba(26, 26, 26, .06);
  --shadow-card-hover: 0 2px 4px rgba(26, 26, 26, .06),
                       0 18px 40px rgba(192, 57, 43, .14);
  --shadow-nav: 0 8px 28px rgba(0,0,0,.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --nav-h: 76px;

  --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease,
              backdrop-filter .25s ease;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav.is-scrolled {
  background: #1A1A1A;
  box-shadow: var(--shadow-nav);
}
.nav.is-scrolled::before { opacity: 0; }

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img {
  height: 56px;
  width: auto;
  max-height: 60px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color .2s ease, background-color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--color-accent); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--color-accent); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  color: #fff;
}
.nav__toggle span {
  position: relative;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0; width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 22px;
    background: #1A1A1A;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    padding: 14px 12px;
    border-radius: 10px;
  }
  .nav__link::after { display: none; }
  .nav__link:hover { background: rgba(240,122,18,.12); }
  .nav.has-open { background: #1A1A1A; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--nav-h) + 40px) 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img,
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(26,12,8,.82) 0%, rgba(26,12,8,.55) 45%, rgba(26,12,8,.35) 100%),
    radial-gradient(ellipse at 80% 80%, rgba(192,57,43,.35), transparent 60%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 8px 16px;
  border: 1px solid rgba(245,196,0,.5);
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.25);
}
.hero__eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--color-gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(245,196,0,.18);
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 22px 0 18px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(105deg, var(--color-accent), var(--color-gold));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.hero__sub {
  font-size: 19px;
  line-height: 1.6;
  max-width: 56ch;
  color: rgba(255,255,255,.86);
  margin: 0 0 32px;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  --btn-bg: var(--color-accent);
  --btn-bg-hover: var(--color-accent-dark);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(240, 122, 18, .35);
  transition: background-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--btn-bg-hover); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arr {
  width: 18px; height: 18px;
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arr { transform: translateX(3px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(255,255,255,.1);
  --btn-fg: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  box-shadow: none;
}
.btn--brand {
  --btn-bg: var(--color-brand);
  --btn-bg-hover: var(--color-brand-dark);
  box-shadow: 0 8px 22px rgba(192, 57, 43, .3);
}

.hero__stats {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px 14px 18px;
  border-left: 3px solid var(--color-accent);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(6px);
  border-radius: 4px 12px 12px 4px;
}
.hero__stat strong {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.hero__stat span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Hero floating showcase */
.hero__showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.hero__sticker {
  position: absolute;
  top: 8%;
  right: 4%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px; height: 130px;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(192,57,43,.45);
  transform: rotate(-8deg);
  border: 3px dashed rgba(255,255,255,.4);
}
.hero__sticker strong { font-size: 22px; display: block; }

.hero__chip {
  position: absolute;
  bottom: 6%;
  left: -6%;
  background: rgba(255,255,255,.96);
  color: var(--color-ink);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  max-width: 240px;
}
.hero__chip-dot {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-brand));
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 auto;
  font-size: 18px;
}
.hero__chip strong { display: block; font-weight: 800; font-size: 14px; }
.hero__chip span { font-size: 12px; color: var(--color-muted); }

.hero__scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-hint::after {
  content: "";
  width: 1px; height: 32px;
  background: linear-gradient(rgba(255,255,255,.7), transparent);
  animation: scrollNudge 2.2s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(.5); }
}

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__showcase { display: none; }
}

/* ============================================
   SECTION SHELL
   ============================================ */
section { scroll-margin-top: var(--nav-h); }

.section {
  padding: 110px 0;
}
.section--dark {
  background: #1A1A1A;
  color: #fff;
}
.section--warm { background: var(--color-bg-warm); }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--color-brand-dark);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(192,57,43,.08);
  margin-bottom: 18px;
}
.section--dark .section-head__eyebrow {
  color: var(--color-gold);
  background: rgba(245,196,0,.1);
}
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-head p {
  margin: 0;
  font-size: 18px;
  color: var(--color-muted);
  text-wrap: pretty;
}
.section--dark .section-head p { color: rgba(255,255,255,.72); }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products {
  background: var(--color-bg-warm);
}
.products__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: -28px 0 44px;
}
.filter {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
  background: #fff;
  color: var(--color-ink-soft);
  border: 1px solid var(--color-line);
  transition: all .2s ease;
}
.filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.filter.is-active {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 540px)  { .product-grid { grid-template-columns: 1fr; } }

.card {
  --card-accent: var(--color-accent);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  transition: transform .35s cubic-bezier(.2,.7,.2,1),
              box-shadow .35s ease,
              border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 18%, var(--card-accent), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(240,122,18,.5);
}
.card:hover::before { opacity: .14; }

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #FBF7F0, #F4ECDD);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.card__media::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 8%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.18), transparent 70%);
  filter: blur(2px);
  z-index: 0;
}
.card__img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.18));
}
.card:hover .card__img { transform: translateY(-4px) scale(1.04); }

/* Placeholder for products without an image yet */
.card__media--placeholder {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(192,57,43,.06), transparent 60%),
    repeating-linear-gradient(135deg, #FBF7F0 0 14px, #F4ECDD 14px 28px);
}
.card__media--placeholder::after { display: none; }
.card__placeholder {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 10px 16px;
  background: rgba(255,255,255,.85);
  border: 1.5px dashed rgba(0,0,0,.12);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  z-index: 2;
}

.card__name {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -.005em;
}
.card__meta {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 14px;
}
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--color-brand);
  margin-top: auto;
}
.card__cta .arr { width: 14px; height: 14px; transition: transform .2s ease; }
.card:hover .card__cta .arr { transform: translateX(4px); }

/* tag accent variants */
.card[data-cat="picante"]   { --card-accent: #E84A2A; }
.card[data-cat="clasica"]   { --card-accent: #E64C3C; }
.card[data-cat="industrial"]{ --card-accent: #F5C400; }
.card[data-cat="parrilla"]  { --card-accent: #8E2D1E; }
.card[data-cat="oriental"]  { --card-accent: #6B3A14; }
.card[data-cat="ensaladas"] { --card-accent: #6FAA1F; }

/* Reveal animation */
.fade-up { opacity: 0; transform: translateY(28px); }
.fade-left { opacity: 0; transform: translateX(-60px); }
.fade-right { opacity: 0; transform: translateX(60px); }
.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.about__text h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 14px 0 22px;
  color: #fff;
  text-wrap: balance;
}
.about__text h2 em {
  font-style: normal;
  color: var(--color-accent);
}
.about__text p {
  font-size: 17.5px;
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
  text-wrap: pretty;
}

.about__signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
}
.about__signature-mark {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.about__signature span { font-size: 14px; }
.about__signature span strong { display: block; font-size: 15px; color: #fff; }
.about__signature span em { font-style: normal; color: rgba(255,255,255,.6); }

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.about__media img,
.about__media video { width: 100%; height: 100%; object-fit: cover; }
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
}
.about__media-tag {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  color: #fff;
}
.about__media-tag span {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.about__media-tag strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

/* Highlights */
.highlights {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.highlight {
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 26px 24px 28px;
  position: relative;
  overflow: hidden;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.highlight__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.highlight__num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.highlight__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.highlight__desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .highlights { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--color-bg);
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }

/* Contact info cards */
.info { display: flex; flex-direction: column; gap: 14px; justify-content: space-between; }
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--color-line);
  transition: border-color .2s ease, transform .2s ease;
}
.info-card:hover { border-color: var(--color-accent); transform: translateX(4px); }
.info-card__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-brand));
  color: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.info-card__title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}
.info-card__body {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.45;
}
.info-card__body a:hover { color: var(--color-brand); }

.contact__map {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  background: #eee;
  min-height: 460px;
  align-self: stretch;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}
@media (max-width: 880px) {
  .contact__map,
  .contact__map iframe { min-height: 380px; }
}

/* Contact form */
.contact-form {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 0 rgba(26,26,26,0.02);
}
@media (max-width: 560px) {
  .contact-form { padding: 20px 18px; gap: 12px; }
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__head { margin-bottom: 4px; }
.contact-form__head h3 {
  font-family: var(--font-display, inherit);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--color-ink);
}
.contact-form__head p {
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text-soft, #555);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: .01em;
}
.field .req {
  color: var(--color-brand);
  margin-left: 2px;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--color-ink);
  background: #fff;
  border: 1.5px solid var(--color-line);
  border-radius: 10px;
  padding: 10px 13px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  outline: none;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(26,26,26,0.4); }
.field input:hover,
.field textarea:hover { border-color: rgba(26,26,26,0.22); }
.field input:focus,
.field textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 4px rgba(192,57,43,0.12);
}
.field.has-error input,
.field.has-error textarea {
  border-color: var(--color-brand);
  background: #FFF7F5;
}
.field__error {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-brand);
  min-height: 0;
  display: none;
}
.field.has-error .field__error { display: block; }
.contact-form__submit {
  margin-top: 4px;
  align-self: flex-start;
}
.contact-form__submit[disabled] {
  opacity: .7;
  cursor: progress;
}
.contact-form__status {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 1.2em;
}
.contact-form__status.is-ok { color: #1F7A3A; }
.contact-form__status.is-error { color: var(--color-brand); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1A1A1A;
  color: #fff;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.footer__brand p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 14.5px;
  max-width: 32ch;
  text-wrap: pretty;
}
.footer h4 {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 16px;
  font-weight: 800;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a {
  color: rgba(255,255,255,.75);
  font-size: 14.5px;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--color-accent); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
}
.footer__bottom strong { color: rgba(255,255,255,.85); font-weight: 700; }

/* ============================================
   PRODUCT MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 4, .7);
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(900px, 100%);
  max-height: 90vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
  animation: panelIn .25s cubic-bezier(.2,.7,.2,1);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@media (max-width: 720px) { .modal__panel { grid-template-columns: 1fr; } }

.modal__media {
  background: linear-gradient(180deg, #FBF7F0, #F4ECDD);
  display: grid;
  place-items: center;
  padding: 36px;
  position: relative;
}
.modal__media img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.22));
}
.modal__media--placeholder {
  background:
    radial-gradient(ellipse at 50% 110%, rgba(192,57,43,.06), transparent 60%),
    repeating-linear-gradient(135deg, #FBF7F0 0 18px, #F4ECDD 18px 36px);
  min-height: 280px;
}
.modal__media--placeholder::before {
  content: "Imagen aquí";
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 12px 22px;
  background: rgba(255,255,255,.85);
  border: 1.5px dashed rgba(0,0,0,.14);
  border-radius: 999px;
}

/* ===== Modal gallery (nav arrows + caption + dots) ===== */
.modal__media.is-gallery { padding: 28px 28px 80px; }
/* When not in gallery mode (single-image products), keep gallery chrome hidden —
   these elements set `display` via their class, which overrides the `hidden` attr. */
.modal__media:not(.is-gallery) .gallery-nav,
.modal__media:not(.is-gallery) .gallery-caption,
.modal__media:not(.is-gallery) .gallery-dots { display: none !important; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.94);
  color: var(--color-ink);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, color .18s ease, opacity .18s ease;
  z-index: 2;
}
.gallery-nav svg { width: 20px; height: 20px; }
.gallery-nav:hover {
  background: var(--color-brand);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.gallery-nav:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}
.gallery-nav--prev { left: 14px; }
.gallery-nav--next { right: 14px; }

.gallery-caption {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink);
  white-space: nowrap;
  max-width: calc(100% - 32px);
}
.gallery-caption__label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-caption__count {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--color-muted);
  padding-left: 10px;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, width .18s ease;
}
.gallery-dot:hover { background: rgba(0,0,0,0.36); }
.gallery-dot.is-active {
  background: var(--color-brand);
  width: 18px;
  border-radius: 999px;
}

.modal__img.is-swapping {
  opacity: 0;
  transform: scale(0.96);
}
.modal__img {
  transition: opacity .22s ease, transform .22s ease;
}

@media (max-width: 720px) {
  .modal__media.is-gallery { padding: 22px 22px 78px; }
  .gallery-nav { width: 38px; height: 38px; }
  .gallery-nav--prev { left: 8px; }
  .gallery-nav--next { right: 8px; }
}
.modal__body { padding: 36px 38px; }
.modal__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 10px;
}
.modal__title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.modal__desc {
  color: var(--color-muted);
  font-size: 15.5px;
  margin: 0 0 22px;
  line-height: 1.6;
}
.modal__specs { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.modal__specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-line);
  font-size: 14.5px;
}
.modal__specs li.spec-row--stack {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.modal__specs li span { color: var(--color-muted); }
.modal__specs li strong { color: var(--color-ink); }
.modal__specs li strong.spec-size--list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  text-align: left;
  width: 100%;
  font-weight: 600;
}
.spec-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec-block__label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.spec-chips,
.spec-flavors {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.spec-size__item {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(192,57,43,.08);
  color: var(--color-brand);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.spec-size__item sup {
  font-size: 11px;
  line-height: 1;
  margin-left: 2px;
  color: var(--color-brand);
  font-weight: 800;
}
.spec-flavor {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  border: 2px solid transparent;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  font-family: inherit;
  line-height: 1;
  cursor: default;
  transition: transform .15s, box-shadow .15s, outline .1s;
}
.spec-flavor--clickable { cursor: pointer; }
.spec-flavor--clickable:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.22);
}
.spec-flavor.is-active {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(0,0,0,.28), 0 4px 10px rgba(0,0,0,.18);
}
.spec-flavor[disabled] { opacity: .38; cursor: not-allowed; }
.spec-footnote {
  margin: 4px 0 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.4;
}
.spec-footnote sup {
  color: var(--color-brand);
  font-weight: 800;
  margin-right: 2px;
}

/* ----- Variant accents ----- */
/* Premium (Salsa de Tomate) — gold accent */
.spec-block--premium .spec-block__label {
  color: #B8860B;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.spec-block--premium .spec-block__label::after {
  content: "★";
  font-size: 11px;
  color: #D4A437;
}
.spec-block--premium .spec-size__item {
  background: linear-gradient(135deg, #F5D67A, #E5B547);
  color: #5C3A00;
  box-shadow: 0 2px 6px rgba(212, 164, 55, .35);
}
.spec-block--premium .spec-size__item sup { color: #5C3A00; }

/* Maracuyá (Salsa BBQ) — passionfruit yellow */
.spec-block--maracuya .spec-block__label {
  color: #B97A00;
}
.spec-block--maracuya .spec-size__item {
  background: #FFE08A;
  color: #7A4A00;
}
.spec-block--maracuya .spec-size__item sup { color: #7A4A00; }

/* Active chip — highlights the presentation currently shown in the gallery */
.spec-size__item.is-active,
.spec-block--premium .spec-size__item.is-active,
.spec-block--maracuya .spec-size__item.is-active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(240, 122, 18, 0.32);
  transform: translateY(-1px);
}
.spec-size__item.is-active sup,
.spec-block--premium .spec-size__item.is-active sup,
.spec-block--maracuya .spec-size__item.is-active sup { color: #fff; }
.spec-size__item {
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.spec-size__item.is-disabled {
  background: rgba(0,0,0,.05);
  color: #bbb;
  text-decoration: line-through;
  text-decoration-color: #ccc;
  pointer-events: none;
  box-shadow: none;
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  z-index: 2;
  font-size: 22px;
  line-height: 1;
}
.modal__close:hover { color: var(--color-brand); }

/* ============================================
   WhatsApp Float Button
   ============================================ */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 4px 10px rgba(0,0,0,.15);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .55), 0 6px 14px rgba(0,0,0,.18);
}
.wa-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.wa-float__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
  z-index: 1;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: 0;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  80%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float__pulse { animation: none; }
  .wa-float:hover { transform: none; }
}
@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; }
  .wa-float__icon { width: 28px; height: 28px; }
}
