/* ── Kupe 2.0 · Design tokens ─────────────────────────── */
:root {
  --k-black:     #111111;
  --k-white:     #FFFFFF;
  --k-grey-50:   #FAFAFA;
  --k-grey-100:  #F5F5F5;
  --k-grey-200:  #E5E5E5;
  --k-grey-300:  #CACACB;
  --k-grey-400:  #9E9EA0;
  --k-grey-500:  #707072;
  --k-grey-700:  #39393B;
  --k-grey-800:  #28282A;
  --k-grey-900:  #1F1F21;

  --k-yellow:    #FFD60A;   /* acento de marca Kupe 2.0 */
  --k-error:     #D30005;
  --k-success:   #2A9D4A;

  --font-display: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-ui:      'DM Sans', Helvetica, Arial, sans-serif;
}

/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Garantizar que [hidden] siempre oculte, sin importar el display del selector */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: 'DM Sans', Helvetica, Arial, sans-serif;
  background: #fcfcfc;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #CACACB; border-radius: 3px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.container { max-width: 1200px; margin: 0 auto; }

.desktop-only { display: flex; }
.mobile-only  { display: none !important; }

/* ── Pill button ──────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, transform 150ms ease, color 180ms ease;
}
.pill:active { transform: scale(0.97); }

.pill--dark  { background: #111; color: #fff; }
.pill--dark:hover  { background: #39393B; }
.pill--light { background: #fff; color: #111; }
.pill--light:hover { background: #E5E5E5; }
.pill--outline { background: #fff; color: #111; border: 1.5px solid #111; font-weight: 600; }
.pill--outline:hover { background: #F5F5F5; }
.pill--ghost-dark {
  background: transparent; color: #111;
  border: 1.5px solid #CACACB;
}
.pill--ghost-dark:hover { background: #F5F5F5; }
.pill--ghost-light {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.pill--ghost-light:hover { background: rgba(255,255,255,0.07); }

.pill--sm { padding: 9px 20px; font-size: 12px; }
.pill--md { padding: 11px 24px; font-size: 12px; }
.pill--lg { padding: 14px 44px; font-size: 14px; }
.pill--block { width: 100%; padding: 14px; font-size: 14px; margin-top: 8px; }

/* ── Promo banner ─────────────────────────────────────── */
.promo-banner {
  background: #111; color: #fff;
  text-align: center; padding: 8px 48px 8px 16px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  position: relative;
}
.promo-banner.hidden { display: none; }
.promo-banner__close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 16px; line-height: 1; padding: 4px;
}
.promo-banner__close:hover { color: rgba(255,255,255,0.8); }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  height: 58px; background: #fff; border-bottom: 1px solid #E5E5E5;
  display: flex; align-items: center; padding: 0 24px 0 32px;
  position: sticky; top: 0; z-index: 100;
}
.nav__logo { height: 22px; object-fit: contain; flex-shrink: 0; }
.nav__links { gap: 24px; margin-left: 36px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: #111;
  letter-spacing: 0.01em; transition: color 180ms;
}
.nav__links a:hover { color: #707072; }
.nav__active {
  font-weight: 600 !important; color: #111 !important;
  border-bottom: 1.5px solid #111; padding-bottom: 1px;
}
.nav__right {
  display: flex; gap: 12px; margin-left: auto; align-items: center;
}
.nav__cart { cursor: pointer; display: none !important; }
.nav__burger {
  padding: 6px; display: flex; flex-direction: column;
  gap: 5px; align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px; background: #111;
}
.nav__burger span.short { width: 14px; align-self: flex-start; }

/* ── Mobile menu ──────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: #111; display: flex; flex-direction: column;
  padding: 0 24px 40px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__head img { height: 20px; object-fit: contain; }
.mobile-menu__head button {
  color: #fff; font-size: 24px; line-height: 1; padding: 6px;
}
.mobile-menu__links {
  display: flex; flex-direction: column;
  margin-top: 16px; flex: 1;
}
.mobile-menu__links a {
  font-size: 32px; font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 180ms;
}
.mobile-menu__links a.active { color: #fff; }
.mobile-menu__links a:hover { color: #fff; }


/* ── Eyebrow / shared ─────────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #707072; margin-bottom: 10px;
}
.eyebrow--dark { letter-spacing: 0.14em; margin-bottom: 20px; }
.eyebrow--dim { color: #707072; }

/* Eyebrow tipo chip de socio: chip + punto amarillo (Kupe 2.0) */
.eyebrow--chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--k-black); color: #fff;
  padding: 6px 12px;
  letter-spacing: 0.14em;
}
.eyebrow--chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--k-yellow); flex-shrink: 0;
}
/* Sobre fondo oscuro: chip translúcido con borde fino */
.hero .eyebrow--chip,
.how .eyebrow--chip,
.mi-cuenta .eyebrow--chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.88; letter-spacing: 0.01em;
  text-transform: uppercase; color: #111;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase; color: #111;
  font-weight: normal;
}
.section-title--light { color: #fff; }

.section-head {
  margin-bottom: 40px;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.section-head--dark { margin-bottom: 56px; }
.section-head--center { text-align: center; margin-bottom: 44px; display: block; }
.section-head__aside {
  font-size: 13px; color: #707072; line-height: 1.6; text-align: right;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: #111;
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative; overflow: hidden;
}
.hero .display { color: #fff; }
.hero .eyebrow { color: rgba(255,255,255,0.5); }
.hero__text {
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  z-index: 2; position: relative;
}
.hero__sub {
  font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7;
  max-width: 360px; margin-bottom: 36px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero__ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero .pill--ghost-dark {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}
.hero .pill--ghost-dark:hover { background: rgba(255,255,255,0.07); }

.hero__media {
  height: 100%; min-height: 420px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.hero__glow {
  position: absolute;
  width: 90%; height: 90%;
  max-width: 560px; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,150,70,0.18) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero__img {
  position: relative; z-index: 1;
  width: 88%; max-width: 560px;
  height: auto; object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(1.05) brightness(1.02);
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero__watermark {
  position: absolute; bottom: -20px; left: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.04em; user-select: none;
  line-height: 1; pointer-events: none; z-index: 1;
  text-transform: uppercase;
}

/* ── Marquee ──────────────────────────────────────────── */
.marquee {
  background: #111; overflow: hidden; padding: 13px 0;
  border-top: 1px solid #1F1F21; border-bottom: 1px solid #1F1F21;
}
.marquee__track {
  display: flex; gap: 40px; width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee__track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.marquee__track span.dim { color: rgba(255,255,255,0.18); }

/* ── Benefits ─────────────────────────────────────────── */
.benefits {
  background: #F5F5F5;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E5E5;
}
.benefit-card {
  background: #fff;
  padding: 32px 28px;
  transition: background 180ms ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.benefit-card__top {
  display: flex; justify-content: flex-start; align-items: flex-start;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
/* Número como watermark editorial gigante (esquina inferior derecha) */
.benefit-card__num {
  position: absolute;
  right: -6px; bottom: -42px;
  font-family: var(--font-display);
  font-size: 170px; line-height: 1; letter-spacing: -0.01em;
  color: rgba(17,17,17,0.04);
  user-select: none; pointer-events: none; z-index: 0;
  transition: color 180ms;
}
.benefit-card__detail {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--k-grey-400);
  transition: color 180ms;
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--k-black);
  transition: color 180ms; margin-bottom: 8px;
  font-weight: normal;
  position: relative; z-index: 1;
}
.benefit-card__short {
  font-size: 13px; line-height: 1.55; color: var(--k-grey-500);
  transition: color 180ms;
  position: relative; z-index: 1;
}
.benefit-card:hover { background: var(--k-black); }
.benefit-card:hover .benefit-card__num    { color: rgba(255,255,255,0.05); }
.benefit-card:hover .benefit-card__detail { color: rgba(255,255,255,0.35); }
.benefit-card:hover .benefit-card__title  { color: #fff; }
.benefit-card:hover .benefit-card__short  { color: rgba(255,255,255,0.55); }

/* ── Ruleta CTA (inside benefits section) ────────────── */
.ruleta-cta {
  margin-top: 40px;
  background: #111;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ruleta-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: #fff;
  margin: 8px 0 10px;
}
.ruleta-cta__desc {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  max-width: 340px;
}
.ruleta-cta__btn { flex-shrink: 0; }
@media (max-width: 520px) {
  .ruleta-cta { padding: 24px 20px; }
  .ruleta-cta__btn { width: 100%; text-align: center; }
}

/* ── Featured / Destacados ────────────────────────────── */
.featured {
  background: #fff;
  padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 48px);
  border-bottom: 1px solid #E5E5E5;
}
.featured__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.featured__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #111;
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E5E5;
}
.featured-card {
  background: #fff;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: background 180ms ease;
}
.featured-card:hover { background: #FAFAFA; }
.featured-card--dark { background: #111; color: #fff; }
.featured-card--dark:hover { background: #1F1F21; }
.featured-card__eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #707072;
}
.featured-card--dark .featured-card__eyebrow { color: rgba(255,255,255,0.5); }
/* Eyebrow tipo tag amarillo (promo/descuento) */
.featured-card__eyebrow--promo {
  align-self: flex-start;
  background: var(--k-yellow); color: var(--k-black);
  padding: 4px 9px; letter-spacing: 0.1em;
}
.featured-card--dark .featured-card__eyebrow--promo { color: var(--k-black); }
.featured-card__title {
  font-family: var(--font-display);
  font-size: 36px; line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.featured-card__desc {
  font-size: 13px; color: #707072; line-height: 1.55;
}
.featured-card--dark .featured-card__desc { color: rgba(255,255,255,0.55); }
.featured-card__cta {
  margin-top: auto; padding-top: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.featured-card__cta::after { content: '→'; font-weight: 400; }

/* ── Badges (se pegan dentro de cualquier .dish) ──────── */
.badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px; border-radius: 2px;
  z-index: 2;
}
.badge--discount { background: var(--k-yellow); color: var(--k-black); }
.badge--new      { background: var(--k-success); color: #fff; }
.badge--featured { background: var(--k-black);  color: #fff; }
.badge--free     { background: #fff; color: var(--k-black); box-shadow: inset 0 0 0 1.5px var(--k-black); }

.dish { position: relative; }
.dish__price--old {
  text-decoration: line-through;
  color: #9E9EA0;
  font-size: 16px;
  margin-right: 8px;
}

/* ── Modal detalle de producto (con modificadores) ───── */
.prod-modal {
  position: fixed; inset: 0; z-index: 350;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; justify-content: center;
  overflow-y: auto;
}
.prod-modal[hidden] { display: none; }
.prod-modal__panel {
  background: #fff;
  width: 100%; max-width: 560px;
  max-height: 95vh; overflow-y: auto;
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column;
}
@media (min-width: 720px) {
  .prod-modal { align-items: center; padding: 24px; }
  .prod-modal__panel { border-radius: 8px; max-height: 90vh; }
}
.prod-modal__head {
  position: sticky; top: 0; background: #fff;
  padding: 20px 24px; border-bottom: 1px solid #E5E5E5;
  display: flex; align-items: center; justify-content: space-between;
}
.prod-modal__head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: 0.02em; color: #111;
}
.prod-modal__close {
  font-size: 28px; line-height: 1; color: #707072;
  padding: 4px 8px;
}
.prod-modal__body { padding: 20px 24px; display: grid; gap: 18px; }

.prod-precio {
  font-size: 14px; color: #2A9D4A; font-weight: 600;
}
.prod-precio strong {
  font-size: 22px;
  font-family: 'Bebas Neue', sans-serif;
  color: #111;
}
.prod-precio-sub {
  font-size: 11px; color: #9E9EA0;
}
.prod-desc { font-size: 14px; color: #707072; line-height: 1.5; }

.prod-group {
  display: grid; gap: 8px;
}
.prod-group__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--k-black); padding-bottom: 10px;
}
.prod-group__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: normal; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--k-black);
}
.prod-group__rule {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--k-grey-400);
}
.prod-group__rule--opt { color: var(--k-grey-400); }
.prod-group__rule--req { color: var(--k-grey-500); }

.prod-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  cursor: pointer; user-select: none;
  border-radius: 4px;
  transition: background 150ms;
}
.prod-opt:hover { background: #FAFAFA; }
.prod-opt input { width: 18px; height: 18px; cursor: pointer; flex-shrink: 0; accent-color: #111; }
.prod-opt__name { flex: 1; font-size: 14px; color: #111; }
.prod-opt__price {
  font-size: 13px; color: #2A9D4A; font-weight: 600;
}
.prod-opt__price--zero { color: #707072; font-weight: 400; }

.prod-qty-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
}
.prod-qty-row__name { flex: 1; font-size: 14px; color: #111; }
.prod-qty {
  display: inline-flex; align-items: center; gap: 4px;
  background: #F5F5F5; border-radius: 30px; padding: 4px;
}
.prod-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: #111; font-size: 16px;
}
.prod-qty button:disabled { opacity: 0.3; cursor: not-allowed; }
.prod-qty__value { min-width: 24px; text-align: center; font-size: 13px; font-weight: 600; }

.prod-modal__footer {
  position: sticky; bottom: 0; background: #fff;
  padding: 16px 24px; border-top: 1px solid #E5E5E5;
  display: grid; gap: 10px;
}
.prod-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #E5E5E5;
}
.prod-total__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #707072;
}
.prod-total__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: #111;
}
.prod-modal__notas {
  font-family: inherit; font-size: 13px;
  padding: 10px 14px; border: 1px solid #CACACB; border-radius: 4px;
  outline: none; resize: vertical; min-height: 50px;
  color: #111;
}
.prod-modal__actions { display: flex; gap: 8px; }
.prod-modal__actions .pill { flex: 1; }

/* ── Puntos modal ────────────────────────────────────── */
.puntos-modal {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.puntos-modal[hidden] { display: none; }
.puntos-modal__card {
  background: #111; color: #fff;
  border-radius: 16px; padding: 32px 28px 24px;
  max-width: 360px; width: 100%;
  position: relative; text-align: center;
}
.puntos-modal__close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: #888;
  font-size: 22px; cursor: pointer; line-height: 1;
  padding: 4px 8px;
}
.puntos-modal__close:hover { color: #fff; }
.puntos-modal__pts {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; line-height: 1; color: #fff;
  margin: 12px 0 4px;
}
.puntos-modal__pts-label {
  font-size: 13px; color: #888; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 16px;
}
.puntos-modal__nombre { font-size: 14px; color: #aaa; margin-bottom: 4px; }
.puntos-modal__sub {
  font-size: 13px; color: #f5c518;
  margin-bottom: 24px;
}
.puntos-modal__no-cuenta { font-size: 15px; color: #ccc; margin: 16px 0 24px; line-height: 1.5; }
.puntos-modal__cta { width: 100%; }

/* ── Checkout modal ──────────────────────────────────── */
.checkout-modal {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.65);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  overflow-y: auto;
}
.checkout-modal[hidden] { display: none; }
.checkout-modal__panel {
  background: #fff;
  width: 100%; max-width: 560px;
  height: 95vh;          /* explicit height so flex:1 children get real space */
  max-height: 95vh;
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
@media (min-width: 720px) {
  .checkout-modal { align-items: center; padding: 24px; }
  .checkout-modal__panel { border-radius: 12px; height: 90vh; max-height: 90vh; }
}

/* ── Step breadcrumb ─────────────────────────────────── */
.ck-steps-nav {
  display: flex; align-items: center; gap: 6px;
  margin-top: 5px;
}
.ck-step-crumb {
  font-size: 12px; font-weight: 600;
  color: #CACACB;
  transition: color 200ms;
}
.ck-step-crumb.active { color: #111; }
.ck-step-arr { font-size: 12px; color: #CACACB; }

/* ── Step wizard ─────────────────────────────────────── */
.checkout-modal__body-steps {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.checkout-modal__step {
  flex: 1; min-height: 0;
  display: flex; flex-direction: column;
}

.checkout-modal__step-body {
  flex: 1; overflow-y: auto;
  padding: 20px 24px;
  display: grid; gap: 20px;
  align-content: start;
}
/* Footer único compartido — vive fuera de los steps */
.checkout-modal__panel-footer {
  flex-shrink: 0;
  padding: 14px 24px;
  border-top: 1px solid #E5E5E5;
  background: #fff;
  display: grid; gap: 8px;
}

/* Mini-resumen de totales en el footer (visible en paso 2) */
.ck-footer-totales {
  display: grid; gap: 4px;
  padding: 10px 0 6px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 2px;
}
.ck-footer-totales__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #707072;
}
.ck-footer-totales__row--desc { color: #2A9D4A; font-size: 12px; }
.ck-footer-totales__row--total {
  color: #111; font-weight: 700; font-size: 17px;
  margin-top: 4px; padding-top: 6px;
  border-top: 1px solid #E5E5E5;
}
.ck-footer-totales[hidden] { display: none !important; }
.ck-footer-totales__row[hidden] { display: none !important; }

/* 2-col field rows within the form step */
.ck-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
@media (max-width: 480px) {
  .ck-row-2 { grid-template-columns: 1fr; }
}
.checkout-modal__head {
  position: sticky; top: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--k-black);
}
.checkout-modal__head h3 {
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.02em;
  font-weight: normal; line-height: 0.95;
}
.checkout-modal__close {
  font-size: 28px; line-height: 1;
  color: #707072; padding: 4px 8px;
}
/* legacy — now used only for confirmacion screen */
.checkout-modal__body {
  padding: 24px;
  display: grid; gap: 24px;
}
.checkout-resumen {
  border: 1px solid #E5E5E5; border-radius: 6px;
  overflow: hidden;
}
.ck-items {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.ck-items thead th {
  background: #F5F5F5;
  text-align: left; padding: 10px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #707072;
}
.ck-items thead th:nth-child(2) { text-align: center; width: 60px; }
.ck-items thead th:nth-child(3) { text-align: right; width: 90px; }
.ck-items tbody td {
  padding: 10px 12px;
  border-top: 1px solid #F0F0F0;
  vertical-align: top;
}
.ck-items tbody td:nth-child(2) { text-align: center; }
.ck-items tbody td:nth-child(3) { text-align: right; font-weight: 600; }
.ck-item__name {
  display: flex; gap: 8px; align-items: flex-start;
}
.ck-item__remove {
  color: #E63946; font-size: 16px; line-height: 1;
  padding: 0 4px;
  flex-shrink: 0;
}
.ck-item__remove:hover { color: #B22222; }
.ck-item__title {
  font-weight: 600; color: #111;
}
.ck-item__mods {
  display: block; font-size: 11px; color: #707072; margin-top: 2px;
  font-weight: 400;
}

.ck-totals {
  background: #F5F5F5; padding: 12px 16px;
  display: grid; gap: 4px;
  border-top: 1px solid #E5E5E5;
}
.ck-totals__row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 3px 0;
}
.ck-totals__row--desc { color: var(--k-success); font-weight: 600; }
.ck-totals__row--total {
  border-top: 1px solid #CACACB;
  padding-top: 10px; margin-top: 4px;
  font-family: var(--font-display);
  font-size: 32px; letter-spacing: 0.02em;
  color: #111;
}

.ck-section-label {
  font-size: 12px; font-weight: 700; color: #111;
  margin-bottom: 4px;
}
.ck-hint {
  font-size: 12px; font-weight: 600; color: #2A9D4A;
}

.ck-select {
  font-family: inherit; font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #CACACB; border-radius: 6px;
  background: #fff; color: #111;
  outline: none; cursor: pointer;
  width: 100%;
}
.ck-select:focus { border-color: #111; }

.checkout-section {
  display: grid; gap: 10px;
}
/* Fix: el atributo hidden debe ganarle a display:grid */
.checkout-section[hidden],
.ck-totals__row[hidden] { display: none !important; }
.checkout-section__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #707072;
}
.checkout-input, .checkout-textarea {
  font-family: inherit; font-size: 14px;
  padding: 12px 14px; border-radius: 6px;
  border: 1px solid #CACACB; background: #fff;
  color: #111; outline: none;
  transition: border 180ms;
}
.checkout-input:focus, .checkout-textarea:focus { border-color: #111; }
.checkout-textarea { resize: vertical; min-height: 70px; }

.checkout-radios {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.checkout-radio {
  display: block;
  padding: 14px 12px; text-align: center;
  border: 1.5px solid #CACACB; border-radius: 6px;
  cursor: pointer;
  transition: all 180ms;
}
.checkout-radio input { display: none; }
.checkout-radio--label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.04em; color: #111;
}
.checkout-radio--desc {
  font-size: 11px; color: #707072; margin-top: 2px;
}
.checkout-radio.active {
  border-color: #111;
  background: #111;
}
.checkout-radio.active .checkout-radio--label,
.checkout-radio.active .checkout-radio--desc { color: #fff; }

.checkout-aviso {
  font-size: 12px; color: #707072; line-height: 1.55;
  background: #FFF8E1; padding: 10px 12px;
  border-radius: 4px; border-left: 3px solid #FFD60A;
}
.checkout-error {
  background: rgba(230,57,70,0.08); color: #E63946;
  padding: 10px 14px; border-radius: 4px;
  font-size: 13px;
}

/* legacy footer — replaced by .checkout-modal__summary-footer */
.checkout-modal__footer {
  display: none;
}

/* ── Confirmación de pedido (after cash submit) ──────── */
.confirmacion {
  text-align: center; padding: 40px 24px;
  display: grid; gap: 20px;
}
.confirmacion__icon {
  width: 64px; height: 64px;
  border-radius: 50%; background: #2A9D4A;
  color: #fff; font-size: 36px; line-height: 64px;
  margin: 0 auto;
}
.confirmacion__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 0.02em;
  color: #111;
}
.confirmacion__num {
  font-size: 14px; color: #707072;
}
.confirmacion__num strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: #111; letter-spacing: 0.05em;
}

/* ── Páginas de estado de pago ──────────────────────────── */
.estado-pago {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.estado-pago--ok   { background: #fff; }
.estado-pago--err  { background: #fff; }
.estado-pago--pend { background: #fff; }
.estado-pago__card {
  max-width: 460px; text-align: center;
}
.estado-pago__icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: #fff; line-height: 1;
}
.estado-pago--ok   .estado-pago__icon { background: #2A9D4A; }
.estado-pago--err  .estado-pago__icon { background: #E63946; }
.estado-pago--pend .estado-pago__icon { background: #707072; }
.estado-pago__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.92; letter-spacing: 0.02em;
  text-transform: uppercase; color: #111;
  margin-bottom: 24px;
}
.estado-pago__num {
  font-size: 14px; color: #707072; margin-bottom: 12px;
}
.estado-pago__num strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: #111; letter-spacing: 0.05em;
}
.estado-pago__msg {
  font-size: 15px; color: #707072; line-height: 1.65;
  margin-bottom: 32px;
}

/* ── Carrito ──────────────────────────────────────────── */
.nav__cart {
  position: relative;
  padding: 6px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 180ms ease;
}
.nav__cart:hover { background: #F5F5F5; }
.nav__cart-badge {
  position: absolute; top: -2px; right: -4px;
  background: #111; color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
}

/* Carrito con items: se convierte en pastilla amarilla */
.nav__cart-label {
  display: none;
  font-size: 13px; font-weight: 700;
  white-space: nowrap; letter-spacing: 0.01em;
}
.nav__cart.has-items {
  background: #FFD60A;
  color: #111;
  border-radius: 24px;
  padding: 8px 14px;
  gap: 7px;
  animation: cart-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.nav__cart.has-items .nav__cart-label { display: inline; }
.nav__cart.has-items .nav__cart-badge { display: none; }
.nav__cart.has-items:hover { background: #e8c000; }
@keyframes cart-pop {
  0%   { transform: scale(0.85); }
  100% { transform: scale(1); }
}

.cart-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 200ms ease;
}
.cart-backdrop.open { opacity: 1; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 310;
  width: 420px; max-width: 100vw;
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #E5E5E5;
}
.cart-drawer__head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.04em;
  color: #111; font-weight: normal;
}
.cart-drawer__close {
  font-size: 28px; line-height: 1;
  color: #707072; padding: 4px 8px;
  transition: color 180ms;
}
.cart-drawer__close:hover { color: #111; }

.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 16px 0;
}
.cart-drawer__empty {
  padding: 60px 24px; text-align: center;
  position: relative; overflow: hidden;
}
/* Watermark "00" editorial detrás del estado vacío */
.cart-drawer__empty::before {
  content: '00';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 280px; line-height: 1;
  color: rgba(17,17,17,0.025);
  user-select: none; pointer-events: none;
}
.cart-drawer__empty > * { position: relative; z-index: 1; }
.cart-drawer__empty-title {
  font-family: var(--font-display);
  font-size: 34px; letter-spacing: 0.02em;
  color: #111; margin-bottom: 12px;
}
.cart-drawer__empty-desc {
  font-size: 13px; color: #707072; line-height: 1.6;
  margin-bottom: 24px;
}

.cart-drawer__items { list-style: none; padding: 0; margin: 0; }
.cart-item {
  display: flex; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid #F5F5F5;
}
.cart-item__img {
  width: 62px; height: 62px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.cart-item__content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cart-item__top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 8px;
}
.cart-item__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #111; line-height: 1.3;
}
.cart-item__total {
  font-size: 14px; font-weight: 700; color: #111;
  white-space: nowrap; flex-shrink: 0;
}
.cart-item__mods {
  font-size: 11px; color: #707072; line-height: 1.4;
}
.cart-item__bottom {
  display: flex; align-items: center; gap: 10px; margin-top: 4px;
}
.cart-item__unit {
  font-size: 12px; font-weight: 700; color: #111;
  background: #FFD60A; border-radius: 6px; padding: 2px 8px;
}
.cart-qty {
  display: flex; align-items: center; gap: 4px;
  background: #F5F5F5; border-radius: 30px; padding: 3px;
}
.cart-qty button {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; color: #111;
  font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms;
}
.cart-qty button:hover { background: #E5E5E5; }
.cart-qty__value {
  min-width: 22px; text-align: center;
  font-size: 13px; font-weight: 700;
}
.cart-item__remove {
  margin-left: auto; color: #E63946;
  transition: opacity 180ms; padding: 2px;
}
.cart-item__remove:hover { opacity: 0.7; }

.cart-drawer__footer {
  border-top: 1px solid var(--k-black);
  padding: 18px 24px 20px;
  display: grid; gap: 14px;
}
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: #111;
}
.cart-drawer__row strong {
  font-family: var(--font-display);
  font-size: 32px; font-weight: normal; letter-spacing: 0.01em;
}

/* Botón "+" en menu__list (sides / drinks) */
.menu__list li {
  position: relative;
}
.menu-list-add {
  width: 32px; height: 32px;
  border-radius: 50%; background: #111; color: #fff;
  font-size: 18px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 180ms, transform 150ms;
  margin-left: 8px;
  flex-shrink: 0;
}
.menu-list-add:hover { background: #39393B; }
.menu-list-add:active { transform: scale(0.94); }

.dish__add.in-cart, .menu-list-add.in-cart {
  background: #2A9D4A;
}

@media (max-width: 480px) {
  .cart-drawer { width: 100%; }
}

/* ── Kill switch overlay (web cerrada operativamente) ──── */
#cerrado-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #111; color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#cerrado-overlay .cerrado-card {
  max-width: 520px; text-align: center;
}
#cerrado-overlay .cerrado-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
#cerrado-overlay .cerrado-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 12vw, 120px);
  line-height: 0.9; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 24px;
}
#cerrado-overlay .cerrado-msg {
  font-size: 16px; color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 36px;
}

/* ── Mi cuenta (login por teléfono + datos del socio) ── */
.mi-cuenta {
  background: #111;
  color: #fff;
  padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.mi-cuenta::before {
  content: 'CLUB';
  position: absolute; right: -30px; bottom: -40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 22vw, 320px); line-height: 1;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.04em; pointer-events: none; user-select: none;
}
.mi-cuenta .container { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.mi-cuenta__head { text-align: center; margin-bottom: 36px; }
.mi-cuenta__head .eyebrow { color: rgba(255,255,255,0.5); }
.mi-cuenta__intro {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.65; max-width: 480px; margin: 18px auto 0;
}

.mi-cuenta__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 480px; margin: 0 auto;
}
.mi-cuenta__form input {
  background: #1F1F21;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit; font-size: 15px;
  padding: 14px 18px; border-radius: 30px;
  outline: none; transition: border 180ms ease;
  -webkit-appearance: none;
}
.mi-cuenta__form input::placeholder { color: rgba(255,255,255,0.3); }
.mi-cuenta__form input:focus { border-color: rgba(255,255,255,0.4); }
.mi-cuenta__form input:invalid { border-color: rgba(230,57,70,0.5); }

.mi-cuenta__msg {
  margin-top: 18px; text-align: center; min-height: 22px;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.mi-cuenta__msg.error { color: #ff6b76; }

.mi-cuenta__result {
  margin-top: 36px;
  background: #fff; color: #111;
  border-radius: 4px;
  padding: 32px clamp(20px, 4vw, 40px);
  display: grid; gap: 24px;
}
.mi-cuenta__result h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 0.02em; text-transform: uppercase;
  color: #111; line-height: 1;
}
.socio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #E5E5E5;
  border: 1px solid #E5E5E5;
}
.socio-stat {
  background: #fff; padding: 18px 14px; text-align: center;
}
.socio-stat__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px; line-height: 1; color: #111;
}
.socio-stat__label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #707072; margin-top: 6px;
}

.canje-list { display: grid; gap: 8px; }
.canje-list__title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #707072; margin-bottom: 4px;
}
.canje-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: #F5F5F5; border-radius: 4px;
}
.canje-item__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.03em; color: #111;
}
.canje-item__pts {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #707072;
}

.mi-cuenta__cta {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  border-top: 1px solid #E5E5E5; padding-top: 24px;
}

.cumple-flag {
  background: #FFD60A; color: #111;
  padding: 10px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-align: center;
}

.no-socio {
  background: #fff; color: #111;
  padding: 28px clamp(20px, 4vw, 36px);
  border-radius: 4px;
  text-align: center;
  display: grid; gap: 14px;
}

@media (max-width: 480px) {
  .mi-cuenta__form { grid-template-columns: 1fr; }
  .socio-stats { grid-template-columns: 1fr; }
}

/* ── Menu / Carta ─────────────────────────────────────── */
.menu {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
  border-top: 1px solid #E5E5E5;
}
/* ── Destacados hoy ─────────────────────────────────── */
.menu__destacados {
  margin-bottom: 32px;
  padding: 20px 0 0;
}
.menu__destacados-head {
  margin-bottom: 16px;
}
.menu__destacados .menu__grid {
  border: 2px solid #FFD60A;
  border-radius: 10px;
  overflow: hidden;
}

.menu__group + .menu__group { margin-top: 0; }
.menu__group { border-top: 1px solid #E5E5E5; }
.menu__group:last-child { border-bottom: 1px solid #E5E5E5; }

.menu__toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 8px;
  background: transparent; border: none; cursor: pointer;
  text-align: left;
  transition: background 180ms ease;
}
.menu__toggle:hover { background: #FAFAFA; }
.menu__toggle-left { display: flex; align-items: baseline; gap: 20px; }
.menu__toggle-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #CACACB; letter-spacing: 0.04em;
}
.menu__toggle-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px); letter-spacing: 0.02em;
  text-transform: uppercase; color: #111;
}
.menu__toggle-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; color: #111; line-height: 1;
  width: 38px; height: 38px; border: 1px solid #CACACB;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 220ms ease, background 180ms ease, color 180ms ease;
}
.menu__toggle[aria-expanded="true"] .menu__toggle-icon {
  transform: rotate(45deg);
  background: #FFD60A; color: #111; border-color: #FFD60A;
}

.menu__panel {
  max-height: 0; overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu__panel.open { max-height: 4000px; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #E5E5E5;
  padding-bottom: 32px;
}

.dish {
  background: #fff;
  display: flex; flex-direction: column;
  transition: transform 180ms ease;
}
.dish:hover { transform: translateY(-2px); }
.dish__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.dish__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.dish:hover .dish__media img { transform: scale(1.04); }
.dish__body {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.dish__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.03em;
  text-transform: uppercase; color: #111;
  font-weight: normal;
}
.dish__desc {
  font-size: 13px; color: #707072; line-height: 1.5;
  flex: 1;
}
.dish__row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; gap: 8px;
}
.dish__row > div { display: flex; flex-direction: column; gap: 2px; }
.dish__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.02em; color: #111;
}
.dish__savings {
  font-size: 11px; font-weight: 700; color: #2A9D4A;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.dish__envio-gratis {
  display: block;
  margin-top: 6px;
  font-size: 11px; font-weight: 600; color: #2A9D4A;
  letter-spacing: 0.02em;
}
.dish__add {
  width: 36px; height: 36px;
  border-radius: 50%; background: #111; color: #fff;
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 180ms ease, transform 150ms ease;
}
.dish__add:hover { background: #39393B; }
.dish__add:active { transform: scale(0.94); }

/* ── Agotado state ─────────────────────────────────────── */
.dish--agotado { opacity: .55; pointer-events: none; }
.dish--agotado .dish__add { display: none; }
.dish__agotado-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  background: #E63946; color: #fff;
  padding: 3px 10px; border-radius: 20px;
}
.menu__list li.agotado { opacity: .5; pointer-events: none; }
.menu__list li.agotado .menu-list-add { display: none; }
.menu-list-agotado-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  background: #E63946; color: #fff;
  padding: 2px 9px; border-radius: 20px; white-space: nowrap;
}

/* ── Menu list (sides / drinks) ───────────────────────── */
.menu__list {
  display: flex; flex-direction: column;
  border-top: 1px solid #E5E5E5;
  padding-bottom: 32px;
}
.menu__list li {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center; gap: 24px;
  padding: 20px 8px;
  border-bottom: 1px solid #E5E5E5;
}
.menu__list-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.03em;
  text-transform: uppercase; color: #111;
}
.menu__list-desc {
  font-size: 13px; color: #707072; line-height: 1.5;
}
.menu__list-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; color: #111;
}

/* ── Info ─────────────────────────────────────────────── */
.info {
  background: #111;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
  color: #fff;
}
.info .section-head { margin-bottom: 48px; }
.info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info__block {
  background: #111;
  padding: 36px 28px;
}
.info__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.info__list { display: flex; flex-direction: column; gap: 10px; }
.info__list li {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.85);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info__list li:last-child { border-bottom: none; }
.info__text {
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6;
  margin-bottom: 8px;
}
.info__text--dim { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ── How it works ─────────────────────────────────────── */
.how {
  background: #111;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.how__bgword {
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px; line-height: 1;
  color: rgba(255,255,255,0.03);
  user-select: none; pointer-events: none; letter-spacing: 0.02em;
  white-space: nowrap; text-transform: uppercase;
}
.how .container { position: relative; z-index: 1; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.step {
  padding: 36px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.step:last-child { border-right: none; }
.step + .step { padding-left: 36px; }
.step:not(:last-child) { padding-right: 36px; }
.step__num {
  font-family: var(--font-display);
  font-size: 80px; line-height: 1;
  color: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.step__label {
  font-family: var(--font-display);
  font-size: 36px; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 12px;
}
.step__desc {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65;
}

/* ── Tiers ────────────────────────────────────────────── */
.tiers {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 48px);
}
.tiers__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: #E5E5E5;
}
.tier {
  background: #fff;
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.tier--dark { background: #111; }
/* Badge "TU NIVEL" amarillo sobre el nivel destacado (Silver) */
.tier--dark::before {
  content: 'TU NIVEL';
  position: absolute; top: 16px; right: 16px;
  background: var(--k-yellow); color: var(--k-black);
  padding: 4px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier__range {
  align-self: flex-start;
  background: #F5F5F5;
  border-radius: 2px;
  padding: 3px 9px;
  margin-bottom: 24px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #707072;
}
.tier--dark .tier__range { background: #1F1F21; color: rgba(255,255,255,0.4); }
.tier__name {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 64px); line-height: 0.9; letter-spacing: 0.01em;
  text-transform: uppercase; color: #111; margin-bottom: 6px;
}
.tier--dark .tier__name { color: #fff; }
.tier__sub {
  font-size: 13px; color: #707072; margin-bottom: 28px; line-height: 1.5;
}
.tier--dark .tier__sub { color: rgba(255,255,255,0.4); }
.tier__perks {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px; flex: 1;
}
.tier__perks li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px; color: var(--k-grey-700); line-height: 1.5;
}
.tier__perks li::before {
  content: ''; width: 12px; height: 1px;
  flex-shrink: 0; margin-top: 9px; background: var(--k-black);
}
.tier--dark .tier__perks li { color: rgba(255,255,255,0.85); }
.tier--dark .tier__perks li::before { background: rgba(255,255,255,0.4); }
.tier .pill { align-self: flex-start; }

/* ── Final CTA ────────────────────────────────────────── */
.final-cta {
  background: #fff;
  padding: clamp(64px, 8vw, 96px) clamp(16px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  border-top: 1px solid #E5E5E5;
}
.final-cta .eyebrow { margin-bottom: 16px; }
.final-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9; letter-spacing: 0.01em;
  text-transform: uppercase; color: #111;
  margin-bottom: 24px;
  font-weight: normal;
}
.final-cta__sub {
  font-size: 15px; color: #707072; line-height: 1.7;
  max-width: 380px; margin-bottom: 32px;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: #0E0E0E;
  padding: 56px clamp(16px, 4vw, 48px) 40px;
  border-top: 1px solid #1F1F21;
  position: relative;
  overflow: hidden;
}
/* Wordmark gigante "KUPE" como watermark al pie */
.footer::after {
  content: 'KUPE';
  position: absolute; left: 0; right: 0; bottom: -0.22em;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(120px, 26vw, 360px);
  line-height: 1; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.04);
  user-select: none; pointer-events: none;
  text-transform: uppercase;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 1;
}
.footer__logo { height: 20px; object-fit: contain; }
.footer__links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.38); letter-spacing: 0.01em;
  transition: color 180ms;
}
.footer__links a:hover { color: #fff; }
.footer__copy {
  font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em;
}

/* ── [Fix 3] Cart: barra de progreso envío gratis ────── */
.cart-progress {
  margin: 12px 16px 0;
  padding: 10px 14px 12px;
  background: #FFF8CC;
  border-radius: 8px;
  flex-shrink: 0;
}
.cart-progress__bar-wrap {
  height: 5px;
  background: #F0E080;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cart-progress__fill {
  height: 100%;
  background: #FFD60A;
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 0%;
}
.cart-progress__text {
  font-size: 12px;
  color: #111;
  font-weight: 500;
  margin: 0;
}
.cart-progress--done .cart-progress__text {
  font-weight: 700;
}

/* ── [Fix 4] Modal: imagen del producto ───────────────── */
.prod-modal__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  flex-shrink: 0;
  background: #111;
}
.prod-modal__img-el {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (min-width: 720px) {
  .prod-modal__img-wrap { border-radius: 8px 8px 0 0; }
}

/* ── [Fix 5] Checkout: tipo de entrega como cards ─────── */
.ck-tipo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ck-tipo-card {
  padding: 16px 14px;
  border: 1.5px solid #CACACB;
  border-radius: 8px;
  text-align: left; cursor: pointer;
  transition: all 180ms ease;
  background: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.ck-tipo-card:hover { border-color: #111; }
.ck-tipo-card.active { border-color: #111; background: #111; }
.ck-tipo-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.03em;
  color: #111; line-height: 1;
}
.ck-tipo-card.active .ck-tipo-card__name { color: #fff; }
.ck-tipo-card__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: #E5E5E5; color: #707072;
  padding: 2px 8px; border-radius: 2px;
  align-self: flex-start; margin-top: 2px;
}
.ck-tipo-card__tag--green { background: var(--k-yellow); color: var(--k-black); }
.ck-tipo-card.active .ck-tipo-card__tag:not(.ck-tipo-card__tag--green) {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
}
.ck-tipo-card__detail { font-size: 11px; color: #707072; line-height: 1.4; }
.ck-tipo-card.active .ck-tipo-card__detail { color: rgba(255,255,255,0.55); }

/* ── [Fix 6] Checkout: puntos a ganar ────────────────── */
.ck-puntos-banner {
  background: #edfaf2;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px; color: #2A9D4A; font-weight: 500;
  text-align: center;
}
.ck-puntos-banner strong { font-weight: 700; }
.ck-puntos-banner[hidden] { display: none !important; }

/* ── Menu skeleton loader ─────────────────────────────── */
@keyframes shimmer {
  from { background-position: -600px 0; }
  to   { background-position:  600px 0; }
}
.menu__skeleton {
  padding: 40px 8px;
  display: flex; flex-direction: column; gap: 20px;
}
.menu__skeleton-line {
  height: 48px; border-radius: 4px;
  background: linear-gradient(90deg, #F0F0F0 25%, #E0E0E0 50%, #F0F0F0 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}
.menu__skeleton-line--short { width: 55%; height: 36px; }

/* ── dish__price--old ─────────────────────────────────── */
.dish__price--old {
  font-size: 16px; color: #CACACB;
  text-decoration: line-through;
  margin-right: 6px; font-family: 'Bebas Neue', sans-serif;
}

/* ── menu-list-add button ─────────────────────────────── */
.menu-list-add {
  width: 32px; height: 32px;
  border-radius: 50%; background: #111; color: #fff;
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 180ms ease, transform 150ms ease;
}
.menu-list-add:hover { background: #39393B; }
.menu-list-add:active { transform: scale(0.94); }
.menu-list-add.in-cart, .dish__add.in-cart { background: #2A9D4A; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .info__grid { grid-template-columns: repeat(2, 1fr); }
  .featured__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: flex !important; }


  .hero {
    grid-template-columns: 1fr;
  }
  .hero__media {
    min-height: 300px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .hero__watermark { font-size: 110px; }
}

@media (max-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .step:last-child { border-bottom: none; }
  .tiers__grid {
    grid-template-columns: 1fr;
  }
  .menu__grid {
    grid-template-columns: 1fr;
  }
  .featured__grid { grid-template-columns: 1fr; }
  .menu__toggle { padding: 22px 4px; }
  .menu__toggle-left { gap: 14px; }
  .menu__list li {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }
  .menu__list-desc { grid-column: 1 / -1; }
  .info__grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head__aside { text-align: left; margin-top: 16px; }
}

/* ── Scroll-reveal (benefit + tier cards) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Barra de carrito flotante (todas las pantallas) ─── */
.mobile-cart-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 250;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
  max-width: 680px; margin: 0 auto;
}
.mobile-cart-bar__btn {
  pointer-events: auto;
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #FFD60A; color: #111;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: background 160ms, transform 120ms;
  animation: cart-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.mobile-cart-bar__btn:active { transform: scale(0.97); }
.mobile-cart-bar__btn:hover  { background: #e8c000; }

/* Espacio para que el contenido no quede tapado por la barra */
body { padding-bottom: 80px; }

/* ── Toast de horario fuera de servicio ─────────────────── */
#kupe-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #1A1A1A;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 400;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  pointer-events: none;
}
#kupe-toast.kupe-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Kupe 2.0 · Utilidades del sistema visual ─────────── */

/* Focus ring accesible (teclado) */
:focus-visible {
  outline: 2px solid var(--k-yellow);
  outline-offset: 2px;
}

/* Member chip — badge de socio con punto amarillo.
   (CSS listo; el markup/JS que lo usa llega en fases posteriores.) */
.member-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: var(--k-black); color: #fff;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.member-chip::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--k-yellow); flex-shrink: 0;
}
.member-chip--light {
  background: #fff; color: var(--k-black);
  box-shadow: inset 0 0 0 1.5px var(--k-grey-300);
}

/* Watermark editorial — número/palabra gigante de fondo. */
.bg-numeral {
  position: absolute;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.8; letter-spacing: 0.02em;
  color: rgba(17,17,17,0.04);
  user-select: none; pointer-events: none; z-index: 0;
}
.bg-numeral--light { color: rgba(255,255,255,0.04); }

/* Línea de precio socio / descuento (acento amarillo). */
.member-price {
  display: inline-flex; align-items: baseline; gap: 8px;
}
.member-price__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--k-yellow); color: var(--k-black);
  padding: 2px 7px; border-radius: 2px;
}

/* ── Kupe 2.0 · Fase 4 (mejoras JS) ───────────────────── */

/* Puntos del socio en el hero */
.hero__socio {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero__socio[hidden] { display: none; }
.hero__socio-sub {
  font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em;
}

/* Puntos del socio en el footer del carrito */
.cart-socio {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: var(--k-grey-500);
}
.cart-socio[hidden] { display: none; }

/* "Abierto ahora" en Info */
.info__label-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px;
}
.info__label-row .info__label { margin-bottom: 0; }
.info-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.info-status[hidden] { display: none; }
.info-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.info-status--open   { color: var(--k-success); }
.info-status--closed { color: var(--k-grey-400); }

/* Chips de navegación de la carta */
.menu__chips {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  margin-bottom: 4px;
  scrollbar-width: none;
}
.menu__chips::-webkit-scrollbar { display: none; }
.menu__chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--k-black);
  background: var(--k-black); color: #fff;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
  transition: background 160ms, color 160ms, border-color 160ms;
}
.menu__chip:hover { background: #333; border-color: #333; }
.menu__chip.is-active {
  background: #fff; color: var(--k-black); border-color: #fff;
}

/* ── Menu club strip (teaser para no socios al pie del menú) ── */
.menu__club-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
  padding: 18px 24px;
  background: var(--k-black); color: #fff;
}
.menu__club-strip[hidden] { display: none; }
.menu__club-strip__left {
  display: flex; align-items: center; gap: 12px;
}
.menu__club-strip__icon {
  color: var(--k-yellow); font-size: 18px; flex-shrink: 0;
}
.menu__club-strip__text {
  font-size: 13px; line-height: 1.4;
  color: rgba(255,255,255,0.75);
}
.menu__club-strip__text strong { color: #fff; }

/* ── Cart club teaser (puntos estimados para no socios) ────── */
.cart-club-teaser {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  padding: 12px 16px;
  background: var(--k-black); color: #fff;
  margin-bottom: 12px;
}
.cart-club-teaser[hidden] { display: none; }
.cart-club-teaser__text {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.4;
  flex: 1;
}
.cart-club-teaser__star {
  color: var(--k-yellow); font-size: 14px; flex-shrink: 0;
}
.cart-club-teaser__text strong { color: var(--k-yellow); }

/* ── Ruleta como sección standalone ───────────────────────── */
.ruleta-section {
  background: var(--k-grey-50);
  padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 48px);
}
