/* ─────────────────────────────────────────────────────────────────
   Alexandra Castro Pastelería Boutique — Estilos
   Editorial, calmado, maison. Hairlines en vez de sombras.
   ───────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: var(--t-base);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

button { font-family: inherit; cursor: pointer; }

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

::selection { background: var(--plum); color: var(--cream); }

/* ── Layout primitives ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: 880px;
}

/* ── Tipografía: utilidades ───────────────────────────────────── */
.display {
  font-family: var(--serif-display);
  font-weight: var(--w-light);
  line-height: var(--lh-tight);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.display-1 { font-family: var(--serif-display); font-weight: 300; font-size: clamp(56px, 10vw, var(--t-5xl)); line-height: var(--lh-tight); letter-spacing: -0.01em; }
.display-2 { font-family: var(--serif-display); font-weight: 300; font-size: clamp(40px, 6vw, var(--t-4xl)); line-height: var(--lh-tight); letter-spacing: -0.005em; }
.display-3 { font-family: var(--serif-display); font-weight: 400; font-size: clamp(28px, 4vw, var(--t-3xl)); line-height: 1.1; letter-spacing: -0.005em; }

.serif-body { font-family: var(--serif-body); font-style: italic; color: var(--ink-soft); line-height: var(--lh-relaxed); }

.eyebrow {
  font-family: var(--sans);
  font-weight: var(--w-regular);
  font-size: var(--t-xs);
  letter-spacing: var(--track-lg);
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow--ink   { color: var(--ink-soft); }
.eyebrow--plum  { color: var(--plum); }
.eyebrow--cream { color: var(--cream); }

.smallcaps {
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: var(--track-md);
  text-transform: uppercase;
}

.script {
  font-family: var(--script);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}

/* ── Hairlines ────────────────────────────────────────────────── */
.rule        { height: var(--hairline-px); background: var(--hairline); border: 0; }
.rule--ink   { height: var(--hairline-px); background: var(--hairline-ink); border: 0; }
.rule--vert  { width: var(--hairline-px); background: var(--hairline); align-self: stretch; }

.ornament-rule {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--gold);
}
.ornament-rule::before, .ornament-rule::after {
  content: ''; flex: 0 0 64px; height: var(--hairline-px); background: var(--hairline-strong);
}
.ornament-rule__mark {
  font-family: var(--serif-display); font-style: italic; font-size: 14px; color: var(--gold-dark);
  letter-spacing: 0;
}

/* ── Botones ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: var(--r-1);
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: var(--track-md);
  text-transform: uppercase;
  color: var(--cream);
  background: var(--plum);
  cursor: pointer;
  transition: background var(--t-base-d) var(--ease-soft),
              color var(--t-base-d) var(--ease-soft),
              border-color var(--t-base-d) var(--ease-soft);
  white-space: nowrap;
}
.btn:hover { background: var(--plum-deep); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: var(--hairline-px) solid var(--gold);
  box-shadow: inset 0 0 0 var(--hairline-px) var(--gold);
}
.btn--outline:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  box-shadow: none;
}
/* Outline sobre el panel oscuro del hero: texto claro + filete dorado */
.hero .btn--outline {
  color: var(--cream);
  background: transparent;
  border-color: var(--gold-light);
  box-shadow: inset 0 0 0 var(--hairline-px) var(--gold-light);
}
.hero .btn--outline:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  box-shadow: none;
}
.btn--ghost {
  background: transparent; color: var(--ink); border: var(--hairline-px) solid var(--hairline-ink-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--cream-2); }

.btn--sm { height: 36px; padding: 0 18px; font-size: 10px; }
.btn--lg { height: 56px; padding: 0 40px; }

.btn--on-dark { color: var(--ink); background: var(--cream); }
.btn--on-dark:hover { background: var(--cream-2); color: var(--ink); }
.btn--on-dark-outline { background: transparent; color: var(--cream); border: var(--hairline-px) solid var(--gold-light); box-shadow: inset 0 0 0 var(--hairline-px) var(--gold-light); }
.btn--on-dark-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); box-shadow: none; }

/* ── Sello tipográfico (smart-section pill alternativa) ───────── */
.sello {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-lg);
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 6px 0;
}
.sello::before, .sello::after {
  content: ''; display: inline-block; width: 28px; height: var(--hairline-px); background: var(--hairline-strong);
}
.sello--solo::after { display: none; }

/* ── Marco fino dorado (para imágenes/placeholders) ───────────── */
.frame-gold {
  position: relative;
}
.frame-gold::after {
  content: '';
  position: absolute; inset: 0;
  border: var(--hairline-px) solid var(--gold);
  pointer-events: none;
}

