/* =========================================================
   Los Vegueros · Cuban Style Food
   Mobile-first, dark, warm tropical Cuban aesthetic
   ========================================================= */

:root {
  --bg:           #0a0a0a;
  --panel:        #161616;
  --panel-2:      #1f1f1f;
  --red:          #E63946;
  --red-dark:     #c4202d;
  --yellow:       #FFB627;
  --yellow-dark:  #e69a00;
  --green:        #52B788;
  --cream:        #F5E9D7;
  --white:        #FFFFFF;
  --muted:        #A8A8A8;
  --border:       #2a2a2a;

  --radius:       12px;
  --radius-lg:    18px;
  --shadow:       0 10px 30px rgba(0,0,0,.45);
  --shadow-lift:  0 14px 40px rgba(230, 57, 70, .25);

  --ff-display:   "Anton", "Bebas Neue", "Inter", system-ui, sans-serif;
  --ff-body:      "Inter", "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-script:    "Caveat", "Permanent Marker", cursive;

  --nav-h:        64px;
  --tap:          48px;
}

* { box-sizing: border-box; }

/* The HTML [hidden] attribute must always win over class-based display rules
   (e.g. `.modal { display: flex }`), otherwise elements marked hidden in
   markup still render. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--yellow-dark); }

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

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

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: .02em;
  margin: 0 0 .3em 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-script {
  font-family: var(--ff-script);
  color: var(--yellow);
  font-size: 1.6rem;
  margin: 0 0 1.2rem 0;
  text-transform: none;
  letter-spacing: 0;
}

/* =================== BUTTONS =================== */

.btn-primary,
.btn-secondary,
.btn-call,
.btn-ghost,
.btn-ghost-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: var(--tap);
  padding: .8rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); color: var(--white); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--yellow);
  color: #1a1100;
}
.btn-secondary:hover { background: var(--yellow-dark); transform: translateY(-1px); color: #1a1100; }

.btn-call {
  background: var(--green);
  color: #06301d;
  padding: .55rem 1rem;
  font-size: .95rem;
}
.btn-call:hover { background: #3fa478; color: #06301d; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: .55rem .8rem;
  min-height: 44px;
  font-size: .9rem;
  font-weight: 600;
}
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-ghost-block {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  width: 100%;
  margin-top: .6rem;
}
.btn-ghost-block:hover { color: var(--white); border-color: var(--white); }

.btn-big { width: 100%; padding: 1rem 1.25rem; font-size: 1.05rem; }

.btn-icon {
  background: transparent;
  border: 0;
  color: var(--white);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.btn-icon:hover { background: rgba(255,255,255,.08); }

/* =================== NAV =================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10,10,10,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--white);
}
.logo:hover { color: var(--white); }

.logo-mark {
  width: 38px; height: 38px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: 1px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1);
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--ff-display); font-size: 1.15rem; letter-spacing: .04em; }
.logo-tag  { font-family: var(--ff-script); color: var(--yellow); font-size: .9rem; margin-top: 2px; }

.nav-actions { display: flex; align-items: center; gap: .5rem; }

.cart-btn { position: relative; padding: .45rem .65rem; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: #1a1100;
  font-weight: 800;
  font-size: .72rem;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px var(--bg);
}

/* =================== HERO =================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem 3.5rem;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(255,182,39,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(230,57,70,.14), transparent 60%),
    linear-gradient(180deg, #0a0a0a, #0e0e0e);
  border-bottom: 1px solid var(--border);
}

/* Subtle Cuban-flag inspired stripe accent */
.hero-stripes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, 1fr);
  opacity: .06;
  pointer-events: none;
}
.hero-stripes span:nth-child(odd)  { background: var(--red); }
.hero-stripes span:nth-child(even) { background: transparent; }

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .75rem;
  color: var(--cream);
  margin: 0 0 .8rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 13vw, 7rem);
  line-height: .95;
  margin: 0;
  color: var(--white);
  text-shadow: 0 0 24px rgba(230,57,70,.25);
}

.hero-script {
  font-family: var(--ff-script);
  color: var(--yellow);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin: .2rem 0 1.2rem;
}

.hero-sub {
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 1.8rem;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  color: var(--muted);
  font-size: .92rem;
}
.hero-meta strong { color: var(--white); font-weight: 700; }

/* =================== SECTIONS / MENU =================== */

.menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem 1.5rem;
}

.section-head { text-align: center; margin-bottom: 1.5rem; }
.section-head h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
}

/* Tabs */
.tabs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .25rem .25rem .75rem;
  margin: 0 -.25rem 1.5rem;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  flex: 0 0 auto;
  min-height: var(--tap);
  padding: .65rem 1.1rem;
  background: var(--panel);
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
}
.tab:hover { color: var(--white); border-color: var(--yellow); }
.tab.is-active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 6px 18px rgba(230,57,70,.35);
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

