/* ============================================================
   Design tokens — Chuck's Wings brand colors
   ============================================================ */
:root {
  --black: #000000;
  --near-black: #121212;
  --card-black: #171717;
  --red: #FF0000;
  --red-deep: #CC0000;
  --yellow: #FFED00;
  --yellow-deep: #E0D000;
  --white: #FFFFFF;
  --off-white: #F2F2F2;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);

  /* TITLE FONT: you asked for "Genty Sans," but that font isn't free/
     available on any font CDN — it's a paid/personal-use-only font.
     Using "Fredoka" (free, similar rounded/bold personality) as a
     stand-in. Once you own real Genty Sans font files, replace
     'Fredoka' below with 'Genty Sans' and add the font files —
     that's the only line that needs to change. */
  --font-display: 'Fredoka', sans-serif;
  /* BODY / SUBTITLE FONT: Playpen Sans Arabic — real, free, Google Fonts. */
  --font-body: 'Playpen Sans Arabic', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  border-bottom: 2px solid var(--red);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-brand img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}
.nav-brand span { color: var(--yellow); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; color: var(--yellow); }
.nav-order-btn {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1 !important;
}
.nav-order-btn:hover { background: var(--red-deep); color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 24px 24px;
    gap: 18px;
    border-bottom: 2px solid var(--red);
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 65%, rgba(0,0,0,1) 100%),
    url('images/hero.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 80px 0 92px;
}
.hero-logo {
  height: 168px;
  margin-bottom: 24px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.03;
  font-weight: 600;
  color: var(--white);
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
  max-width: 48ch;
  margin-top: 26px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); }
.btn-outline { border-color: var(--line-strong); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ============================================================
   Section shell
   ============================================================ */
.section { padding: 68px 0; border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 36px; }
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(26px, 4vw, 40px); color: var(--white); }

/* ============================================================
   Locations
   ============================================================ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.loc-card {
  border: 1px solid var(--line);
  padding: 22px;
  background: var(--card-black);
}
/* Flagship no longer gets special border treatment — all location cards match. */
.loc-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 10px;
}
.loc-name { font-size: 20px; margin-bottom: 8px; color: var(--white); }
.loc-addr { color: var(--muted); font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
.loc-phone-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.loc-phone-line:last-of-type { margin-bottom: 14px; }
.loc-phone-line a { color: var(--yellow); text-decoration: none; }
.loc-hours { margin-bottom: 16px; }
.loc-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--off-white);
  padding: 4px 0;
  border-top: 1px solid var(--line);
}
.loc-hours-row:first-child { border-top: none; }
.loc-hours-row span:last-child { color: var(--yellow); white-space: nowrap; }
.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.loc-actions a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  color: var(--white);
}
.loc-actions a.call { background: var(--red); border-color: var(--red); color: var(--white); }

/* ============================================================
   Hours strip
   ============================================================ */
.hours-strip {
  background: var(--near-black);
  border-bottom: 1px solid var(--line);
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--off-white);
}
.hours-row:last-child { border-right: none; }
.hours-row span:last-child { color: var(--yellow); }

/* ============================================================
   Order strip
   ============================================================ */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  color: var(--white);
}
.order-btn.primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.order-btn:hover { border-color: var(--red); color: var(--red); }
.order-btn.primary:hover { background: var(--yellow-deep); color: var(--black); }

/* ============================================================
   Specials chalkboard (signature element)
   ============================================================ */
.chalkboard {
  background: var(--near-black);
  border: 3px double var(--yellow);
  padding: 34px;
  color: var(--white);
  position: relative;
}
.chalkboard::before {
  content: "TODAY'S SPECIALS";
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  display: block;
  margin-bottom: 18px;
}
.chalkboard ul { list-style: none; margin: 0; padding: 0; }
.chalkboard li {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.chalkboard li:last-child { border-bottom: none; }
.chalkboard-price {
  color: var(--yellow);
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 15px;
}

/* ============================================================
   Menu
   ============================================================ */
.menu-controls {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.menu-search {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  background: var(--card-black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.menu-search::placeholder { color: var(--muted); }
.menu-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.chip.active { background: var(--red); border-color: var(--red); color: var(--white); }

.menu-category { margin-bottom: 40px; }
.menu-category h3 {
  font-size: 22px;
  color: var(--yellow);
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 10px;
}
.menu-category-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.01em;
  white-space: normal;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--white);
}
.menu-item-desc {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  white-space: normal;
}
.menu-item-leader {
  flex: 1;
  border-bottom: 2px dotted var(--line-strong);
  margin-bottom: 5px;
  min-width: 24px;
}
.menu-item-price {
  font-family: var(--font-mono);
  font-size: 15px;
  white-space: nowrap;
  color: var(--yellow);
}
.menu-item-price .price-label {
  font-size: 10px;
  color: var(--muted);
  margin-right: 3px;
}
.popular-flag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  background: var(--red);
  color: var(--white);
  padding: 2px 6px;
}
.menu-empty {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--muted);
  padding: 24px 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--muted);
  padding: 40px 0 32px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 32px; width: 32px; object-fit: contain; }