/* ── Placeholder de imagen editorial ──────────────────────────── */
.img-slot {
  position: relative;
  background: var(--cream-2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.img-slot::after {
  content: '';
  position: absolute; inset: 12px;
  border: var(--hairline-px) solid var(--gold);
  pointer-events: none;
}
.img-slot__inner {
  position: relative; z-index: 1;
  font-family: var(--serif-display); font-style: italic;
  font-size: var(--t-sm);
  color: var(--gold-dark);
  line-height: 1.5;
  letter-spacing: 0;
  padding: 24px;
  max-width: 80%;
}
.img-slot__inner small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: var(--track-lg);
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}
.img-slot__inner svg {
  margin: 0 auto 12px;
  display: block;
  color: var(--gold);
  opacity: 0.7;
}

/* Soft pattern overlay para placeholders (sin lunares; ondas suaves) */
.img-slot--rose   { background: linear-gradient(135deg, #F4DEDE 0%, #E8C8C8 100%); }
.img-slot--lila   { background: linear-gradient(135deg, #A98FCB 0%, #8C6FAE 100%); color: var(--cream); }
.img-slot--cream  { background: linear-gradient(135deg, #F4EDE2 0%, #ECE3D2 100%); }
.img-slot--plum   { background: linear-gradient(135deg, #8C6FAE 0%, #6F548D 100%); color: var(--cream); }
.img-slot--plum .img-slot__inner { color: var(--gold-light); }
.img-slot--plum .img-slot__inner small { color: rgba(255,255,255,0.65); }
.img-slot--menta  { background: linear-gradient(135deg, #E8F9E7 0%, #C9E8C7 100%); }

/* ── Caja de foto de tamaño FIJO ──────────────────────────────────
   El contenedor define la proporción; el .img-slot la llena 100% y
   la imagen hace cover. Así TODAS las fotos miden igual (no unas más
   grandes que otras) y recortan con elegancia. */
.specialty__img,
.maison__media,
.product-card__media,
.product-card--grid .product-card__media,
.featured-card__media,
.hero__media,
.hero__media-img,
.detail-modal__media {
  position: relative;
  overflow: hidden;
}
.specialty__img > .img-slot,
.maison__media > .img-slot,
.product-card__media > .img-slot,
.featured-card__media > .img-slot,
.hero__media > .img-slot,
.hero__media-img > .img-slot,
.detail-modal__media > .img-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.img-slot--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Nav superior ─────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: var(--hairline-px) solid var(--hairline);
}
.site-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}
.site-nav__left, .site-nav__right {
  display: flex; align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: var(--track-md);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-nav__left { justify-content: flex-start; gap: 28px; }
.site-nav__right { justify-content: flex-end; gap: 18px; }
.site-nav__link {
  position: relative;
  padding: 6px 0;
  transition: color var(--t-base-d) var(--ease-soft);
}
.site-nav__link:hover { color: var(--plum); }
.site-nav__link.is-active { color: var(--plum); }
.site-nav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: var(--hairline-px); background: var(--gold);
}
.site-nav__logo {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.site-nav__logo svg { height: 38px; width: auto; }
.site-nav__cart {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 0;
}
.site-nav__cart-count {
  font-family: var(--sans-precise); font-size: 10px; font-weight: 600;
  letter-spacing: 0; color: var(--plum); margin-left: 2px;
}

/* Mobile nav */
.site-nav__mobile-toggle { display: none; }
@media (max-width: 880px) {
  .site-nav__inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-nav__left { display: none; }
  .site-nav__mobile-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: transparent; border: 0; color: var(--ink);
  }
  .site-nav__logo { justify-self: center; }
  .site-nav__logo svg { height: 32px; }
  .site-nav__right { gap: 12px; }
  .site-nav__right .site-nav__link { display: none; }
}

/* ── Hero (landing) ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero--full {
  min-height: min(820px, 92vh);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media .img-slot { width: 100%; height: 100%; }
.hero__media > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  /* Velo muy leve: la foto se ve; el panel del contenido da el contraste */
  background:
    linear-gradient(180deg,
      rgba(24, 16, 28, 0.22) 0%,
      rgba(24, 16, 28, 0.04) 30%,
      rgba(24, 16, 28, 0.06) 62%,
      rgba(24, 16, 28, 0.40) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--cream);
}
/* Panel contenedor: da orden, aire y contraste; la foto se ve alrededor */
.hero--full .hero__content {
  max-width: 560px;
  margin: 0 auto;
  padding: 52px 56px 56px;
  background: rgba(24, 16, 28, 0.48);
  -webkit-backdrop-filter: blur(4px) saturate(115%);
  backdrop-filter: blur(4px) saturate(115%);
  border: 1px solid rgba(197, 160, 77, 0.38);
  border-radius: 3px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}
.hero--full .hero__title,
.hero--full .hero__sub { color: var(--cream); }
.hero--full .hero__sub { color: rgba(251, 247, 241, 0.84); }
.hero--full .hero__logo { color: var(--gold-light); filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35)); }
@media (max-width: 880px) {
  .hero--full .hero__content { max-width: 90%; padding: 40px 28px 44px; }
}
.hero__logo {
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto 12px;
  color: var(--gold-dark);
}
.hero__logo svg { display: block; max-width: 100%; width: auto; }
.hero--split .hero__logo { justify-content: flex-start; margin-left: 0; margin-right: 0; }
@media (max-width: 880px) {
  .hero--split .hero__logo { justify-content: center; margin-left: auto; margin-right: auto; }
}
.hero__cursive {
  font-family: var(--script);
  font-size: clamp(80px, 12vw, 180px);
  color: var(--gold-dark);
  line-height: 1;
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(255,255,255,0.4);
}
.hero__title {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: var(--track-xl);
  text-transform: uppercase;
  color: var(--plum-deep);
  margin: 28px 0 0;
}
.hero__sub {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: var(--t-md);
  color: var(--ink);
  margin: 28px auto 0;
  max-width: 540px;
  line-height: var(--lh-relaxed);
}
.hero__ornament {
  display: flex; justify-content: center; margin: 36px 0 28px;
}
.hero__ornament span {
  display: inline-block; width: 88px; height: var(--hairline-px);
  background: var(--gold-dark);
}
.hero__ctas {
  display: flex; gap: 14px; justify-content: center; margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero v2 — split editorial (image right, type left) */
.hero--split {
  padding: 96px 0;
}
.hero--split .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.hero--split .hero__cursive { color: var(--gold-dark); text-shadow: none; font-size: clamp(72px, 9vw, 130px); }
.hero--split .hero__title { color: var(--ink); }
.hero--split .hero__sub { color: var(--ink-soft); margin-left: 0; }
.hero--split .hero__media-img {
  position: relative;
  aspect-ratio: 4/5;
}
.hero--split .hero__media-img > img,
.hero--split .hero__media-img .img-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero--split .hero__ornament { justify-content: flex-start; }
.hero--split .hero__ctas { justify-content: flex-start; }
@media (max-width: 880px) {
  .hero--split { padding: 48px 0 64px; }
  .hero--split .container { grid-template-columns: 1fr; gap: 40px; }
  .hero--split .hero__ornament { justify-content: center; }
  .hero--split .hero__ctas { justify-content: center; }
  .hero--split .hero__cursive { text-align: center; }
}

/* ── Section header ───────────────────────────────────────────── */
.section {
  padding: var(--density-section-pad) 0;
}
.section--tight { padding: 64px 0; }
.section--alt   { background: var(--cream-2); }
.section--plum  { background: var(--plum); color: var(--cream); }
.section--plum .display, .section--plum h1, .section--plum h2, .section--plum h3 { color: var(--cream); }
.section--plum .eyebrow { color: var(--gold-light); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head--left { text-align: left; }
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-head .display-2,
.section-head .display-3 { margin: 0 auto; max-width: 720px; }
.section-head .lede {
  font-family: var(--serif-body); font-style: italic;
  font-size: var(--t-md); color: var(--ink-soft);
  margin: 24px auto 0; max-width: 560px; line-height: var(--lh-relaxed);
}
.section-head--left .display-2,
.section-head--left .display-3,
.section-head--left .lede { margin-left: 0; }

/* ── Tres especialidades (landing) ────────────────────────────── */
.specialties {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
}
@media (max-width: 880px) { .specialties { grid-template-columns: 1fr; gap: 56px; } }
.specialty { text-align: center; }
.specialty__img { aspect-ratio: 4/5; margin-bottom: 28px; }
.specialty__sello { display: block; margin-bottom: 10px; font-size: 10px; letter-spacing: var(--track-lg); text-transform: uppercase; color: var(--gold-dark); font-family: var(--sans); }
.specialty__title { font-family: var(--serif-display); font-weight: 400; font-size: var(--t-2xl); margin: 0 0 12px; line-height: 1.1; }
.specialty__body { font-family: var(--serif-body); font-style: italic; color: var(--ink-soft); font-size: var(--t-base); line-height: var(--lh-relaxed); margin: 0 auto 18px; max-width: 320px; }
.specialty__link { font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-lg); text-transform: uppercase; color: var(--plum); border-bottom: var(--hairline-px) solid var(--gold); padding-bottom: 2px; }

/* ── Maison / historia (landing) ──────────────────────────────── */
.maison {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 96px; align-items: center;
}
@media (max-width: 880px) {
  .maison { grid-template-columns: 1fr; gap: 56px; }
}
.maison__media { aspect-ratio: 4/5; }
.maison__body p {
  font-family: var(--serif-body);
  font-size: var(--t-md);
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.2em;
}
.maison__body p:first-of-type::first-letter {
  font-family: var(--serif-display);
  float: left;
  font-size: 3.8em;
  line-height: 0.7;
  margin: 0.26em 0.12em 0 0;
  padding: 0;
  color: var(--plum);
  font-weight: 600;
}
.maison__signature {
  font-family: var(--script);
  font-size: 36px;
  color: var(--gold-dark);
  margin-top: 24px;
  line-height: 1;
}

/* ── Detalle: visit / horarios ────────────────────────────────── */
.visit {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  text-align: center;
  padding: 64px 0;
  border-top: var(--hairline-px) solid var(--hairline);
  border-bottom: var(--hairline-px) solid var(--hairline);
}
@media (max-width: 720px) {
  .visit { grid-template-columns: 1fr; gap: 40px; }
}
.visit__block { padding: 0 16px; }
.visit__label {
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-lg);
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.visit__title {
  font-family: var(--serif-display); font-weight: 400; font-size: var(--t-xl);
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.visit__body {
  font-family: var(--serif-body); font-style: italic; color: var(--ink-soft); font-size: var(--t-sm);
}
.visit__body strong { color: var(--ink); font-weight: 500; font-style: normal; font-family: var(--sans); letter-spacing: var(--track-sm); font-size: 11px; text-transform: uppercase; }

/* Status pill (discreto, tipográfico) */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--ink-soft);
}
.status-pill__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--menta-deep);
  box-shadow: 0 0 0 3px var(--menta);
}
.status-pill--closed .status-pill__dot { background: var(--ink-mute); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  padding: 96px 0 48px;
  background: var(--plum);
  color: var(--cream);
}
.site-footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .site-footer { padding: 64px 0 32px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
}
@media (max-width: 520px) {
  .site-footer__top { grid-template-columns: 1fr; }
}
.site-footer__brand .hero__cursive {
  font-size: 76px; text-shadow: none;
}
.site-footer__brand p {
  font-family: var(--serif-body); font-style: italic;
  color: rgba(255,255,255,0.65); margin-top: 16px; max-width: 360px;
}
.site-footer h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: var(--track-lg); text-transform: uppercase;
  color: var(--gold-light); margin: 0 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li {
  font-family: var(--serif-body); font-size: var(--t-sm);
  color: rgba(255,255,255,0.75); margin-bottom: 10px; line-height: 1.45;
}
.site-footer__bottom {
  border-top: var(--hairline-px) solid rgba(224, 197, 136, 0.32);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
@media (max-width: 520px) {
  .site-footer__bottom { flex-direction: column; }
}

/* ── Banner dinámico ──────────────────────────────────────────── */
#dynamic-banner {
  background: var(--cream-2);
  border-bottom: var(--hairline-px) solid var(--hairline);
  padding: 14px 0;
  text-align: center;
}
#dynamic-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
#dynamic-banner p {
  margin: 0; font-family: var(--serif-body); font-style: italic;
  font-size: var(--t-sm); color: var(--ink);
}
#dynamic-banner strong {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 10px; letter-spacing: var(--track-lg); text-transform: uppercase;
  color: var(--gold-dark); margin-right: 8px;
}

/* ── Carta (menu page) ────────────────────────────────────────── */
.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  padding: 48px 0 96px;
}
@media (max-width: 1000px) {
  .menu-layout { grid-template-columns: 1fr; gap: 24px; }
}

/* Filter sidebar */
.filter-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--nav-h) - 48px);
  overflow-y: auto;
  padding-right: 12px;
  font-family: var(--sans);
}
@media (max-width: 1000px) {
  .filter-sidebar { position: relative; top: auto; max-height: none; padding: 0; }
}