.item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  opacity: 0;
  transform: translateY(10px);
}
.item.is-visible { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.item:hover { transform: translateY(-2px) scale(1.02); border-color: rgba(255,182,39,.4); box-shadow: var(--shadow); }

.item-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  /* Card-matching backdrop so any letterboxing from object-fit:contain blends in */
  background: var(--panel);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-photo img {
  width: 100%;
  height: 100%;
  /* These are promo images with edge text (badges, brand marks) — never crop */
  object-fit: contain;
  object-position: center;
  display: block;
}
.item-photo .photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-script);
  color: var(--cream);
  opacity: .35;
  font-size: 1.4rem;
  text-align: center;
  padding: 1rem;
}
/* Price pill now lives in the card footer (bottom-left). Inline pill — no
   absolute positioning, no overlap with promo photos. */
.price-pill {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #1a1100;
  font-weight: 800;
  font-size: .95rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  line-height: 1;
  white-space: nowrap;
}
.item-photo .drink-flag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(82,183,136,.95);
  color: #06301d;
  font-weight: 700;
  font-size: .72rem;
  padding: .25rem .55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.item-body {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.item-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1.1;
}
.item-desc { color: var(--muted); font-size: .88rem; margin: 0; }

/* Footer row: price-pill on the left, + button on the right.
   `gap` guarantees breathing room so they never overlap on narrow cards. */
.item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem 1rem;
}
.add-btn {
  background: var(--red);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(230,57,70,.4);
  transition: transform .15s ease, background .2s ease;
}
.add-btn:hover { background: var(--red-dark); transform: scale(1.08); }

/* =================== FIND US =================== */

.find {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1rem;
}

.find-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) { .find-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.find-text h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.find-address { font-style: normal; font-size: 1.1rem; color: var(--cream); margin-bottom: 1rem; }
.find-list { list-style: none; padding: 0; margin: 0 0 1.2rem 0; color: var(--cream); }
.find-list li { padding: .35rem 0; border-bottom: 1px dashed var(--border); }
.find-list li:last-child { border-bottom: 0; }

.find-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: #000;
}
.find-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* =================== DELIVERY =================== */

.delivery {
  padding: 3rem 1rem;
  background:
    linear-gradient(180deg, #0a0a0a, #0d0d0d);
}
.delivery-inner { max-width: 1024px; margin: 0 auto; text-align: center; }
.delivery-inner h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); color: var(--white); }
.delivery-inner > p { color: var(--cream); margin: 0 0 1.5rem; }

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 560px) { .delivery-grid { grid-template-columns: repeat(3, 1fr); } }

.delivery-card {
  background: var(--panel);
  border: 1px dashed var(--border);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: .35rem; align-items: center;
  opacity: .8;
}
.delivery-name { font-family: var(--ff-display); font-size: 1.4rem; color: var(--white); letter-spacing: .04em; }
.delivery-soon { font-size: .8rem; color: var(--yellow); text-transform: uppercase; letter-spacing: .2em; }

/* =================== FOOTER =================== */

.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1rem 1.5rem;
  color: var(--cream);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: repeat(5, 1fr); } }

.footer h3 { font-size: 1.6rem; color: var(--white); }
.footer h4 { font-size: 1rem; color: var(--yellow); letter-spacing: .15em; }
.footer p { margin: .25rem 0; font-size: .92rem; }
.footer a { color: var(--cream); }
.footer a:hover { color: var(--yellow); }

.socials { display: flex; gap: .5rem; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: var(--cream);
  letter-spacing: .04em;
}
.socials a:hover { background: var(--yellow); color: #1a1100; border-color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}
.footer-credit { font-family: var(--ff-script); color: var(--yellow); font-size: 1rem; margin-top: .25rem; }

/* =================== CART PANEL =================== */

.cart-panel {
  position: fixed;
  z-index: 50;
  background: var(--panel);
  color: var(--white);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  /* mobile: full-screen slide-up */
  inset: 0;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cart-panel.is-open { transform: translateY(0); }

@media (min-width: 1024px) {
  .cart-panel {
    inset: auto;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 100%);
    transform: translateX(100%);
    border-left: 1px solid var(--border);
  }
  .cart-panel.is-open { transform: translateX(0); }
}

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1rem .75rem;
  border-bottom: 1px solid var(--border);
}
.cart-head h2 { margin: 0; font-size: 1.6rem; }

.cart-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  color: var(--muted);
}
.cart-empty p { font-size: 1.05rem; margin: 0; }

.cart-body { padding: 1rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 1rem; }

