:root {
  --bg: #0a0605;
  --panel: #1a0f0d;
  --card: #261512;
  --text: #fff8f2;
  --muted: #ffd8c4;
  --accent: #ff2c20;
  --accent-bright: #ff6b4a;
  --accent-2: #7ee85c;
  --accent-2-deep: #3da62a;
  --accent-3: #e8a85c;
  --pop-yellow: #ffe14a;
  --border: #5c2e22;
  --glow-red: rgba(255, 44, 32, 0.55);
  --glow-green: rgba(126, 232, 92, 0.4);
  --menu-paper: #fdf6ed;
  --menu-ink: #1c100c;
  --menu-ink-muted: #5c4338;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body.menu-app {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 60% at 50% -15%, rgba(255, 44, 32, 0.28), transparent 58%),
    radial-gradient(ellipse 70% 45% at 100% 30%, rgba(126, 232, 92, 0.08), transparent 42%),
    linear-gradient(180deg, #0f0806 0%, #0a0605 50%, #120a08 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-app h1,
body.menu-app h2,
body.menu-app h3 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

body.menu-app a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Happy Hour promo (match main site) */
.promo-banner {
  background: linear-gradient(95deg, #2a0a08 0%, #4a1510 35%, #1a3d12 100%);
  border-bottom: 2px solid rgba(255, 225, 74, 0.55);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 199;
}

.promo-banner[hidden] {
  display: none !important;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.promo-banner-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.promo-banner-badge {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pop-yellow);
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(255, 225, 74, 0.4);
}

.promo-banner-text {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
}

.promo-banner-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.promo-banner-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--accent-2);
  transform: scale(1.05);
}

/* Header (match site) */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.95), rgba(26, 15, 13, 0.9));
  border-bottom: 1px solid rgba(232, 168, 92, 0.35);
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px var(--glow-red));
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.55rem 0.85rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-list a {
  position: relative;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
  color: rgba(255, 248, 242, 0.88);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--pop-yellow));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-list a:hover {
  color: var(--accent-2);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a.nav-active {
  color: var(--pop-yellow);
}

.nav-list a.nav-active::after {
  width: 100%;
}

.lang-toggle {
  border: 2px solid var(--accent-2);
  background: linear-gradient(145deg, #2a1814, #3d2520);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 18px var(--glow-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 0 28px var(--glow-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-buttons {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.social-buttons--footer {
  margin-top: 0.65rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(38, 21, 18, 0.95), rgba(26, 15, 13, 0.98));
  border: 1px solid rgba(232, 168, 92, 0.35);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 232, 92, 0.55);
  color: var(--accent-2);
}

.social-tiktok:hover {
  color: #69c9d0;
}

.social-facebook:hover {
  color: #8b9ff5;
}

.social-instagram:hover {
  color: #ff7bc5;
}

.footer-contact .social-buttons {
  justify-content: flex-start;
}

/* Hero */
.menu-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.menu-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 44, 32, 0.2), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(126, 232, 92, 0.12), transparent 45%);
  pointer-events: none;
}

.menu-hero-inner {
  position: relative;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.menu-hero-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.65rem;
}

.menu-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-shadow: 0 0 40px var(--glow-red);
  margin-bottom: 0.5rem;
}

.menu-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.menu-hero-disclaimer {
  font-size: 0.88rem;
  color: rgba(255, 216, 196, 0.82);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.menu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c41810 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 44, 32, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 44, 32, 0.5);
}

.btn-outline {
  background: rgba(38, 21, 18, 0.85);
  border-color: rgba(232, 168, 92, 0.5);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

/* Sticky category nav */
.menu-toolbar-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 150;
  padding: 0.65rem 0 1rem;
  background: linear-gradient(180deg, rgba(10, 6, 5, 0.97), rgba(10, 6, 5, 0.88) 70%, transparent);
  border-bottom: 1px solid rgba(92, 46, 34, 0.35);
  backdrop-filter: blur(10px);
}

.menu-cat-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.menu-cat-nav-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 216, 196, 0.65);
  flex-shrink: 0;
}

.menu-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.menu-cat-pill {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(38, 21, 18, 0.92);
  border: 1px solid rgba(255, 107, 74, 0.25);
  color: rgba(255, 248, 242, 0.92);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.menu-cat-pill:hover {
  border-color: rgba(126, 232, 92, 0.45);
  color: var(--accent-2);
}

.menu-cat-pill.is-active {
  background: linear-gradient(145deg, rgba(255, 44, 32, 0.35), rgba(38, 21, 18, 0.98));
  border-color: rgba(255, 225, 74, 0.55);
  color: var(--pop-yellow);
}

/* Menu board — “paper” panels */
.menu-board-wrap {
  padding-bottom: 3.5rem;
}

.menu-root {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.menu-loading,
.menu-error {
  text-align: center;
  padding: 3rem 1rem;
  font-weight: 700;
  color: var(--muted);
}

.menu-error {
  color: var(--accent-bright);
}

.menu-sheet {
  background: linear-gradient(165deg, var(--menu-paper) 0%, #f5e8d8 100%);
  color: var(--menu-ink);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  box-shadow:
    0 4px 0 rgba(28, 16, 12, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 16, 12, 0.08);
  scroll-margin-top: calc(var(--header-h) + 100px);
}

.menu-sheet-head {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(92, 67, 56, 0.2);
}

.menu-sheet-title {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--menu-ink);
  letter-spacing: -0.02em;
  margin: 0;
}

.menu-sheet-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--menu-ink-muted);
  margin: 0.5rem 0 0;
  line-height: 1.45;
  max-width: 42rem;
  margin-inline: auto;
}

.menu-grid {
  display: grid;
  gap: 0.35rem 1.5rem;
}

@media (min-width: 720px) {
  .menu-sheet--wide .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.48rem 0;
  border-bottom: 1px dotted rgba(92, 67, 56, 0.22);
}

.menu-row:last-child {
  border-bottom: none;
}

.menu-row-name {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
}

.menu-row-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #b83228;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-row-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--menu-ink-muted);
  margin-top: 0.2rem;
}

/* Footer */
.site-footer.menu-footer {
  margin-top: 0;
  padding: 2rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(26, 15, 13, 0.95));
  border-top: 1px solid rgba(92, 46, 34, 0.4);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-owner-link {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer-owner-link a {
  color: rgba(255, 216, 196, 0.7);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-owner-link a:hover {
  color: #ff6b4a;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 216, 196, 0.65);
  margin: 1.25rem 0 0;
}

@media print {
  body.menu-app {
    background: #fff;
    color: #000;
  }

  .site-header,
  .menu-toolbar-wrap,
  .menu-hero-actions,
  .lang-toggle {
    display: none !important;
  }

  .menu-hero {
    padding: 1rem 0;
  }

  .menu-hero-title,
  .menu-hero-sub,
  .menu-hero-disclaimer {
    color: #000;
  }

  .menu-sheet {
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
    border: 1px solid #ccc;
  }

  .menu-row-price {
    color: #000;
  }
}