/* Toggle de filtros — SOLO móvil. En escritorio no se muestra (la barra
   lateral queda como está). En móvil, "La carta" muestra la carta de
   una vez; categorías/sellos/restricciones se despliegan bajo el botón. */
.menu-filter-toggle { display: none; }
@media (max-width: 1000px) {
  .menu-filter-toggle {
    display: flex; align-items: center; gap: 10px;
    order: 0; width: 100%;
    padding: 14px 16px; margin: 0;
    background: var(--cream);
    border: var(--hairline-px) solid var(--gold);
    color: var(--ink);
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    letter-spacing: var(--track-md); text-transform: uppercase;
    cursor: pointer;
  }
  .menu-filter-toggle > span { flex: 1; text-align: left; }
  .menu-filter-toggle__chev { flex: 0 0 auto; color: var(--gold-dark); font-size: 14px; }

  /* Colapsado por defecto → la carta (menu-main) queda justo bajo el botón */
  .filter-sidebar.filter-sidebar--collapsible {
    order: 1;
    max-height: 0; opacity: 0; overflow: hidden;
    padding: 0; margin: 0; pointer-events: none;
    transition: max-height 340ms var(--ease-soft), opacity 220ms var(--ease-soft);
  }
  .filter-sidebar.filter-sidebar--collapsible.is-open {
    max-height: 1600px; opacity: 1; overflow: visible;
    pointer-events: auto; margin: 8px 0 20px;
  }
  .menu-main { order: 2; }
}
.filter-sidebar h3 {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: var(--track-lg); text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 16px;
}
.filter-sidebar h3:not(:first-child) { margin-top: 32px; }
.filter-sidebar ul { list-style: none; padding: 0; margin: 0; }
.filter-sidebar li {
  padding: 8px 0;
  font-size: var(--t-sm);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  border-bottom: var(--hairline-px) solid var(--hairline-ink);
  transition: color var(--t-base-d) var(--ease-soft);
}
.filter-sidebar li:last-child { border-bottom: none; }
.filter-sidebar li:hover { color: var(--plum); }
.filter-sidebar li.is-active { color: var(--plum); }
.filter-sidebar li.is-active::after {
  content: ''; width: 12px; height: var(--hairline-px); background: var(--gold);
}
.filter-sidebar li__count {
  font-size: 10px; color: var(--ink-mute); font-variant-numeric: tabular-nums;
}
.filter-sidebar__chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.filter-chip {
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--ink-soft);
  padding: 6px 12px; background: transparent;
  border: var(--hairline-px) solid var(--hairline-ink-strong);
  border-radius: var(--r-1);
  cursor: pointer;
  transition: all var(--t-base-d) var(--ease-soft);
}
.filter-chip:hover { border-color: var(--plum); color: var(--plum); }
.filter-chip.is-on { background: var(--plum); color: var(--cream); border-color: var(--plum); }

