/* ============================================================
   ALOHA BAR · "TRÓPICO FRESCO / TIKI RETRO"
   ============================================================ */

:root {
  --paper: #f7ead0;
  --paper-2: #fbf3e1;
  --coral: #dd5a3a;
  --coral-d: #c2462b;
  --sun: #f0b22e;
  --sun-d: #e09a1e;
  --teal: #2e7d6b;
  --teal-d: #1f6657;
  --ink: #3e2516;
  --ink-soft: #7a5a41;
  --cream: #fbf3e1;
  --cream-soft: #f4deb6;
  --leaf-clr: #4e8a3c;
  --leaf: #4e8a3c;
  --pink: #e86a7c;
  --night: #0e0a24;
  --night-2: #1a0f38;
  --night-3: #2a1854;
  --neon-pink: #ff3da8;
  --neon-cyan: #2de2d6;
  --neon-lime: #b6ff3c;
  --cream-glow: #f8f0e3;

  --ff-display: "Alfa Slab One", cursive;
  --ff-script: "Pacifico", cursive;
  --ff-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --nav-h: 54px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: clip;
}
body {
  background: #241a12;
  background-image: radial-gradient(circle at 50% 0%, #38271a, #1c130c 80%);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: clip;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ---- Nav ---- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 26, 18, 0.97);
  border-bottom: 1px solid rgba(240, 178, 46, 0.2);
  height: var(--nav-h);
  will-change: transform;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.nav-inner::-webkit-scrollbar {
  display: none;
}
.nav-chip {
  flex: none;
  display: inline-block;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1.5px solid rgba(240, 178, 46, 0.28);
  color: var(--cream-soft);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  background: transparent;
}
.nav-chip:hover,
.nav-chip.active {
  background: rgba(240, 178, 46, 0.16);
  color: var(--sun);
  border-color: var(--sun);
}
.nav-chip--destilados {
  border-color: rgba(46, 125, 107, 0.5);
  color: #7ecfbc;
  margin-left: 8px;
}

/* ---- Cover ---- */
.site-header {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--paper);
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
/* Grain overlay on cover */
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: radial-gradient(
    rgba(120, 80, 40, 0.16) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
}
.cover-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 28px;
}
.cover-eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cover-title {
  font-family: var(--ff-display);
  font-size: clamp(80px, 20vw, 130px);
  line-height: 0.88;
  color: var(--coral);
  text-shadow: 4px 4px 0 var(--sun);
  letter-spacing: 1px;
  margin-top: 12px;
}
.cover-sub {
  font-family: "Yellowtail", cursive;
  font-size: clamp(32px, 6vw, 52px);
  color: var(--teal);
  line-height: 0.9;
  margin-top: 0;
}
.cover-tag {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 16px;
  font-weight: 500;
}
.cover-handle {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-top: 26px;
  text-transform: uppercase;
}
.cover-motif {
  position: absolute;
  pointer-events: none;
}

/* ---- Sections base ---- */
.section {
  position: relative;
  padding: 68px 0 0;
  scroll-margin-top: var(--nav-h);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.section.visible {
  opacity: 1;
  transform: none;
}

/* Grain overlay */
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.28;
  background-image: radial-gradient(
    rgba(120, 80, 40, 0.55) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
}

/* Spiral holes — left edge */
.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 10;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    var(--hole-clr, rgba(0, 0, 0, 0.12)) 5.5px,
    transparent 5.5px
  );
  background-size: 36px 36px;
  background-repeat: repeat-y;
  background-position: center 18px;
}

/* Sunburst */
.burst {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
  background: repeating-conic-gradient(
    from 0deg at 50% 18%,
    currentColor 0deg 5deg,
    transparent 5deg 12deg
  );
}

/* ===== ILUSTRACIONES TROPICALES (marco de esquina) ===== */
.deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.96;
  line-height: 0;
}
.deco img {
  width: 100%;
  height: auto;
  display: block;
}
.deco-sm {
  width: 150px;
}
.deco-md {
  width: 235px;
}
.deco-lg {
  width: 330px;
}
.deco-strip {
  width: 135px;
}
.deco-tl {
  top: -28px;
  left: -26px;
}
.deco-tr {
  top: -28px;
  right: -26px;
}
.deco-bl {
  bottom: -28px;
  left: -26px;
}
.deco-br {
  bottom: -28px;
  right: -26px;
}
.deco-er {
  top: 50%;
  right: -30px;
  translate: 0 -50%;
}
.deco-el {
  top: 50%;
  left: -30px;
  translate: 0 -50%;
}
.flip-x {
  scale: -1 1;
}
.flip-y {
  scale: 1 -1;
}
.flip-xy {
  scale: -1 -1;
}
.rot-r {
  rotate: 12deg;
}
.rot-l {
  rotate: -12deg;
}
@media (max-width: 680px) {
  .deco-sm {
    width: 96px;
  }
  .deco-md {
    width: 150px;
  }
  .deco-lg {
    width: 205px;
  }
  .deco-strip {
    width: 92px;
  }
}

/* Double vintage frame */
.section__frame {
  position: absolute;
  inset: 14px;
  border: 2.5px solid var(--frame-clr, rgba(0, 0, 0, 0.2));
  border-radius: 8px;
  pointer-events: none;
  z-index: 6;
  opacity: 0.5;
}
.section__frame::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--frame-clr, rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  opacity: 0.55;
}

.section__inner {
  position: relative;
  z-index: 5;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px 80px 60px;
}

/* =========================================================
   TEMAS POR SECCIÓN
   ========================================================= */

/* ---- papel ---- */
.p-papel {
  background: var(--paper);
  color: var(--ink);
  --hole-clr: rgba(62, 37, 22, 0.16);
  --frame-clr: var(--coral);
}
.p-papel .burst {
  color: var(--coral);
}
.p-papel .section-eyebrow {
  color: var(--ink-soft);
}
.p-papel .section-title {
  color: var(--coral-d);
}
.p-papel .section-subnote {
  color: var(--teal-d);
}
.p-papel .item__name {
  color: var(--ink);
}
.p-papel .item__price {
  color: var(--coral-d);
}
.p-papel .item__price--null {
  color: var(--ink-soft);
}
.p-papel .item__desc {
  color: var(--ink-soft);
}
.p-papel .item__leader {
  border-color: rgba(62, 37, 22, 0.22);
}
.p-papel .group__label {
  color: var(--teal-d);
  border-color: rgba(46, 125, 107, 0.28);
}
.p-papel .group__note {
  color: var(--ink-soft);
}
.p-papel .section-footnote {
  color: var(--ink-soft);
}
.p-papel .badge {
  background: var(--coral);
  color: var(--cream);
}
.p-papel .hero-photo {
  border-color: var(--coral);
  background: rgba(221, 90, 58, 0.06);
  color: var(--ink-soft);
}
.p-papel .hero-ph-badge {
  background: var(--coral);
  color: var(--cream);
}
.p-papel .hero-ph-name {
  color: var(--coral-d);
}
.p-papel .qr-block {
  border-color: rgba(46, 125, 107, 0.35);
  background: rgba(46, 125, 107, 0.05);
}
.p-papel .qr-text-label {
  color: var(--teal-d);
}
.p-papel .qr-text-sub {
  color: var(--ink-soft);
}
.p-papel .item__name--list {
  color: var(--ink-soft);
}
.p-papel .item__size-price {
  color: var(--coral-d);
}
.p-papel .destilados-name {
  color: var(--ink);
}
.p-papel .destilados-price {
  color: var(--teal-d);
}
.p-papel .destilados-price--bottle {
  color: var(--coral-d);
}
.p-papel .destilados-group-label {
  color: var(--ink-soft);
  border-color: rgba(62, 37, 22, 0.22);
}
.p-papel .destilados-col-head {
  color: var(--ink-soft);
}
.p-papel .destilados-row {
  border-color: rgba(62, 37, 22, 0.08);
}
.p-papel .destilados-header-row {
  border-color: rgba(62, 37, 22, 0.16);
}