.footer a { color: var(--yellow); text-decoration: none; }
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
}
.footer-nav a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-nav a:hover { color: var(--yellow); }
.footer-nav a:not(#footer-faqs-link)::after {
  content: "•";
  margin: 0 10px;
  color: var(--line-strong);
}

/* ============================================================
   Install banner (PWA)
   ============================================================ */
.install-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 420px;
  margin: 0 auto;
  background: var(--near-black);
  color: var(--white);
  border: 1px solid var(--yellow);
  padding: 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 100;
  font-family: var(--font-body);
  font-size: 14px;
}
.install-banner.show { display: flex; }
.install-banner button {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.install-dismiss {
  background: none !important;
  color: var(--muted) !important;
  padding: 8px !important;
}

/* ============================================================
   Order-type / location gate modal
   ============================================================ */
.gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gate.show { display: flex; }
.gate-card {
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.gate-logo { height: 84px; margin: 0 auto 24px; }
.gate-title {
  color: var(--white);
  font-size: clamp(24px, 6vw, 32px);
  margin: 8px 0 28px;
}
.gate-skip {
  margin-top: 22px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.gate-skip:hover { color: var(--yellow); }

/* ============================================================
   Thank-you screen
   ============================================================ */
.thankyou-card { max-width: 480px; }
.thankyou-ref {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow);
  margin: -14px 0 18px;
}
.thankyou-next {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}
.thankyou-order-card {
  text-align: left;
  margin-bottom: 20px;
}
.thankyou-payment-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.thankyou-message {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--yellow);
  font-size: 15px;
  margin-bottom: 22px;
}
.thankyou-done-btn { width: 100%; text-align: center; }
.gate-locations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gate-location-btn {
  background: var(--card-black);
  border: 2px solid var(--line-strong);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.gate-location-btn strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.03em;
}
.gate-location-btn span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.gate-location-btn:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ============================================================
   Location pill (nav)
   ============================================================ */
.location-pill {
  background: var(--near-black);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.location-pill:hover { background: var(--yellow); color: var(--black); }

/* ============================================================
   About page
   ============================================================ */
.about-body {
  max-width: 78ch;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.about-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--off-white);
}
.about-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--red);
  float: left;
  line-height: 0.8;
  margin: 6px 8px 0 0;
}
.about-intro {
  font-style: italic;
  color: var(--yellow) !important;
  font-size: 19px !important;
}
.about-section-heading {
  font-size: 22px;
  color: var(--yellow);
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
  margin-top: 12px;
}

/* ============================================================
   Menu location note
   ============================================================ */
.menu-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--yellow);
  border-left: 3px solid var(--red);
  padding: 8px 14px;
  margin-bottom: 24px;
  background: var(--card-black);
}

/* ============================================================
   Location card: selected state + inline "order from here"
   ============================================================ */
.loc-card.selected { border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.loc-select-btn {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--yellow);
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
}
.loc-select-btn:hover { background: var(--yellow); color: var(--black); }

/* ============================================================
   Premium touches: hover lifts, glow, decorative flame, reveal
   ============================================================ */
.loc-card, .order-btn, .chalkboard, .chip {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(255,0,0,0.18); }
.order-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255,237,0,0.15); }
.chalkboard:hover { box-shadow: 0 0 30px rgba(255,237,0,0.12); }
.menu-item { transition: background 0.2s ease, padding-left 0.2s ease; }
.menu-item:hover { background: rgba(255,0,0,0.06); padding-left: 8px; }
.btn-primary {
  animation: glow-pulse 3.2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255,237,0,0); }
  50% { box-shadow: 0 0 22px rgba(255,237,0,0.45); }
}