/* Menu main */
.menu-main { min-width: 0; }

.menu-section {
  margin-bottom: 96px;
}
.menu-section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 36px;
  border-bottom: var(--hairline-px) solid var(--hairline-strong);
}
.menu-section__title {
  font-family: var(--serif-display); font-weight: 400;
  font-size: var(--t-3xl);
  margin: 0; color: var(--ink); line-height: 1;
}
.menu-section__num {
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-lg);
  text-transform: uppercase; color: var(--gold-dark);
}

.menu-section__lede {
  font-family: var(--serif-body); font-style: italic;
  color: var(--ink-soft); font-size: var(--t-sm);
  margin: -24px 0 32px;
  max-width: 540px;
}

/* ── Product card: editorial list (default) ────────────────── */
.product-list { display: flex; flex-direction: column; }

.product-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  padding: var(--density-row-pad-y) 0;
  border-bottom: var(--hairline-px) solid var(--hairline-ink);
  cursor: pointer;
  transition: background var(--t-base-d) var(--ease-soft);
}
.product-card:hover { background: rgba(216, 195, 232, 0.06); }
.product-card:hover .product-card__title { color: var(--plum-deep); }
.product-card__media {
  width: 100px; height: 100px;
}
.product-card__body { min-width: 0; }
.product-card__sello {
  display: block; margin-bottom: 6px;
  font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-lg);
  text-transform: uppercase; color: var(--gold-dark);
}
.product-card__title {
  font-family: var(--serif-display); font-weight: 400; font-size: var(--t-xl);
  margin: 0 0 4px; color: var(--ink); line-height: 1.15;
  transition: color var(--t-base-d) var(--ease-soft);
  font-feature-settings: "kern", "liga", "dlig";
}
.product-card__desc {
  font-family: var(--serif-body); font-style: italic;
  color: var(--ink-soft); font-size: 15px; /* +2px: descripciones se veían pequeñas */
  margin: 0 0 8px; line-height: var(--lh-normal);
  max-width: 520px;
}
.product-card__tags {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--ink-mute);
}
.product-card__tag {
  display: inline-flex; align-items: center; gap: 5px;
}
.product-card__tag::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink-mute); display: inline-block;
}
.product-card__tag--veg::before { background: var(--menta-deep); }
.product-card__tag--gf::before  { background: var(--warning); }
.product-card__tag--out::before { background: var(--error); }
.product-card__tag--out          { color: var(--error); }