/* ---- coral ---- */
.p-coral {
  background: var(--coral);
  color: var(--cream);
  --hole-clr: rgba(194, 70, 43, 0.42);
  --frame-clr: var(--cream);
}
.p-coral .burst {
  color: var(--sun);
}
.p-coral .section-eyebrow {
  color: var(--sun);
}
.p-coral .section-title {
  color: var(--cream);
}
.p-coral .section-subnote {
  color: var(--cream-soft);
}
.p-coral .item__name {
  color: var(--cream);
}
.p-coral .item__price {
  color: var(--sun);
}
.p-coral .item__price--null {
  color: var(--cream-soft);
  opacity: 0.7;
}
.p-coral .item__desc {
  color: var(--cream-soft);
}
.p-coral .item__leader {
  border-color: rgba(251, 243, 225, 0.28);
}
.p-coral .group__label {
  color: var(--sun);
  border-color: rgba(240, 178, 46, 0.3);
}
.p-coral .group__note {
  color: var(--cream-soft);
}
.p-coral .section-footnote {
  color: var(--cream-soft);
}
.p-coral .badge {
  background: var(--sun);
  color: var(--coral-d);
}
.p-coral .hero-photo {
  border-color: var(--sun);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-soft);
}
.p-coral .hero-ph-badge {
  background: var(--sun);
  color: var(--coral-d);
}
.p-coral .hero-ph-name {
  color: var(--cream);
}
.p-coral .qr-block {
  border-color: rgba(251, 243, 225, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.p-coral .qr-text-label {
  color: var(--sun);
}
.p-coral .qr-text-sub {
  color: var(--cream-soft);
}
.p-coral .item__name--list {
  color: var(--cream-soft);
}
.p-coral .item__size-price {
  color: var(--sun);
}

/* ---- sun ---- */
.p-sun {
  background: var(--sun);
  color: var(--ink);
  --hole-clr: rgba(176, 120, 20, 0.35);
  --frame-clr: var(--coral);
}
.p-sun .burst {
  color: var(--coral);
}
.p-sun .section-eyebrow {
  color: var(--teal-d);
}
.p-sun .section-title {
  color: var(--coral-d);
}
.p-sun .section-subnote {
  color: var(--ink-soft);
}
.p-sun .item__name {
  color: var(--ink);
}
.p-sun .item__price {
  color: var(--coral-d);
}
.p-sun .item__price--null {
  color: var(--ink-soft);
  opacity: 0.7;
}
.p-sun .item__desc {
  color: var(--ink-soft);
}
.p-sun .item__leader {
  border-color: rgba(62, 37, 22, 0.22);
}
.p-sun .group__label {
  color: var(--teal-d);
  border-color: rgba(31, 102, 87, 0.28);
}
.p-sun .group__note {
  color: var(--ink-soft);
}
.p-sun .section-footnote {
  color: var(--ink-soft);
}
.p-sun .badge {
  background: var(--coral);
  color: var(--cream);
}
.p-sun .hero-photo {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink-soft);
}
.p-sun .hero-ph-badge {
  background: var(--coral);
  color: var(--cream);
}
.p-sun .hero-ph-name {
  color: var(--coral-d);
}
.p-sun .qr-block {
  border-color: rgba(62, 37, 22, 0.28);
  background: rgba(62, 37, 22, 0.05);
}
.p-sun .qr-text-label {
  color: var(--teal-d);
}
.p-sun .qr-text-sub {
  color: var(--ink-soft);
}
.p-sun .item__name--list {
  color: var(--ink-soft);
}
.p-sun .item__size-price {
  color: var(--coral-d);
}

/* ---- teal ---- */
.p-teal {
  background: var(--teal);
  color: var(--cream);
  --hole-clr: rgba(31, 102, 87, 0.42);
  --frame-clr: var(--sun);
}
.p-teal .burst {
  color: var(--sun);
}
.p-teal .section-eyebrow {
  color: var(--sun);
}
.p-teal .section-title {
  color: var(--cream);
}
.p-teal .section-subnote {
  color: var(--cream-soft);
}
.p-teal .item__name {
  color: var(--cream);
}
.p-teal .item__price {
  color: var(--sun);
}
.p-teal .item__price--null {
  color: var(--cream-soft);
  opacity: 0.7;
}
.p-teal .item__desc {
  color: var(--cream-soft);
}
.p-teal .item__leader {
  border-color: rgba(251, 243, 225, 0.28);
}
.p-teal .group__label {
  color: var(--sun);
  border-color: rgba(240, 178, 46, 0.3);
}
.p-teal .group__note {
  color: var(--cream-soft);
}
.p-teal .section-footnote {
  color: var(--cream-soft);
}
.p-teal .badge {
  background: var(--sun);
  color: var(--teal-d);
}
.p-teal .hero-photo {
  border-color: var(--sun);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream-soft);
}
.p-teal .hero-ph-badge {
  background: var(--sun);
  color: var(--teal-d);
}
.p-teal .hero-ph-name {
  color: var(--cream);
}
.p-teal .qr-block {
  border-color: rgba(240, 178, 46, 0.35);
  background: rgba(240, 178, 46, 0.06);
}
.p-teal .qr-text-label {
  color: var(--sun);
}
.p-teal .qr-text-sub {
  color: var(--cream-soft);
}
.p-teal .item__name--list {
  color: var(--cream-soft);
}
.p-teal .item__size-price {
  color: var(--sun);
}

/* =========================================================
   FIESTA / NEON NOCTURNO
   ========================================================= */