.hero { position: relative; overflow: hidden; }
@media (max-width: 820px) {
  .hero-logo { height: 128px; }
}

.fade-in {
  animation: fadeInUp 0.75s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
/* This runs automatically on page load — it does NOT depend on
   JavaScript, scrolling, or any observer. Content is guaranteed to
   end up fully visible even if something else on the page errors. */
@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  .btn-primary { animation: none !important; }
}

/* ============================================================
   Cart button (nav) + badge
   ============================================================ */
.cart-btn {
  position: relative;
  background: var(--near-black);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.cart-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.account-btn {
  background: var(--near-black);
  border: 1px solid var(--line-strong);
  color: var(--white);
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.account-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.account-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 999px;
  text-align: center;
  margin-left: 6px;
  padding: 0 4px;
}

/* ============================================================
   Cart drawer
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 210;
  display: none;
  justify-content: flex-end;
}
.cart-overlay.show { display: flex; }
.cart-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--near-black);
  border-left: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cart-header h2 {
  font-size: 22px;
  color: var(--white);
}
.cart-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.cart-close:hover { color: var(--red); }
.cart-location-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 18px;
}
.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cart-empty {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--muted);
  padding: 24px 0;
  text-align: center;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--white);
}
.cart-item-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 26px;
  height: 26px;
  background: var(--card-black);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
}
.cart-qty-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.cart-qty-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--white);
  min-width: 16px;
  text-align: center;
}
.cart-item-line-total {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow);
  min-width: 54px;
  text-align: right;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 0 2px;
}
.cart-remove-btn:hover { color: var(--red); }
.cart-footer { border-top: 1px solid var(--line); padding-top: 16px; }
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.cart-disclaimer {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cart-actions { display: flex; flex-direction: column; gap: 10px; }
.cart-actions .btn { text-align: center; }
.cart-summary-text {
  width: 100%;
  margin-top: 12px;
  background: var(--card-black);
  color: var(--off-white);
  border: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px;
  min-height: 120px;
  resize: vertical;
}
.cart-clear-btn {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.cart-clear-btn:hover { color: var(--red); }

/* ============================================================
   Account panel — guest "Order Again"
   ============================================================ */
.account-guest-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}
.account-empty {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--muted);
  text-align: center;
  padding: 32px 0;
}
.account-order-card {
  border: 1px solid var(--line-strong);
  background: var(--card-black);
  padding: 18px;
}
.account-order-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.account-order-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}
.account-order-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.account-order-item-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--off-white);
}
.account-order-item-row span:last-child { color: var(--yellow); font-family: var(--font-mono); white-space: nowrap; }
.account-order-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}
.account-forget-btn {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.account-forget-btn:hover { color: var(--red); }

/* ============================================================
   "+" add-to-cart buttons on menu items
   ============================================================ */
.menu-item { flex-wrap: wrap; }
.menu-item-add {
  background: var(--card-black);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  cursor: pointer;
  margin-left: 6px;
  white-space: nowrap;
}
.menu-item-add:hover { background: var(--yellow); color: var(--black); }
.menu-item-add.added { border-color: var(--red); color: var(--red); }

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

  /* Menu rows: name gets its own full-width line so long names wrap
     cleanly; price and its Add button(s) flow together right after
     it on the next line, instead of each button stacking alone. */
  .menu-item { align-items: center; }
  .menu-item-leader { display: none; }
  .menu-item-name { flex: 1 0 100%; font-size: 15.5px; }

  /* Bigger touch targets for small cart controls (was 26px, hard to tap accurately). */
  .cart-qty-btn { width: 34px; height: 34px; font-size: 16px; }
  .cart-remove-btn { font-size: 20px; padding: 6px; }
  .menu-item-add { padding: 6px 10px; font-size: 12px; }

  /* Cart rows: name above controls instead of squeezed side-by-side. */
  .cart-item { flex-direction: column; gap: 10px; }
  .cart-item-controls { width: 100%; justify-content: space-between; }

  /* Today's Specials chalkboard: less padding, smaller text so the
     longer promo line wraps cleanly instead of eating the screen. */
  .chalkboard { padding: 20px 16px; }
  .chalkboard li { font-size: 15.5px; line-height: 1.4; }
  .chalkboard::before { font-size: 11px; }
}