.product-card__price-wrap {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start;
  gap: 12px;
}

/* Móvil: la fila del menú no debe verse apretada ni el texto montado
   sobre el precio. Imagen a la izquierda; cuerpo arriba y precio + CTA
   debajo (sin 3ª columna estrecha). Solo lista editorial. */
@media (max-width: 620px) {
  .product-card:not(.product-card--grid) {
    grid-template-columns: 76px 1fr;
    gap: 14px 16px;
    align-items: start;
  }
  .product-card:not(.product-card--grid) .product-card__media {
    width: 76px; height: 76px; grid-row: 1 / span 2;
  }
  .product-card:not(.product-card--grid) .product-card__body { grid-column: 2; grid-row: 1; }
  .product-card:not(.product-card--grid) .product-card__price-wrap {
    grid-column: 2; grid-row: 2;
    flex-direction: row; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 8px;
  }
}
.product-card__price {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0;
}
.product-card__price small {
  font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--ink-mute); display: block; text-align: right;
  margin-top: 2px;
}

.btn-add {
  appearance: none;
  background: transparent;
  border: var(--hairline-px) solid var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-md);
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--r-1);
  transition: all var(--t-base-d) var(--ease-soft);
  white-space: nowrap;
}
.btn-add:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.btn-add:disabled { opacity: 0.4; cursor: not-allowed; }

/* Leader-dots variant on the list (alternative) */
.product-card--leaders {
  grid-template-columns: 1fr auto;
}
.product-card--leaders .product-card__media { display: none; }
.product-card--leaders .product-card__head-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 4px;
}
.product-card--leaders .product-card__leaders {
  border-bottom: var(--hairline-px) dotted var(--gold);
  height: 12px;
  transform: translateY(-3px);
}