.p-fiesta {
  background:
    radial-gradient(
      70% 50% at 18% 22%,
      rgba(255, 61, 168, 0.28) 0%,
      transparent 60%
    ),
    radial-gradient(
      70% 55% at 82% 78%,
      rgba(45, 226, 214, 0.22) 0%,
      transparent 60%
    ),
    radial-gradient(
      60% 45% at 50% 0%,
      rgba(182, 255, 60, 0.1) 0%,
      transparent 65%
    ),
    linear-gradient(160deg, var(--night) 0%, var(--night-2) 55%, #0a0717 100%);
  color: var(--cream-glow);
  --hole-clr: rgba(5, 3, 16, 0.85);
  --frame-clr: var(--neon-cyan);
}
.p-fiesta .burst {
  color: var(--neon-pink);
  opacity: 0.06;
}

.p-fiesta .section__frame,
.p-fiesta .section__frame::after {
  border-color: var(--neon-cyan);
  opacity: 0.55;
}
.p-fiesta .section__frame {
  box-shadow:
    0 0 14px rgba(45, 226, 214, 0.3),
    inset 0 0 14px rgba(45, 226, 214, 0.1);
}

.p-fiesta .section-eyebrow {
  color: var(--neon-cyan);
  text-shadow: 0 0 6px rgba(45, 226, 214, 0.6);
}
.p-fiesta .section-title {
  font-family: "Pacifico", cursive;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  text-shadow:
    0 0 2px #fff,
    0 0 10px var(--neon-pink),
    0 0 22px var(--neon-pink),
    0 0 44px rgba(255, 61, 168, 0.65);
}
.p-fiesta .section-subnote {
  color: var(--cream-glow);
  opacity: 0.78;
}
.p-fiesta .section-footnote {
  color: var(--neon-cyan);
  opacity: 0.7;
}

.p-fiesta .hero-photo {
  border-color: var(--neon-cyan);
  background: rgba(45, 226, 214, 0.06);
  color: var(--cream-glow);
  box-shadow:
    0 0 20px rgba(45, 226, 214, 0.22),
    inset 0 0 18px rgba(45, 226, 214, 0.08);
}
.p-fiesta .hero-ph-badge {
  background: var(--neon-pink);
  color: #fff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}
.p-fiesta .hero-ph-name {
  color: var(--neon-cyan);
  text-shadow:
    0 0 6px rgba(45, 226, 214, 0.7),
    0 0 16px rgba(45, 226, 214, 0.4);
}
.p-fiesta .item__tag {
  background: var(--neon-lime);
  color: #0e0a24;
}

/* Flavors chips — variantes de sabor destacadas visualmente */
.item__flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.item__flavor {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.p-coral .item__flavor {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.22);
}
.p-sun .item__flavor {
  background: rgba(62, 37, 22, 0.1);
  color: var(--teal-d);
  border-color: rgba(62, 37, 22, 0.2);
}
.p-teal .item__flavor {
  background: rgba(221, 90, 58, 0.1);
  color: var(--coral-d);
  border-color: rgba(221, 90, 58, 0.28);
}
.p-papel .item__flavor {
  background: rgba(221, 90, 58, 0.08);
  color: var(--coral-d);
  border-color: rgba(221, 90, 58, 0.22);
}
.p-fiesta .item__flavor {
  background: rgba(255, 43, 107, 0.15);
  color: var(--neon-cyan);
  border-color: rgba(45, 226, 214, 0.35);
  text-shadow: 0 0 4px rgba(45, 226, 214, 0.4);
}
/* Override defensivo para sección top-10 (fondo azul/teal profundo, coral no contrasta) */
#top-10 .item__flavor {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal-d);
  font-weight: 800;
}

.p-fiesta .deco img {
  filter: saturate(1.05) brightness(0.9)
    drop-shadow(0 0 8px rgba(255, 61, 168, 0.28))
    drop-shadow(0 0 18px rgba(45, 226, 214, 0.18));
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  .p-fiesta .section-title {
    animation: neon-flicker 5s ease-in-out infinite;
  }
  @keyframes neon-flicker {
    0%,
    47%,
    49%,
    71%,
    73%,
    100% {
      opacity: 1;
    }
    48% {
      opacity: 0.72;
    }
    72% {
      opacity: 0.55;
    }
  }
}

/* ---- Confetti — lucecitas neon ---- */
.confetti {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(circle 3px at 8% 12%, #ff3da8 99%, transparent),
    radial-gradient(circle 4px at 35% 18%, #ff3da8 99%, transparent),
    radial-gradient(circle 3px at 62% 92%, #ff3da8 99%, transparent),
    radial-gradient(circle 4px at 22% 28%, #2de2d6 99%, transparent),
    radial-gradient(circle 3px at 68% 22%, #2de2d6 99%, transparent),
    radial-gradient(circle 4px at 12% 78%, #2de2d6 99%, transparent),
    radial-gradient(circle 3px at 78% 84%, #2de2d6 99%, transparent),
    radial-gradient(circle 3px at 52% 9%, #b6ff3c 99%, transparent),
    radial-gradient(circle 4px at 80% 14%, #b6ff3c 99%, transparent),
    radial-gradient(circle 3px at 28% 88%, #b6ff3c 99%, transparent),
    radial-gradient(circle 4px at 88% 70%, #b6ff3c 99%, transparent),
    radial-gradient(circle 2px at 45% 35%, #fff 99%, transparent),
    radial-gradient(circle 2px at 72% 48%, #fff 99%, transparent),
    radial-gradient(circle 2px at 18% 55%, #fff 99%, transparent);
}
.p-fiesta .confetti::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px);
  opacity: 0.6;
}

/* ---- Tarjetas de paquete ---- */
.pkg-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.pkg-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid var(--neon-cyan);
  border-radius: 14px;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  page-break-inside: avoid;
  break-inside: avoid;
  box-shadow:
    0 0 0 1px rgba(45, 226, 214, 0.3),
    0 0 22px rgba(45, 226, 214, 0.32),
    inset 0 0 12px rgba(45, 226, 214, 0.1);
}
.pkg-card.featured {
  background: rgba(255, 61, 168, 0.06);
  border-color: var(--neon-pink);
  box-shadow:
    0 0 0 1px rgba(255, 61, 168, 0.45),
    0 0 28px rgba(255, 61, 168, 0.5),
    inset 0 0 14px rgba(255, 61, 168, 0.14);
}
.pkg-badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: transparent;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  rotate: 4deg;
  text-shadow: 0 0 4px rgba(255, 61, 168, 0.8);
  box-shadow:
    0 0 12px rgba(255, 61, 168, 0.4),
    inset 0 0 8px rgba(255, 61, 168, 0.15);
}
.pkg-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.3px;
}
.pkg-price {
  font-family: var(--ff-display);
  font-size: 24px;
  white-space: nowrap;
  color: var(--neon-lime);
  text-shadow:
    0 0 6px rgba(182, 255, 60, 0.55),
    0 0 14px rgba(182, 255, 60, 0.35);
}
.pkg-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neon-cyan);
  opacity: 0.85;
}
.pkg-includes {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pkg-includes li {
  font-size: 12.5px;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
  color: var(--cream-glow);
}
.pkg-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--neon-lime);
  font-weight: 900;
  text-shadow: 0 0 4px rgba(182, 255, 60, 0.6);
}
.pkg-cta {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--neon-pink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 30px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 14px rgba(255, 61, 168, 0.55),
    0 0 32px rgba(255, 61, 168, 0.3);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.pkg-cta:hover {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow:
    0 0 22px rgba(255, 61, 168, 0.75),
    0 0 48px rgba(255, 61, 168, 0.45);
}
.pkg-cta-print {
  display: none;
}

/* =========================================================
   COMPONENTES
   ========================================================= */

/* ---- Encabezado de sección ---- */
.section-header {
  text-align: center;
  margin-bottom: 38px;
}
.section-eyebrow {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-subnote {
  font-family: var(--ff-script);
  font-size: clamp(20px, 3.5vw, 30px);
  line-height: 0.9;
  margin-top: 4px;
}

/* ---- Layout side hero ---- */
.section__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.section__content {
  flex: 1;
  min-width: 0;
}

/* ---- Lista ---- */
.items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---- Ítem ---- */
.item__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}
.item__name {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  max-width: 55%;
}
.item__name--list {
  font-weight: 500;
  font-size: 12.5px;
  text-transform: none;
  letter-spacing: 0.02em;
  max-width: 100%;
  line-height: 1.6;
}
.item__leader {
  flex: 1;
  border-bottom: 2px dotted;
  opacity: 0.32;
  transform: translateY(-4px);
  min-width: 10px;
}
.item__price {
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.item__price--null {
  opacity: 0.55;
  font-style: italic;
}
.item__unit {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 3px;
  flex-shrink: 0;
}
.item__desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 96%;
}

/* ---- CTA card item (link a cumpleaños) ---- */
.item--cta {
  padding: 0;
  border: 2.5px solid var(--sun);
  border-radius: 12px;
  background: rgba(240, 178, 46, 0.08);
  margin: 10px 0 2px;
}
.item-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.item-cta__name {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--sun);
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}
.item-cta__desc {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.85;
}
.item-cta__btn {
  display: inline-flex;
  align-items: center;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 24px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.15s;
}
.item-cta__btn:hover {
  transform: translateY(-1px) rotate(-2deg);
}

/* ---- Badge sticker ladeado ---- */
.badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  transform: rotate(-5deg);
  vertical-align: middle;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Sello "NUEVO" (item nuevo en el menú rediseñado) ---- */
.stamp-new {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1.5px solid rgba(43, 21, 69, 0.45);
  border-radius: 30px;
  background: #fbbf24;
  color: #2b1545;
  transform: rotate(3deg);
  vertical-align: middle;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.stamp-new::before {
  content: "★";
  margin-right: 4px;
  font-size: 10px;
  letter-spacing: 0;
  vertical-align: -1px;
}

/* ---- Sizes ---- */
.item__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
.item__size-unit {
  font-size: 12px;
  font-weight: 600;
}
.item__size-price {
  font-family: var(--ff-display);
  font-size: 13px;
  margin-left: 5px;
}

/* ---- Grupos ---- */
.group + .group {
  margin-top: 48px;
  position: relative;
}
/* Línea decorativa horizontal antes de cada grupo subsecuente (refuerza la
   separación visual y evita que los clientes confundan a qué grupo pertenece
   un item) */
.group + .group::before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: currentColor;
  opacity: 0.18;
  border-radius: 2px;
}
.group__label {
  font-family: var(--ff-body);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 6px 0 8px;
  border-bottom: 2px solid;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Ornamento decorativo al inicio del label (ancla visual clara que indica
   "aquí empieza un grupo nuevo") */
.group__label::before {
  content: "✦";
  font-size: 12px;
  letter-spacing: 0;
  opacity: 0.88;
  flex-shrink: 0;
}
.group__note {
  font-size: 11.5px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  margin-top: -4px;
  margin-bottom: 14px;
  opacity: 0.78;
}

/* ---- Group header con precio uniforme ---- */
.group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  margin-bottom: 0;
}
.group-label {
  flex: 1;
  font-family: var(--ff-body);
  font-size: 14.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.group-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  font-weight: 800;
  vertical-align: 2px;
  opacity: 0.85;
}
.group-rule {
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  margin: 8px 0 16px;
}
.group-price {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: var(--coral-d);
}
.group-price em {
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 3px;
  opacity: 0.85;
  position: relative;
  top: -3px;
}
/* ========= Color de subheader según contraste del panel ========= */

/* Default + paneles claros: teal oscuro sobre cream/amarillo */
.group-label {
  color: var(--teal-d, #1f6657);
}
.p-papel .group-label,
.p-sun .group-label {
  color: var(--teal-d, #1f6657);
}

/* Paneles oscuros: amarillo sobre coral/teal */
.p-coral .group-label,
.p-teal .group-label {
  color: var(--sun, #f0b22e);
}

/* Panel fiesta: cyan brillante */
.p-fiesta .group-label {
  color: var(--neon-cyan, #2de2d6);
  text-shadow: 0 0 6px rgba(45, 226, 214, 0.4);
}

/* ========= .group-rule — contraste por panel ========= */

.p-coral .group-rule,
.p-teal .group-rule {
  background: var(--sun, #f0b22e);
  opacity: 0.45;
}
.p-fiesta .group-rule {
  background: var(--neon-cyan, #2de2d6);
  opacity: 0.55;
}

/* ========= .group-price — contraste por panel ========= */

.p-coral .group-price,
.p-teal .group-price {
  color: var(--sun, #f0b22e);
}
.p-fiesta .group-price {
  color: var(--neon-pink, #ff3da8);
  text-shadow: 0 0 6px rgba(255, 61, 168, 0.4);
}

@media (max-width: 480px) {
  .group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .group-label {
    font-size: 13px;
  }
  .group-price {
    font-size: 22px;
  }
}

/* ---- Pie de sección ---- */
.section-footnote {
  margin-top: 24px;
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.7;
  opacity: 0.75;
}

/* ---- Hero foto ---- */
.hero-photo {
  border: 3px dashed;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  overflow: hidden;
  text-align: center;
  padding: 28px 20px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 11px;
}
.hero-photo--has-image {
  border: none;
  padding: 0;
  background: none;
}
.hero-photo--cutout {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 0 0;
  overflow: visible;
  min-height: 0;
}
.hero-photo--cutout img {
  width: auto;
  height: auto;
  max-width: 480px;
  max-height: 320px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}
.hero-ph-badge {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 30px;
}
.hero-ph-name {
  font-family: var(--ff-script);
  font-size: 26px;
}
.hero-ph-cap {
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  opacity: 0.75;
}
.hero-photo--side {
  width: 260px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 300px;
}
.hero-photo--bottom {
  width: 100%;
  min-height: 218px;
  border-radius: 14px 14px 0 0;
  margin-top: 30px;
}

/* ---- QR block ---- */
.qr-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1.5px solid;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.qr-block:hover {
  opacity: 0.85;
}
.qr-box {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 8px;
  background: repeating-conic-gradient(#0a1c17 0 25%, #1d4636 0 50%) 50%/13px
    13px;
  border: 2px solid rgba(240, 178, 46, 0.5);
}
.qr-text-label {
  display: block;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 13px;
}
.qr-text-sub {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 3px;
  opacity: 0.75;
}

/* ---- Destilados ---- */
.section--destilados {
  padding-bottom: 0;
}
.section--destilados .section-footnote {
  text-align: left;
  margin-bottom: 22px;
  margin-top: 0;
}
.destilados-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}
.destilados-group {
  margin-bottom: 28px;
}
.destilados-group-label {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
  padding-bottom: 7px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid;
}

/* ---- Grupo destacado "Los más pedidos" ---- */
.destilados-group--featured {
  margin: 0 0 6px;
  padding: 22px 24px 18px;
  border: 2px solid var(--coral-d, #c2462b);
  border-radius: 12px;
  background: rgba(194, 70, 43, 0.04);
  box-shadow: 0 4px 18px rgba(62, 37, 22, 0.07);
}
.destilados-group--featured .destilados-group-label {
  font-family: var(--ff-display);
  font-size: clamp(22px, 4.5vw, 30px);
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--coral-d, #c2462b);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.destilados-group-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  vertical-align: middle;
  opacity: 0.95;
}

/* ---- Divisor entre featured y carta completa ---- */
.destilados-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 22px;
  opacity: 0.85;
}
.destilados-divider::before,
.destilados-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}
.destilados-divider span {
  font-family: var(--ff-body);
  font-size: 10.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.75;
}
.destilados-header-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.destilados-col-head {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  width: 64px;
  text-align: right;
}
.destilados-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.destilados-row:last-child {
  border-bottom: none;
}
.destilados-name {
  flex: 1;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13.5px;
  min-width: 0;
}
.destilados-price {
  font-family: var(--ff-display);
  font-size: 12px;
  width: 64px;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.destilados-bottom-pad {
  height: 80px;
}

/* ---- Animaciones ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section,
  .site-header {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .section__inner {
    padding: 0 22px 60px 44px;
  }
  .section__body {
    flex-direction: column;
  }
  .hero-photo--side {
    width: 100%;
    min-height: 190px;
    align-self: auto;
    order: -1;
  }
  .hero-photo--cutout img {
    max-width: 380px;
    max-height: 260px;
  }
  .destilados-cols {
    grid-template-columns: 1fr;
  }
  .item__name {
    font-size: 13px;
    max-width: 62%;
  }
}
@media (max-width: 480px) {
  .section__inner {
    /* 36px izq = hueco espiral · 30px der = 14px frame + 16px aire */
    padding: 0 30px 44px 36px;
  }
  .section-title {
    /* 7vw = ~26px en 375px. "HAMBURGUESAS" cabe sin salirse del marco */
    font-size: clamp(20px, 7vw, 32px);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
  .section-subnote {
    font-size: 15px;
  }
  .cover-title {
    font-size: clamp(68px, 22vw, 100px);
  }
  .item {
    gap: 5px;
  }
  .item__top {
    gap: 6px;
  }
  .item__top {
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .item__name {
    font-size: 12px;
    max-width: 100%;
    flex: 1 1 60%;
    min-width: 0;
  }
  .item__leader {
    min-width: 8px;
  }
  .item__price {
    font-size: 14px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .item__desc {
    font-size: 10.5px;
    max-width: 100%;
  }
  .hero-photo--cutout img {
    max-width: 82vw;
    max-height: 220px;
  }
  .nav-chip {
    font-size: 10px;
    padding: 4px 10px;
  }
  .badge {
    font-size: 8.5px;
    padding: 3px 8px;
    margin-left: 6px;
    letter-spacing: 0.12em;
  }
  .stamp-new {
    margin-left: 6px;
  }
  /* Tamaños (alitas/boneless): apilar en columna si no caben */
  .item__sizes {
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* ---- Spice / Tags / Pairing ---- */
.item__spice {
  font-size: 11px;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}
.item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.item__tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.14);
  color: inherit;
  opacity: 0.85;
  white-space: nowrap;
}
.p-coral .item__tag {
  background: rgba(0, 0, 0, 0.18);
  color: var(--cream);
}
.p-sun .item__tag {
  background: rgba(62, 37, 22, 0.14);
  color: var(--teal-d);
}
.p-teal .item__tag {
  background: rgba(255, 255, 255, 0.14);
  color: var(--cream);
}
.p-papel .item__tag {
  background: rgba(46, 125, 107, 0.14);
  color: var(--teal-d);
}

.item__pairing {
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 500;
  font-style: italic;
  opacity: 0.78;
  line-height: 1.4;
}
.item__pairing strong {
  font-style: normal;
  font-weight: 800;
}

/* ---- Tarjetas de salsas (alitas) ---- */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 680px) {
  .sauce-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.sauce-card {
  position: relative;
  padding: 16px 18px 18px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sauce-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sauce-card__icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.sauce-card__head-text {
  flex: 1;
  min-width: 0;
}
.sauce-card__title {
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 3px;
  line-height: 1.15;
}
.sauce-card__tagline {
  font-family: var(--ff-script, "Pacifico", cursive);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  opacity: 0.88;
}
.sauce-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sauce-chip {
  display: inline-block;
  padding: 5px 11px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.05);
}

/* Sobre paneles claros (papel/sun): fondo y borde ajustados */
.p-papel .sauce-card,
.p-sun .sauce-card {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(62, 37, 22, 0.35);
}
.p-papel .sauce-chip,
.p-sun .sauce-chip {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(62, 37, 22, 0.45);
}

/* Sobre paneles teal/coral: usar amarillo sun como acento */
.p-coral .sauce-card,
.p-teal .sauce-card {
  border-color: rgba(240, 178, 46, 0.55);
}
.p-coral .sauce-chip,
.p-teal .sauce-chip {
  background: rgba(240, 178, 46, 0.1);
  border-color: rgba(240, 178, 46, 0.55);
  color: var(--sun, #f0b22e);
}

/* ---- Sticker de porción (alcanza para X) ---- */
.item__portion {
  display: block;
  margin-top: 8px;
  max-width: 96%;
}
.item__portion span {
  display: inline-block;
  padding: 6px 11px 6px 10px;
  background: rgba(46, 125, 107, 0.09);
  border-left: 3px solid var(--teal-d, #2e7d6b);
  border-radius: 0 5px 5px 0;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--teal-d, #2e7d6b);
}
.item__portion span::before {
  content: "🍽️";
  margin-right: 7px;
  font-style: normal;
}
.p-fiesta .item__portion span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ---- Aviso de ahorro (valor regular / ahorras) ---- */
.item__savings {
  display: block;
  margin-top: 8px;
  max-width: 96%;
}
.item__savings span {
  display: inline-block;
  padding: 6px 11px 6px 10px;
  background: rgba(194, 70, 43, 0.08);
  border-left: 3px solid var(--coral-d, #c2462b);
  border-radius: 0 5px 5px 0;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
  color: var(--coral-d, #c2462b);
}
.item__savings span::before {
  content: "💰";
  margin-right: 7px;
  font-style: normal;
}
.p-fiesta .item__savings span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ---- Aviso de disponibilidad (horarios / restricciones) ---- */
.item__availability {
  display: block;
  margin-top: 8px;
  max-width: 96%;
}
.item__availability span {
  display: inline-block;
  padding: 6px 11px 6px 10px;
  background: rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--sun, #f0b22e);
  border-radius: 0 5px 5px 0;
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.45;
}
.item__availability span::before {
  content: "⏰";
  margin-right: 7px;
  font-style: normal;
}
.p-fiesta .item__availability span {
  background: rgba(255, 255, 255, 0.08);
}

/* ---- Descripciones más legibles en móvil (test) ---- */
@media (max-width: 680px) {
  .item__name {
    font-size: 15.5px;
    max-width: 62%;
    letter-spacing: 0.05em;
  }
  .item__desc {
    font-size: 12.5px;
    line-height: 1.55;
  }
  .item__name--list {
    font-size: 14px;
    line-height: 1.65;
  }
  .pkg-includes li {
    font-size: 14px;
    line-height: 1.5;
  }
  .item__pairing {
    font-size: 12px;
  }

  /* Layout móvil del row del item:
     todo en una sola línea: nombre + badges (compactos) + leader + precio.
     Para lograrlo en móvil, los badges se reducen y se fuerza nowrap. */
  .item__top {
    flex-wrap: nowrap;
    gap: 5px;
  }
  .item__name {
    order: 1;
    flex-shrink: 1;
    min-width: 0;
  }
  .item__spice {
    order: 2;
  }
  .badge {
    order: 3;
    margin-left: 0;
    font-size: 7.5px;
    padding: 2.5px 6px;
    letter-spacing: 0.1em;
    transform: rotate(-3deg);
  }
  .stamp-new {
    order: 4;
    margin-left: 5px;
    font-size: 7.5px;
    padding: 2px 6px;
    letter-spacing: 0.1em;
    transform: rotate(2deg);
  }
  .item__leader {
    order: 5;
    min-width: 6px;
  }
  .item__price,
  .item__price--null {
    order: 6;
  }
  .item__unit {
    order: 7;
  }
}

/* ---- Footer ---- */
.site-footer {
  background: #1a110a;
  color: var(--cream-soft);
  text-align: center;
  padding: 52px 24px 44px;
  border-top: 2px solid rgba(240, 178, 46, 0.18);
}
.footer-inner {
  max-width: 560px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--coral);
  text-shadow: 3px 3px 0 var(--sun);
  line-height: 1;
}
.footer-sub {
  font-family: var(--ff-script);
  font-size: 22px;
  color: var(--teal);
  margin-top: -4px;
  margin-bottom: 28px;
}
.footer-locations {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-loc__name {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 3px;
}
.footer-loc__addr {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.72;
}
.footer-divider {
  color: rgba(240, 178, 46, 0.3);
  font-size: 24px;
  padding-top: 4px;
  align-self: center;
}
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
  color: #25d366;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
  text-decoration: none;
}
.footer-tel-link:hover {
  opacity: 0.8;
}
.footer-reservar-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 28px;
  background: var(--coral);
  color: #fff;
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.footer-reservar-btn:hover {
  background: var(--coral-d);
  transform: translateY(-1px);
}
.footer-handle {
  font-weight: 700;
  font-size: 13px;
  color: var(--cream-soft);
  opacity: 0.65;
}
.footer-maps-link {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.2s;
  text-decoration: none;
  color: inherit;
}
.footer-maps-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-hours {
  font-size: 11px;
  font-weight: 700;
  color: var(--sun);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.footer-hours-detail {
  font-size: 10px;
  opacity: 0.55;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.5;
}
.footer-copy {
  font-size: 10px;
  opacity: 0.4;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- WhatsApp FAB ---- */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* ===== EXTRAS (grupo al pie de cada categoría de comida) ===== */
.extras {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed currentColor;
  opacity: 1;
}
.extras > .extras-top {
  text-align: center;
  margin-bottom: 10px;
}
.extras-label {
  font-family: "Pacifico", cursive;
  font-size: 26px;
  line-height: 1;
}
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  row-gap: 5px;
}
.extras-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.02em;
}
.extras-item .nm {
  font-weight: 700;
}
.extras-item .qty {
  font-style: italic;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
}
.extras-item .dot {
  flex: 1;
  border-bottom: 1px dotted currentColor;
  opacity: 0.28;
  transform: translateY(-3px);
}
.extras-item .pr {
  font-family: "Alfa Slab One", cursive;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.extras-item.featured {
  grid-column: 1 / -1;
  padding: 8px 12px;
  margin-bottom: 6px;
  border: 1.5px dashed currentColor;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}
.extras-item.featured .nm {
  font-size: 13px;
}
.extras-item.featured .qty {
  display: block;
  margin-left: 0;
  margin-top: 1px;
  font-size: 10.5px;
  opacity: 0.8;
}

.p-papel .extras-label {
  color: var(--coral-d);
}
.p-coral .extras-label {
  color: var(--sun);
}
.p-sun .extras-label {
  color: var(--coral-d);
}
.p-teal .extras-label {
  color: var(--sun);
}
.p-fiesta .extras-label {
  color: #fff;
  text-shadow:
    0 0 6px rgba(255, 61, 168, 0.55),
    0 0 14px rgba(255, 61, 168, 0.35);
}

.p-papel .extras {
  border-top-color: var(--coral);
}
.p-coral .extras {
  border-top-color: var(--sun);
}
.p-sun .extras {
  border-top-color: var(--coral);
}
.p-teal .extras {
  border-top-color: var(--sun);
}
.p-fiesta .extras {
  border-top-color: var(--neon-cyan);
  opacity: 0.85;
}

@media (max-width: 680px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .extras-label {
    font-size: 22px;
  }
}

/* ===== Portada & Contraportada ===== */
.page.cover,
.page.back-cover {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(40px, 8vw, 80px) clamp(28px, 6vw, 64px);
  display: flex;
  flex-direction: column;
}
.page.cover::before,
.page.back-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(240, 178, 46, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.cover-inner,
.back-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Portada */
.cover-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-self: flex-start;
}
.cover-greeting {
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 220px);
  line-height: 0.85;
  color: var(--coral-d);
  margin: clamp(60px, 12vw, 120px) 0 0 -0.02em;
  letter-spacing: -0.01em;
  align-self: flex-start;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}
.cover-subtitle {
  font-family: "Satisfy", cursive;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--teal-d);
  margin: 12px 0 0 clamp(8px, 2vw, 24px);
  align-self: flex-start;
  max-width: 80%;
}
.cover-tagline {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--ff-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: clamp(24px, 5vw, 48px);
  border-top: 1px solid currentColor;
  max-width: 70%;
  opacity: 0.9;
}
.deco.deco-cover-top {
  position: absolute;
  top: -40px;
  right: -40px;
  width: clamp(180px, 32vw, 360px);
  height: clamp(180px, 32vw, 360px);
  background: url("assets/motivos/cluster-main.png") no-repeat center / contain;
  z-index: 0;
  opacity: 0.92;
  transform: rotate(8deg);
}
.deco.deco-cover-bottom {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: clamp(140px, 24vw, 260px);
  height: clamp(140px, 24vw, 260px);
  background: url("assets/motivos/leaves-only.png") no-repeat center / contain;
  z-index: 0;
  opacity: 0.65;
  transform: rotate(-12deg) scaleX(-1);
}

/* Contraportada */
.back-top {
  margin-bottom: clamp(40px, 7vw, 72px);
}
.back-farewell {
  font-family: var(--ff-display);
  font-size: clamp(110px, 20vw, 200px);
  line-height: 0.85;
  color: var(--teal-d);
  margin: clamp(20px, 4vw, 40px) 0 0;
  letter-spacing: -0.01em;
}
.back-subtitle {
  font-family: "Satisfy", cursive;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--coral-d);
  margin: 8px 0 0 clamp(8px, 2vw, 24px);
}
.back-glossary {
  margin: clamp(20px, 4vw, 36px) 0;
  padding-top: 18px;
  border-top: 1px solid var(--ink-soft);
}
.gloss-label {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.gloss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  row-gap: 16px;
}
.gloss-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.18);
  padding-bottom: 10px;
}
.gloss-word {
  font-family: var(--ff-script);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
  color: var(--coral-d);
}
.gloss-meaning {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  opacity: 0.8;
}
.back-loyalty {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(20px, 4vw, 36px) 0;
  padding: 16px 0;
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}
.qr-wrap {
  width: clamp(86px, 12vw, 110px);
  height: clamp(86px, 12vw, 110px);
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  flex-shrink: 0;
}
.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--ink-soft);
  border-radius: 4px;
  opacity: 0.4;
}
.loyalty-copy {
  flex: 1;
}
.loyalty-caption {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1;
  color: var(--coral-d);
  letter-spacing: 0.3px;
}
.loyalty-sub {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 6px;
  opacity: 0.8;
}
.back-social {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: clamp(16px, 3vw, 28px) 0;
}
.soc-line {
  font-family: var(--ff-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.soc-handle {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1;
  color: var(--teal-d);
}
.soc-tag {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-style: italic;
  color: var(--ink);
  opacity: 0.8;
}
.back-closing {
  margin-top: auto;
  text-align: center;
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid var(--ink-soft);
}
.closing-word {
  font-family: var(--ff-script);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--coral-d);
}
.closing-sub {
  font-family: var(--ff-body);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 8px;
  opacity: 0.8;
}
.deco.deco-back-top {
  position: absolute;
  top: -50px;
  left: -50px;
  width: clamp(150px, 26vw, 280px);
  height: clamp(150px, 26vw, 280px);
  background: url("assets/motivos/cluster-plumeria.png") no-repeat center /
    contain;
  z-index: 0;
  opacity: 0.85;
  transform: rotate(-15deg);
}
.deco.deco-back-bottom {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: clamp(160px, 28vw, 300px);
  height: clamp(160px, 28vw, 300px);
  background: url("assets/motivos/strip-vertical.png") no-repeat center /
    contain;
  z-index: 0;
  opacity: 0.7;
  transform: rotate(20deg);
}

/* ---- Portada / Contraportada — móvil ---- */
@media (max-width: 520px) {
  /* Título ALOHA: de 120px mínimo → escala libre con vw */
  .cover-greeting {
    font-size: clamp(64px, 21vw, 120px);
    margin-top: 20px;
  }
  .cover-subtitle {
    font-size: 26px;
    margin-top: 8px;
  }
  .cover-tagline {
    font-size: 11px;
    padding-top: 14px;
  }

  /* Decos portada más pequeñas para no solapar el texto */
  .deco.deco-cover-top {
    width: 130px;
    height: 130px;
    top: -20px;
    right: -20px;
  }
  .deco.deco-cover-bottom {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
  }

  /* Título MAHALO: de 110px mínimo → escala libre con vw */
  .back-farewell {
    font-size: clamp(56px, 18vw, 110px);
    margin-top: 8px;
  }
  .back-subtitle {
    font-size: 20px;
    margin-top: 6px;
  }
  .back-top {
    margin-bottom: 16px;
  }

  /* Glosario compacto */
  .back-glossary {
    margin: 10px 0;
    padding-top: 12px;
  }
  .gloss-grid {
    row-gap: 10px;
    column-gap: 20px;
  }
  .gloss-word {
    font-size: 20px;
  }
  .gloss-meaning {
    font-size: 11px;
  }

  /* Loyalty compacta */
  .back-loyalty {
    margin: 10px 0;
    padding: 10px 0;
    gap: 12px;
  }
  .qr-wrap {
    width: 70px;
    height: 70px;
  }
  .loyalty-caption {
    font-size: 16px;
  }
  .loyalty-sub {
    font-size: 11px;
    margin-top: 4px;
  }

  /* Social compacto */
  .back-social {
    margin: 8px 0;
  }
  .soc-handle {
    font-size: 20px;
  }

  /* Cierre compacto */
  .back-closing {
    padding-top: 14px;
  }
  .closing-word {
    font-size: 34px;
  }
  .closing-sub {
    font-size: 10px;
    margin-top: 4px;
  }

  /* Decos contraportada */
  .deco.deco-back-top {
    width: 110px;
    height: 110px;
    top: -25px;
    left: -25px;
  }
  .deco.deco-back-bottom {
    width: 100px;
    height: 100px;
    bottom: -25px;
    right: -25px;
  }
}

/* ============================================
   BRANCH BANNER · Aviso de sucursal por sección
   Activado cuando una sección tiene `branchOnly`
   ============================================ */

.branch-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px auto 26px;
  max-width: 720px;
  padding: 16px 18px 18px 60px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--teal-d, #1f6657) 0%,
    var(--teal, #2e7d6b) 100%
  );
  color: #f8efd4;
  box-shadow:
    0 6px 18px rgba(31, 102, 87, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
  overflow: hidden;
}

.branch-banner::before {
  /* Cinta diagonal decorativa */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(240, 178, 46, 0.06) 14px,
    rgba(240, 178, 46, 0.06) 28px
  );
  z-index: -1;
}

.branch-banner__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sun, #f0b22e);
  color: var(--teal-d, #1f6657);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.branch-banner__body {
  flex: 1;
  min-width: 0;
}

.branch-banner__eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 2px;
  color: var(--sun, #f0b22e);
  opacity: 0.92;
}

.branch-banner__venue {
  font-family: "Alfa Slab One", serif;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin: 0 0 6px;
  color: #fff5d8;
}

.branch-banner__message {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.35;
  margin: 0;
  color: rgba(248, 239, 212, 0.92);
}

.branch-banner__address {
  display: inline-block;
  margin-left: 4px;
  font-weight: 600;
  color: rgba(255, 245, 216, 0.96);
}

.branch-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--sun, #f0b22e);
  color: var(--teal-d, #1f6657);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.branch-banner__cta:hover,
.branch-banner__cta:focus-visible {
  background: var(--sun-d, #e09a1e);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
}

.branch-banner__cta svg {
  opacity: 0.9;
}

/* Variante específica Coyoacán (por si en el futuro queremos colorear distinto otra sucursal) */
.branch-banner--coyoacan {
  /* hereda los estilos base, listo para personalizar si se necesita */
}

/* Adaptaciones móviles */
@media (max-width: 520px) {
  .branch-banner {
    flex-wrap: wrap;
    padding: 14px 14px 14px 54px;
    gap: 12px;
    margin: 14px auto 22px;
  }
  .branch-banner__icon {
    left: 12px;
    width: 30px;
    height: 30px;
  }
  .branch-banner__icon svg {
    width: 18px;
    height: 18px;
  }
  .branch-banner__venue {
    font-size: 15px;
  }
  .branch-banner__message {
    font-size: 12px;
  }
  .branch-banner__cta {
    flex: 1 1 100%;
    justify-content: center;
    padding: 10px 14px;
  }
}

/* ============================================
   CTA CARD · Card promo destacada dentro del menú
   Usada para llevar a subpáginas (ej. Cocina Coyoacán)
   ============================================ */

.section--cta {
  padding: 0 !important;
  background: transparent !important;
  --frame-clr: transparent;
  margin: 18px auto 28px;
}

.section--cta .section__frame,
.section--cta .section__frame::after,
.section--cta .burst,
.section--cta::after,
.section--cta::before {
  display: none !important;
}

.cta-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--sun, #f0b22e) 0%,
    var(--coral, #dd5a3a) 100%
  );
  color: var(--ink, #3e2516);
  box-shadow:
    0 18px 44px rgba(194, 70, 43, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 220px;
}

.cta-card__media {
  position: relative;
  overflow: hidden;
}

.cta-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.cta-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(240, 178, 46, 0) 70%,
    var(--sun, #f0b22e) 100%
  );
}

.cta-card__body {
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.cta-card__eyebrow {
  display: inline-block;
  width: max-content;
  margin: 0 0 4px;
  padding: 4px 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff5d8;
  background: var(--coral-d, #c2462b);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.cta-card__title {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(24px, 4.6vw, 32px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--coral-d, #c2462b);
  text-shadow: 2px 2px 0 rgba(255, 245, 216, 0.4);
}

.cta-card__subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0 0;
  color: var(--ink, #3e2516);
}

.cta-card__message {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  margin: 4px 0 0;
  color: var(--ink-soft, #7a5a41);
}

.cta-card__venue {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink, #3e2516);
}

.cta-card__venue svg {
  color: var(--coral-d, #c2462b);
  flex-shrink: 0;
}

.cta-card__addr {
  font-weight: 500;
  color: var(--ink-soft, #7a5a41);
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.cta-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--coral-d, #c2462b);
  color: #fff5d8;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 4px 12px rgba(62, 37, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.cta-card__btn:hover,
.cta-card__btn:focus-visible {
  background: var(--ink, #3e2516);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(62, 37, 22, 0.36);
}

.cta-card__btn svg {
  transition: transform 0.2s ease;
}

.cta-card__btn:hover svg {
  transform: translateX(3px);
}

.cta-card__maps {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral-d, #c2462b);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(194, 70, 43, 0.35);
  transition: color 0.15s ease;
}

.cta-card__maps:hover {
  color: var(--ink, #3e2516);
}

/* CTA card responsive: en móvil, imagen arriba (más corta) */
@media (max-width: 640px) {
  .cta-card {
    grid-template-columns: 1fr;
    grid-template-rows: 140px 1fr;
  }
  .cta-card__media-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(240, 178, 46, 0) 60%,
      var(--sun, #f0b22e) 100%
    );
  }
  .cta-card__body {
    padding: 18px 20px 22px;
  }
  .cta-card__title {
    font-size: 24px;
  }
}

/* En vista print, ocultamos el branch-banner y la CTA card (el menú impreso
   suele ser específico de una sucursal y la CTA no aplica) */
@media print {
  .branch-banner,
  .section--cta {
    display: none !important;
  }
}

/* ---- Print A5 real — mm + pt ---- */
@media print {
  /* === Hoja física A5 exacta === */
  @page {
    size: 148mm 210mm;
    margin: 0;
  }

  /* Forzar impresión de fondos de color */
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  html,
  body {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 148mm !important;
  }
  body {
    display: block !important;
    gap: 0 !important;
  }
  .hint,
  .label,
  nav,
  .menu-nav {
    display: none !important;
  }

  /* === La página al tamaño A5 real === */
  .page {
    width: 148mm !important;
    height: 210mm !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    page-break-after: always;
    overflow: hidden;
  }

  /* Adornos digitales que no aplican en físico */
  .holes {
    display: none !important;
  }
  .page::before {
    display: none !important;
  }
  .page::after {
    opacity: 0.35 !important;
  }

  /* Padding interior — 16mm izquierdo es el gutter para el espiral */
  .inner {
    padding: 12mm 12mm 10mm 16mm !important;
  }

  /* === Tipografía en pt === */
  .eyebrow {
    font-size: 7.5pt !important;
  }
  .cat {
    font-size: 24pt !important;
    line-height: 1 !important;
  }
  .script {
    font-size: 28pt !important;
  }
  .sub {
    font-size: 9pt !important;
  }
  .footnote {
    font-size: 6.5pt !important;
    letter-spacing: 0.14em !important;
  }

  /* Ítems del menú */
  .items {
    gap: 3.5mm !important;
    margin-top: 5mm !important;
  }
  .item .nm {
    font-size: 10.5pt !important;
    letter-spacing: 0.05em !important;
  }
  .item .pr {
    font-size: 10pt !important;
  }
  .item .desc {
    font-size: 7.5pt !important;
    line-height: 1.45 !important;
    margin-top: 0.8mm !important;
  }
  .item .sizes span {
    font-size: 7pt !important;
  }
  .item .sizes em {
    font-size: 8.5pt !important;
  }
  .tag {
    font-size: 6.5pt !important;
    padding: 2px 7px !important;
  }

  /* Paquetes (sección fiesta) */
  .pkg-grid {
    gap: 4mm !important;
    margin-top: 5mm !important;
  }
  .pkg-card {
    padding: 4mm 5mm !important;
    gap: 2mm !important;
  }
  .pkg-name {
    font-size: 13pt !important;
  }
  .pkg-price {
    font-size: 15pt !important;
  }
  .pkg-meta {
    font-size: 7.5pt !important;
  }
  .pkg-includes {
    gap: 1.2mm !important;
  }
  .pkg-includes li {
    font-size: 8pt !important;
    line-height: 1.4 !important;
    padding-left: 5mm !important;
  }
  .pkg-badge {
    font-size: 6.5pt !important;
    padding: 2px 8px !important;
  }
  .pkg-cta {
    display: none !important;
  }
  .pkg-cta-print {
    display: block !important;
    font-size: 8.5pt !important;
    margin-top: 2mm !important;
    font-weight: 800;
  }

  /* Portada */
  .cover .aloha {
    font-size: 56pt !important;
    line-height: 0.9 !important;
  }
  .cover .scriptbar {
    font-size: 24pt !important;
  }
  .cover .word {
    font-size: 8pt !important;
    margin-top: 4mm !important;
  }
  .cover .tag2 {
    font-size: 11pt !important;
    margin-top: 4mm !important;
  }
  .cover .handle {
    font-size: 7.5pt !important;
    margin-top: 6mm !important;
  }

  /* Hero placeholders */
  .hero--bottom {
    height: 50mm !important;
    margin: auto -12mm -10mm 0 !important;
    border-radius: 3mm 3mm 0 0 !important;
  }
  .hero--side {
    width: 50mm !important;
    right: -12mm !important;
    top: 0 !important;
    bottom: -10mm !important;
    border-radius: 3mm 0 0 0 !important;
  }
  .hero .nmph {
    font-size: 11pt !important;
  }
  .hero .ph {
    font-size: 6.5pt !important;
  }
  .hero .cap {
    font-size: 6.5pt !important;
  }

  /* Decoraciones tropicales */
  .deco-sm {
    width: 28mm !important;
  }
  .deco-md {
    width: 46mm !important;
  }
  .deco-lg {
    width: 64mm !important;
  }
  .deco-strip {
    width: 26mm !important;
  }
  .deco-tl {
    top: -6mm !important;
    left: -6mm !important;
  }
  .deco-tr {
    top: -6mm !important;
    right: -6mm !important;
  }
  .deco-bl {
    bottom: -6mm !important;
    left: -6mm !important;
  }
  .deco-br {
    bottom: -6mm !important;
    right: -6mm !important;
  }
  .deco-er {
    right: -8mm !important;
  }
  .deco-el {
    left: -8mm !important;
  }

  /* === Sección fiesta neon — limpiar glows === */
  .p-fiesta {
    background: #0e0a24 !important;
  }
  .p-fiesta *,
  .p-fiesta *::before,
  .p-fiesta *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .p-fiesta .cat {
    animation: none !important;
  }
  .p-fiesta .confetti {
    opacity: 0.35 !important;
  }
  .p-fiesta .confetti::after {
    display: none !important;
  }
  .p-fiesta .deco img {
    filter: none !important;
    opacity: 0.7 !important;
  }

  /* Group headers en impresión */
  .group-header {
    margin-top: 4mm !important;
    margin-bottom: 0 !important;
  }
  .group-label {
    font-size: 8.5pt !important;
    letter-spacing: 0.16em !important;
  }
  .group-price {
    font-size: 15pt !important;
  }
  .group-rule {
    margin: 1.5mm 0 3mm !important;
  }

  /* Contraste en paneles oscuros — print */
  .p-coral .group-label,
  .p-teal .group-label {
    color: var(--sun, #f0b22e) !important;
  }
  .p-coral .group-rule,
  .p-teal .group-rule {
    background: var(--sun, #f0b22e) !important;
  }
  .p-coral .group-price,
  .p-teal .group-price {
    color: var(--sun, #f0b22e) !important;
  }
}

/* ==============================
   ITEM PHOTO — silueta flotante para tragos hero
   Aprobado por Iván (Variante F preview) jul 2026:
   solo silueta con fondo transparente, drop-shadow limpio.
   ============================== */
.item--has-photo {
  position: relative;
  padding-right: 145px;
  overflow: visible;
}
.item__photo {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%) rotate(-5deg);
  width: 130px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 20px rgba(0, 184, 148, 0.18));
  z-index: 1;
  pointer-events: none;
}
/* Mobile: imagen un poco más chica para no comerse la descripción */
@media (max-width: 480px) {
  .item--has-photo {
    padding-right: 110px;
  }
  .item__photo {
    width: 100px;
    max-height: 130px;
    right: 4px;
  }
}