.cart-items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: .75rem;
  padding: .5rem;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
}
.cart-thumb {
  width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
  background: #2a1a10; display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-script); color: var(--cream); opacity: .9; font-size: .9rem;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-name { font-family: var(--ff-display); font-size: 1rem; letter-spacing: .02em; color: var(--white); }
.cart-drink { color: var(--muted); font-size: .8rem; }
.cart-line-total { font-weight: 700; color: var(--yellow); font-size: .92rem; }

.qty {
  display: inline-flex; align-items: center; gap: .25rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px;
}
.qty button {
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}
.qty button:hover { background: rgba(255,255,255,.08); }
.qty .qty-val { min-width: 22px; text-align: center; font-weight: 700; }

.cart-remove {
  background: transparent; border: 0; color: var(--muted);
  width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.cart-remove:hover { color: var(--red); background: rgba(230,57,70,.08); }

.cart-actions { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; }

.cart-notes-label { color: var(--cream); font-weight: 600; font-size: .9rem; }
.cart-notes {
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: .7rem;
  font-family: inherit;
  font-size: .95rem;
  resize: vertical;
}
.cart-notes:focus { border-color: var(--yellow); }

.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--border);
  padding-top: .8rem;
  font-size: 1rem;
}
.cart-total-row strong { font-family: var(--ff-display); font-size: 1.6rem; color: var(--yellow); }

/* Checkout */
.checkout { padding: 1rem; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: .85rem; }
.checkout h3 { font-size: 1.4rem; }

.checkout label { display: flex; flex-direction: column; gap: .35rem; font-size: .9rem; color: var(--cream); }
.checkout input, .checkout select {
  font-family: inherit;
  font-size: 1rem;
  padding: .75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel-2);
  color: var(--white);
  min-height: var(--tap);
}
.checkout input:focus, .checkout select:focus { border-color: var(--yellow); outline: 0; }
.checkout .hint { color: var(--muted); font-size: .8rem; }

.check-row { flex-direction: row !important; align-items: center; gap: .6rem; }
.check-row input { min-height: auto; width: 18px; height: 18px; accent-color: var(--green); }

.pay-notice {
  background: rgba(82,183,136,.12);
  color: var(--green);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(82,183,136,.3);
  font-weight: 600;
  text-align: center;
}

.form-error { color: var(--red); font-weight: 600; text-align: center; }

/* Confirmation */
.confirmation {
  padding: 2rem 1.25rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}
.confirm-check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--green);
  color: #06301d;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 900; line-height: 1;
  margin-bottom: .5rem;
  box-shadow: 0 10px 30px rgba(82,183,136,.35);
}
.confirm-order { font-family: var(--ff-display); font-size: 1.4rem; color: var(--yellow); margin: 0; }
.confirm-summary {
  text-align: left;
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--cream);
  white-space: pre-wrap;
}
.confirm-info { color: var(--cream); margin: .5rem 0; }
.confirm-note { color: var(--green); font-weight: 600; }

/* Backdrop */
.backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 49;
  opacity: 0;
  transition: opacity .25s ease;
}
.backdrop.is-open { opacity: 1; }

/* =================== DRINK MODAL =================== */

.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 60;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
}
@media (min-width: 600px) {
  .modal { align-items: center; padding: 1rem; }
}

.modal-box {
  position: relative;
  background: var(--panel);
  color: var(--white);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 600px) { .modal-box { border-radius: var(--radius-lg); } }

.modal-close { position: absolute; top: .5rem; right: .5rem; }

.drink-sub { color: var(--muted); margin: 0; font-size: .92rem; }

.drink-options { display: flex; flex-direction: column; gap: .65rem; }

.drink-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel-2);
  overflow: hidden;
}
.drink-group.is-open { border-color: var(--yellow); }
.drink-group-head {
  width: 100%;
  background: transparent;
  color: var(--white);
  border: 0;
  text-align: left;
  padding: .85rem 1rem;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700;
}
.drink-group-head .price-add { color: var(--yellow); font-weight: 800; font-size: .85rem; }
.drink-group-body { padding: .25rem 1rem 1rem; display: none; }
.drink-group.is-open .drink-group-body { display: block; }

.drink-opt {
  display: flex; align-items: center; gap: .65rem;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--border);
  color: var(--cream);
  font-size: .95rem;
  cursor: pointer;
}
.drink-opt:last-child { border-bottom: 0; }
.drink-opt input { accent-color: var(--red); width: 18px; height: 18px; }

/* =================== UTILITIES =================== */

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

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .item { opacity: 1; transform: none; }
}

/* Paper texture overlay reserved for cream sections (subtle) */
.paper {
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.025) 1px, transparent 1px);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}