/* ── Product card: grid with photo ────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 56px 32px;
}
.product-card--grid {
  display: flex; flex-direction: column; gap: 0;
  grid-template-columns: none;
  padding: 0;
  border: none;
  cursor: pointer;
}
.product-card--grid:hover { background: transparent; }
.product-card--grid .product-card__media {
  width: 100%; height: auto; aspect-ratio: 4/5;
  margin-bottom: 22px;
}
.product-card--grid .product-card__body {
  text-align: center;
}
.product-card--grid .product-card__sello {
  margin-bottom: 8px;
}
.product-card--grid .product-card__title {
  font-size: var(--t-xl);
  margin-bottom: 8px;
}
.product-card--grid .product-card__desc {
  margin: 0 auto 14px;
  max-width: 260px;
}
.product-card--grid .product-card__price-wrap {
  align-items: center;
  gap: 16px;
}
.product-card--grid .product-card__tags {
  justify-content: center;
}
.product-card--grid .product-card__price-row {
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
.product-card--grid .product-card__price-row .rule--vert {
  height: 20px; align-self: center; background: var(--hairline-strong);
}

/* ── Featured / Recommended row (top of menu) ─────────────────── */
.featured-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: var(--hairline-px) solid var(--hairline);
  border-bottom: var(--hairline-px) solid var(--hairline);
  margin-bottom: 64px;
}
@media (max-width: 880px) {
  .featured-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.featured-card {
  display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer;
}
.featured-card__media { width: 64px; height: 64px; flex-shrink: 0; }
.featured-card__sello {
  font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px;
}
.featured-card__title {
  font-family: var(--serif-display); font-weight: 400; font-size: var(--t-md);
  margin: 0 0 4px; color: var(--ink); line-height: 1.2;
}
.featured-card__price {
  font-family: var(--sans-precise); font-size: var(--t-sm); color: var(--plum); font-weight: 500;
}

/* ── Floating cart ────────────────────────────────────────────── */
.floating-cart {
  position: fixed; right: 28px; bottom: 28px; z-index: var(--z-fab);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 18px;
  background: var(--plum); color: var(--cream);
  border-radius: var(--r-1);
  border: var(--hairline-px) solid var(--gold-light);
  font-family: var(--sans); font-size: 11px; letter-spacing: var(--track-md);
  text-transform: uppercase; font-weight: 500;
  cursor: pointer;
  transition: background var(--t-base-d) var(--ease-soft), transform var(--t-base-d) var(--ease-soft);
  box-shadow: 0 4px 20px rgba(42, 35, 32, 0.18);
}
.floating-cart:hover { background: var(--plum-deep); }
.floating-cart__icon { display: inline-flex; }
.floating-cart__count {
  display: inline-block; min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--gold); color: var(--ink); border-radius: var(--r-pill);
  font-size: 10px; line-height: 22px; text-align: center;
  letter-spacing: 0; font-weight: 600; font-family: var(--sans-precise);
}
.floating-cart__total {
  font-family: var(--serif-display); font-size: var(--t-md);
  letter-spacing: 0; text-transform: none; font-weight: 400;
  color: var(--gold-light);
}
.floating-cart__divider {
  width: var(--hairline-px); align-self: stretch;
  background: rgba(224,197,136,0.4);
}

/* ── WhatsApp FAB ─────────────────────────────────────────────── */
.wa-fab {
  position: fixed; left: 28px; bottom: 28px; z-index: var(--z-fab);
  width: 52px; height: 52px;
  background: var(--cream);
  border: var(--hairline-px) solid var(--gold);
  color: var(--plum);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t-base-d) var(--ease-soft);
  box-shadow: 0 4px 16px rgba(42, 35, 32, 0.10);
}
.wa-fab:hover { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.wa-fab svg { width: 22px; height: 22px; }

/* ── Sticky mobile footer ─────────────────────────────────────── */
.sticky-mobile-footer { display: none; }
@media (max-width: 720px) {
  .sticky-mobile-footer {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: var(--z-fab);
    background: var(--cream);
    border-top: var(--hairline-px) solid var(--hairline);
    height: 64px;
  }
  .sticky-mobile-footer__btn {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    background: none; border: 0; cursor: pointer;
    font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-md);
    text-transform: uppercase; color: var(--ink-soft);
    padding: 0 8px;
  }
  .sticky-mobile-footer__btn + .sticky-mobile-footer__btn {
    border-left: var(--hairline-px) solid var(--hairline);
  }
  .sticky-mobile-footer__btn svg { color: var(--plum); }
  .sticky-mobile-footer__btn--primary { background: var(--plum); color: var(--cream); }
  .sticky-mobile-footer__btn--primary svg { color: var(--gold-light); }
  .floating-cart { display: none; }
  .wa-fab { display: none; }
  body { padding-bottom: 64px; }
}

/* ── Modal: cart side panel ───────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(42, 35, 32, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base-d) var(--ease-soft);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-modal {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: calc(var(--z-modal) + 1);
  width: min(460px, 92vw);
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  border-left: var(--hairline-px) solid var(--gold);
}
.cart-modal.is-open { transform: translateX(0); }
.cart-modal__head {
  padding: 28px 32px 20px;
  border-bottom: var(--hairline-px) solid var(--hairline);
  display: flex; align-items: baseline; justify-content: space-between;
}
.cart-modal__title { font-family: var(--serif-display); font-weight: 400; font-size: var(--t-2xl); margin: 0; color: var(--ink); line-height: 1; }
.cart-modal__eyebrow { font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-lg); text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; display: block; }
.cart-modal__close {
  background: transparent; border: 0; color: var(--ink-soft);
  width: 36px; height: 36px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: color var(--t-base-d) var(--ease-soft);
}
.cart-modal__close:hover { color: var(--plum); }

.cart-modal__items { flex: 1; overflow-y: auto; padding: 8px 32px; }
.cart-modal__item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px;
  padding: 22px 0;
  border-bottom: var(--hairline-px) solid var(--hairline-ink);
}
.cart-modal__item-media { width: 64px; height: 64px; }
.cart-modal__item-title {
  font-family: var(--serif-display); font-weight: 400; font-size: var(--t-md);
  margin: 0 0 6px; line-height: 1.15;
}
.cart-modal__item-mods {
  font-family: var(--serif-body); font-style: italic; font-size: var(--t-xs);
  color: var(--ink-soft); margin-bottom: 8px; line-height: 1.4;
}
.cart-modal__qty {
  display: inline-flex; align-items: center; gap: 0;
  border: var(--hairline-px) solid var(--hairline-ink-strong);
  border-radius: var(--r-1);
}
.cart-modal__qty button {
  width: 26px; height: 26px;
  background: none; border: 0; color: var(--ink-soft);
  font-family: var(--sans); font-size: 13px;
  cursor: pointer;
}
.cart-modal__qty button:hover { color: var(--plum); }
.cart-modal__qty input,
.cart-modal__qty span {
  width: 28px; text-align: center;
  font-family: var(--sans-precise); font-size: 12px;
  color: var(--ink);
  border: 0; background: transparent;
}
.cart-modal__item-price {
  font-family: var(--serif-display); font-size: var(--t-md); color: var(--ink);
  text-align: right;
  margin-top: 4px;
}
.cart-modal__remove {
  background: none; border: 0; color: var(--ink-mute);
  font-family: var(--sans); font-size: 9px; letter-spacing: var(--track-md);
  text-transform: uppercase; cursor: pointer; padding: 4px 0; margin-top: 8px;
  border-bottom: var(--hairline-px) solid var(--hairline-ink);
}
.cart-modal__remove:hover { color: var(--error); }

.cart-modal__foot {
  padding: 24px 32px 32px;
  border-top: var(--hairline-px) solid var(--hairline);
  background: var(--cream-2);
}
.cart-modal__totals {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px;
  font-family: var(--sans-precise); font-size: var(--t-sm);
}
.cart-modal__totals-row {
  display: flex; justify-content: space-between; color: var(--ink-soft);
}
.cart-modal__totals-row--big {
  font-family: var(--serif-display); font-size: var(--t-xl);
  color: var(--ink); padding-top: 12px;
  border-top: var(--hairline-px) solid var(--hairline);
}
.cart-modal__empty {
  text-align: center; padding: 80px 32px;
}
.cart-modal__empty p {
  font-family: var(--serif-body); font-style: italic; color: var(--ink-soft);
  margin: 16px 0 0;
}
.cart-modal__empty .display {
  font-family: var(--serif-display); font-size: var(--t-2xl); color: var(--ink);
  margin: 0; font-weight: 400; line-height: 1.2;
}

/* ── Detail modal ─────────────────────────────────────────────── */
.detail-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%);
  z-index: calc(var(--z-modal) + 1);
  width: min(960px, 96vw);
  max-height: 92vh;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base-d) var(--ease-soft), transform var(--t-base-d) var(--ease-soft);
  overflow: hidden;
  border: var(--hairline-px) solid var(--gold);
}
.detail-modal.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
/* min-width:0 evita que la media desborde su columna del grid; sin
   aspect-ratio (acoplaba ancho↔alto y reventaba la columna cuando el
   panel derecho era más alto). La img-slot absoluta ya rellena la celda. */
.detail-modal__media { min-width: 0; min-height: 380px; }
.detail-modal__body { padding: 56px 48px; overflow-y: auto; overscroll-behavior: contain; position: relative; }

/* Modal-formulario (checkout "Finalizar pedido"): una sola columna y el
   CUERPO hace scroll interno (el formulario es más alto que la pantalla).
   Sin esto el grid no acota la altura → se recorta y la rueda mueve el
   fondo en vez del modal. */
.detail-modal--scroll {
  display: block;                 /* anula el grid 2-col del modal de producto */
  width: min(720px, 96vw);
}
.detail-modal--scroll .detail-modal__body {
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;   /* el scroll NO se encadena al fondo */
}
.detail-modal__close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 0; width: 36px; height: 36px;
  color: var(--ink-soft); font-size: 18px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.detail-modal__sello { display: block; margin-bottom: 14px; }
.detail-modal__title {
  font-family: var(--serif-display); font-weight: 400; font-size: var(--t-3xl);
  margin: 0 0 16px; line-height: 1.05; color: var(--ink);
}
.detail-modal__desc {
  font-family: var(--serif-body); font-style: italic;
  color: var(--ink-soft); font-size: 19px; line-height: 1.65; /* +2px */
  margin: 0 0 28px;
}
.detail-modal__price {
  font-family: var(--serif-display); font-size: var(--t-2xl); color: var(--ink);
  margin: 0 0 28px; padding-bottom: 22px;
  border-bottom: var(--hairline-px) solid var(--hairline);
}
.detail-modal h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: var(--track-lg); text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 12px;
}
.detail-modal__variants {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.detail-variant {
  font-family: var(--sans); font-size: 11px; letter-spacing: var(--track-sm);
  padding: 10px 16px;
  background: transparent;
  border: var(--hairline-px) solid var(--hairline-ink-strong);
  border-radius: var(--r-1); cursor: pointer;
  color: var(--ink-soft);
  transition: all var(--t-base-d) var(--ease-soft);
}
.detail-variant:hover { border-color: var(--gold); color: var(--ink); }
.detail-variant.is-on { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.detail-modal__mods {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.detail-modal__mods label {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif-body); font-size: var(--t-base); color: var(--ink);
  cursor: pointer;
}
.detail-modal__mods label input { accent-color: var(--plum); width: 16px; height: 16px; }
.detail-modal__mods label span.price {
  margin-left: auto; font-family: var(--sans-precise); font-size: var(--t-sm); color: var(--ink-soft);
}
.detail-modal__actions {
  display: flex; align-items: stretch; gap: 16px;
  margin-top: 16px;
}
.detail-modal__qty {
  display: inline-flex; align-items: stretch; height: 48px;
  border: var(--hairline-px) solid var(--gold);
  border-radius: var(--r-1);
}
.detail-modal__qty button {
  width: 40px; background: transparent; border: 0;
  color: var(--ink); font-size: 16px; cursor: pointer;
}
.detail-modal__qty input,
.detail-modal__qty span {
  width: 36px; text-align: center; align-self: center;
  border: 0; background: transparent; font-family: var(--sans-precise); font-size: 14px;
  color: var(--ink);
}
.detail-modal__actions .btn { flex: 1; }
@media (max-width: 720px) {
  .detail-modal { grid-template-columns: 1fr; max-height: 96vh; overflow-y: auto; }
  .detail-modal__media { aspect-ratio: 16/9; }
  .detail-modal__body { padding: 32px 24px; }
  /* Móvil: botones del modal apilados a todo el ancho (no lado a lado,
     que se cortan/desbordan en pantallas angostas tipo iPhone). */
  .detail-modal--scroll .detail-modal__body { padding: 28px 20px; }
  .detail-modal__actions { flex-direction: column; gap: 12px; }
  .detail-modal__actions .btn { flex: 0 0 auto; width: 100%; }
}

/* ── Cocktails section (alternative tone) ────────────────────── */
.menu-section--dark { background: var(--plum); color: var(--cream); padding: 64px 32px; margin-left: -32px; margin-right: -32px; }
.menu-section--dark .menu-section__title { color: var(--cream); }
.menu-section--dark .menu-section__num { color: var(--gold-light); }
.menu-section--dark .menu-section__head { border-color: rgba(224, 197, 136, 0.32); }
.menu-section--dark .product-card { border-color: rgba(255,255,255,0.10); }
.menu-section--dark .product-card__title { color: var(--cream); }
.menu-section--dark .product-card__price { color: var(--gold-light); }
.menu-section--dark .product-card__desc { color: rgba(255,255,255,0.7); }
.menu-section--dark .btn-add { border-color: var(--gold-light); color: var(--cream); }
.menu-section--dark .btn-add:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
@media (max-width: 1000px) {
  .menu-section--dark { margin-left: 0; margin-right: 0; padding: 48px 24px; }
}

/* ── Repeat order banner ──────────────────────────────────────── */
#repeat-order-container {
  background: var(--cream-2);
  border: var(--hairline-px) solid var(--gold);
  padding: 24px 32px;
  margin-bottom: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
#repeat-order-container .display { font-family: var(--serif-display); font-weight: 400; font-size: var(--t-xl); margin: 0 0 6px; color: var(--ink); line-height: 1.15; }
#repeat-order-container .lede { font-family: var(--serif-body); font-style: italic; font-size: var(--t-sm); color: var(--ink-soft); margin: 0; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--cream);
  border: var(--hairline-px) solid var(--hairline-ink-strong);
  border-radius: var(--r-1);
  font-family: var(--sans-precise);
  font-size: var(--t-base);
  color: var(--ink);
  transition: border-color var(--t-base-d) var(--ease-soft), background var(--t-base-d) var(--ease-soft);
}
.form-textarea { height: auto; padding: 14px 16px; min-height: 96px; resize: vertical; line-height: 1.5; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { outline: none; border-color: var(--plum); background: #fff; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-mute); }
.form-label {
  display: block;
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-md);
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-fieldset { margin-bottom: 32px; }
.form-fieldset legend {
  font-family: var(--sans); font-size: 10px; letter-spacing: var(--track-lg);
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 16px; padding: 0;
}

/* Checkout payment options */
.pay-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: var(--hairline-px) solid var(--hairline-ink-strong);
  border-radius: var(--r-1);
  cursor: pointer;
  transition: all var(--t-base-d) var(--ease-soft);
  margin-bottom: 10px;
}
.pay-option:hover { border-color: var(--gold); }
.pay-option.is-on { border-color: var(--plum); background: rgba(212, 193, 240, 0.10); }
.pay-option input { accent-color: var(--plum); }
.pay-option__icon { color: var(--plum); display: inline-flex; }
.pay-option__title { font-family: var(--serif-display); font-weight: 400; font-size: var(--t-md); margin: 0 0 2px; }
.pay-option__sub { font-family: var(--serif-body); font-style: italic; font-size: var(--t-xs); color: var(--ink-soft); margin: 0; }

/* ── Brunch mode visual cue ───────────────────────────────────── */
body.brunch-mode .site-nav {
  background: rgba(232, 249, 231, 0.92);
}

/* ── Print-friendly ───────────────────────────────────────────── */
@media print {
  .site-nav, .floating-cart, .wa-fab, .sticky-mobile-footer, .modal-backdrop, .cart-modal, .detail-modal { display: none !important; }
}
