/* =========================================================
   REI LANCHES — Estilo
   Paleta baseada na logo do trailer: preto, dourado, branco,
   vermelho/rosa neon. Tipografia grafite (Bangers) + Rubik.
   ========================================================= */

:root {
  --black: #0a0806;
  --black-soft: #14100c;
  --black-glass: rgba(20, 15, 11, .55);
  --gold: #f2a71b;
  --gold-light: #f7c964;
  --cream: #fff8ec;
  --red: #ff3b4e;
  --green-whats: #25d366;
  --text-muted: #b8ab97;
  --border-glass: rgba(242, 167, 27, .22);
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.45);
  --font-display: "Bangers", "Rubik", cursive;
  --font-body: "Rubik", -apple-system, Segoe UI, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .5px;
  color: var(--cream);
  margin: 0 0 8px;
}
.section-title.light { color: var(--cream); }
.section-title span,
.section-title .accent { color: var(--gold); }
.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(242,167,27,.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(242,167,27,.1); }
.btn-whatsapp {
  background: var(--green-whats);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.chip {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px;
}

/* =========================================================
   MOLDURA DE CHAMAS DO SITE
   Fogo fixo nos 4 cantos da tela (estilo das fotos dos lanches:
   fundo preto com chamas irrompendo das bordas). Fica parado
   na tela (position:fixed) e continua visível em qualquer
   seção durante o scroll — como uma borda em chamas do site.
   ========================================================= */
.page-flames {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.page-flame {
  position: absolute;
  width: 30vw;
  max-width: 320px;
  height: 30vw;
  max-height: 320px;
  filter: blur(30px);
  opacity: .5;
  mix-blend-mode: screen;
  animation: flameFlicker 4.6s ease-in-out infinite;
}
.pf-tl { top: -9%; left: -9%; background: radial-gradient(closest-side, rgba(255,66,40,.9), transparent 70%); animation-duration: 5s; }
.pf-tr { top: -9%; right: -9%; background: radial-gradient(closest-side, rgba(242,167,27,.85), transparent 70%); animation-duration: 4.4s; animation-delay: .5s; }
.pf-bl { bottom: -9%; left: -9%; background: radial-gradient(closest-side, rgba(242,167,27,.85), transparent 70%); animation-duration: 4.8s; animation-delay: .2s; }
.pf-br { bottom: -9%; right: -9%; background: radial-gradient(closest-side, rgba(255,66,40,.9), transparent 70%); animation-duration: 5.2s; animation-delay: .7s; }

.page-spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #ffd27a;
  box-shadow: 0 0 6px 2px rgba(255,180,60,.9);
  opacity: 0;
  animation: pageSparkFloat 5.2s ease-in infinite;
}
.ps1 { top: 5%;  left: 3%;  animation-delay: .2s; }
.ps2 { top: 13%; left: 8%;  animation-delay: 1.6s; }
.ps3 { top: 7%;  right: 4%; animation-delay: .9s; }
.ps4 { bottom: 9%;  left: 5%;  animation-delay: 2.1s; }
.ps5 { bottom: 5%;  right: 7%; animation-delay: .5s; }
.ps6 { bottom: 15%; right: 3%; animation-delay: 1.9s; }
@keyframes pageSparkFloat {
  0%   { opacity: 0; transform: translateY(0); }
  15%  { opacity: 1; }
  85%  { opacity: .55; }
  100% { opacity: 0; transform: translateY(-44px); }
}

@media (max-width: 720px) {
  .page-flame { width: 44vw; height: 44vw; opacity: .4; filter: blur(22px); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14,12,9,.92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: .5px;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--cream);
  font-weight: 600;
  font-size: .95rem;
  opacity: .9;
}
.main-nav a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 18px;
  border-radius: 999px;
  opacity: 1 !important;
}
.menu-toggle { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: #000;
  color: var(--cream);
  padding: 88px 0 60px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* --- chamas animadas ao redor --- */
.hero-flames {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.flame {
  position: absolute;
  bottom: -10%;
  width: 42vw;
  max-width: 460px;
  height: 60vh;
  max-height: 520px;
  border-radius: 50% 50% 42% 42%;
  filter: blur(38px);
  opacity: .55;
  mix-blend-mode: screen;
  animation: flameFlicker 4.5s ease-in-out infinite;
}
.flame-1 { left: -12%; background: radial-gradient(closest-side, rgba(255,66,40,.85), transparent 72%); animation-duration: 5.2s; }
.flame-2 { left: 6%; bottom: -16%; background: radial-gradient(closest-side, rgba(242,167,27,.8), transparent 70%); animation-duration: 3.8s; animation-delay: .4s; }
.flame-3 { right: -14%; background: radial-gradient(closest-side, rgba(255,66,40,.8), transparent 72%); animation-duration: 4.8s; animation-delay: .8s; }
.flame-4 { right: 4%; bottom: -18%; background: radial-gradient(closest-side, rgba(255,150,30,.75), transparent 70%); animation-duration: 4s; animation-delay: .2s; }
.flame-5 { left: 50%; transform: translateX(-50%); bottom: -22%; width: 60vw; max-width: 620px; height: 40vh; background: radial-gradient(closest-side, rgba(255,90,40,.55), transparent 75%); animation-duration: 6s; animation-delay: .6s; }

@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1) scaleX(1) translateY(0); opacity: .5; }
  25% { transform: scaleY(1.12) scaleX(.94) translateY(-2%); opacity: .65; }
  50% { transform: scaleY(.94) scaleX(1.06) translateY(1%); opacity: .45; }
  75% { transform: scaleY(1.08) scaleX(.98) translateY(-1%); opacity: .6; }
}

.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 80%, rgba(247,201,100,.9), transparent),
    radial-gradient(2px 2px at 35% 90%, rgba(255,120,60,.8), transparent),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(247,201,100,.7), transparent),
    radial-gradient(2px 2px at 80% 92%, rgba(255,120,60,.8), transparent),
    radial-gradient(1.5px 1.5px at 92% 78%, rgba(247,201,100,.7), transparent);
  animation: embersRise 6s linear infinite;
}
@keyframes embersRise {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-70vh); opacity: 0; }
}

.hero-inner { position: relative; z-index: 1; }

.logo-glow {
  width: 148px; height: 148px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: logoPulse 3s ease-in-out infinite;
}
.hero-logo {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,167,27,.35), 0 0 30px rgba(242,167,27,.25); }
  50% { box-shadow: 0 0 0 14px rgba(242,167,27,0), 0 0 46px rgba(242,167,27,.4); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4rem);
  margin: 0 0 14px;
  line-height: 1.05;
}
.hero h1 span { color: var(--gold); }
.hero p {
  max-width: 480px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- carne virando na chapa --- */
.grill-scene {
  position: relative;
  width: 220px;
  height: 150px;
  margin: 56px auto 0;
}
/* usado quando CONFIG.heroVideo aponta pra um vídeo real da chapa */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 14px 40px rgba(0,0,0,.6), 0 0 30px rgba(242,167,27,.25);
}
.grill-plate {
  position: absolute;
  left: 50%; bottom: 6px;
  transform: translateX(-50%);
  width: 220px; height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(60% 140% at 50% 0%, rgba(255,130,40,.35), transparent 70%),
    linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 35%, #161616 100%);
  box-shadow:
    0 0 0 4px #0a0a0a,
    0 10px 26px rgba(0,0,0,.65),
    0 -6px 24px rgba(255,120,30,.35),
    inset 0 3px 5px rgba(255,255,255,.15),
    inset 0 -4px 8px rgba(0,0,0,.5);
  animation: griddleGlow 2.4s ease-in-out infinite;
}
@keyframes griddleGlow {
  0%, 100% { box-shadow: 0 0 0 4px #0a0a0a, 0 10px 26px rgba(0,0,0,.65), 0 -6px 24px rgba(255,120,30,.28), inset 0 3px 5px rgba(255,255,255,.15), inset 0 -4px 8px rgba(0,0,0,.5); }
  50% { box-shadow: 0 0 0 4px #0a0a0a, 0 10px 26px rgba(0,0,0,.65), 0 -8px 30px rgba(255,140,40,.5), inset 0 3px 5px rgba(255,255,255,.2), inset 0 -4px 8px rgba(0,0,0,.5); }
}
.grill-plate::before {
  content: "";
  position: absolute;
  inset: 4px 16px;
  border-radius: 50%;
  background-image: repeating-linear-gradient(90deg, rgba(0,0,0,.55) 0 3px, rgba(255,255,255,.05) 3px 4px, transparent 4px 9px);
  opacity: .8;
}
.grill-plate::after {
  content: "";
  position: absolute;
  left: 8%; top: 12%;
  width: 34%; height: 30%;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(255,255,255,.35), transparent 70%);
  filter: blur(1px);
}
.grill-spark {
  position: absolute;
  bottom: 22px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #ffd27a;
  box-shadow: 0 0 6px 1px rgba(255,180,60,.9);
  opacity: 0;
  animation: sparkPop 3.6s ease-out infinite;
}
.grill-spark.sp1 { left: 40%; animation-delay: .3s; }
.grill-spark.sp2 { left: 58%; animation-delay: .45s; }
.grill-spark.sp3 { left: 48%; animation-delay: .55s; }
@keyframes sparkPop {
  0%, 52% { opacity: 0; transform: translate(0, 0); }
  56% { opacity: 1; transform: translate(0, -4px); }
  68% { opacity: 0; transform: translate(var(--sx, 14px), -26px); }
  100% { opacity: 0; }
}
.flip-patty {
  position: absolute;
  left: 50%; bottom: 14px;
  width: 130px;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.5));
  animation: pattyFlip 3.6s cubic-bezier(.5,.05,.5,.95) infinite;
}
.flip-patty svg { width: 100%; display: block; }
@keyframes pattyFlip {
  0%   { transform: translateX(-50%) translateY(0) rotate(0deg) scaleX(1); }
  8%   { transform: translateX(-50%) translateY(-6px) rotate(0deg) scaleX(1.06); }
  22%  { transform: translateX(-50%) translateY(-78px) rotate(200deg) scaleX(1); }
  38%  { transform: translateX(-50%) translateY(-96px) rotate(380deg) scaleX(1); }
  54%  { transform: translateX(-50%) translateY(-10px) rotate(360deg) scaleX(1); }
  58%  { transform: translateX(-50%) translateY(0) rotate(360deg) scaleX(1.12); }
  63%  { transform: translateX(-50%) translateY(0) rotate(360deg) scaleX(1); }
  100% { transform: translateX(-50%) translateY(0) rotate(360deg) scaleX(1); }
}
.grill-smoke {
  position: absolute;
  bottom: 26px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(230,230,230,.55), transparent 72%);
  filter: blur(3px);
  animation: smokeRise 3.6s ease-out infinite;
}
.grill-smoke.s1 { left: 34%; animation-delay: 0s; }
.grill-smoke.s2 { left: 50%; animation-delay: 1.1s; }
.grill-smoke.s3 { left: 64%; animation-delay: 2.1s; }
@keyframes smokeRise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  15%  { opacity: .55; }
  100% { transform: translateY(-90px) scale(1.6); opacity: 0; }
}

/* ===== CARDÁPIO — lista estilo totem (clean, sem poluição) ===== */
.menu-section { padding: 80px 0 96px; background: var(--black); }
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-category { margin-bottom: 8px; }
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--gold);
  margin: 36px 0 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(242,167,27,.3);
}
.menu-category:first-child .menu-category-title { margin-top: 4px; }
.menu-category-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(242,167,27,.14);
}

.bebidas-block { margin-top: 10px; }
.bebidas-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(242,167,27,.14);
}
.bebida-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(242,167,27,.14);
  color: var(--cream);
  font-weight: 600;
}
.bebida-preco { color: var(--gold-light); font-weight: 800; }
.menu-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(242,167,27,.14);
  cursor: pointer;
  transition: background .15s ease;
  border-radius: 10px;
}
.menu-row:hover, .menu-row:focus-visible {
  background: rgba(242,167,27,.06);
  outline: none;
}
.menu-row-thumb {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 30%, #221a10, #0c0a07 75%);
  border: 1px solid rgba(242,167,27,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menu-row-thumb .stack-mini {
  width: 74%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-row-thumb .mini-layer {
  width: 100%;
  margin: -5px 0;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
}
.menu-row-thumb .mini-layer svg { width: 100%; height: auto; display: block; }
.menu-row-thumb .thumb-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.menu-row-info { flex: 1; min-width: 0; }
.menu-row-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
  letter-spacing: .3px;
  color: var(--cream);
}
.menu-row-tag {
  display: inline-block;
  margin-top: 3px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.menu-row-price {
  flex: none;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-light);
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--black);
  padding: 88px 0;
}
.about-text p {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.02rem;
}

/* ===== LOCAL ===== */
.local-section { padding: 88px 0; background: var(--black-soft); }
.local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.local-address {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 20px;
  color: var(--gold-light);
}
.hours-list { margin-bottom: 26px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(242,167,27,.25);
  max-width: 340px;
  color: var(--cream);
}
.hours-list li span:last-child { font-weight: 700; color: var(--gold-light); }
.local-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(242,167,27,.2);
  filter: grayscale(.3) contrast(1.05);
}

/* ===== CONTATO ===== */
.contact-section {
  background: linear-gradient(135deg, #1a1410, var(--black));
  color: var(--cream);
  padding: 88px 0;
  text-align: center;
}
.contact-section p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--text-muted);
  padding: 32px 0;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-inner p { flex: 1; margin: 0; min-width: 200px; }
.footer-inner a { color: var(--gold-light); font-weight: 600; }

/* =========================================================
   MODAL — CARDÁPIO INTERATIVO (EXPLOSÃO 3D DO LANCHE)
   O overlay é praticamente transparente: o próprio site
   (preto, com as chamas) continua sendo o fundo. O lanche
   "salta" da posição clicada com um pop 3D (scale + rotateX).
   ========================================================= */
.burger-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.burger-modal.is-open { display: block; }
.burger-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,3,2,.35);
  backdrop-filter: blur(5px) saturate(1.1);
}
.burger-modal-panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 4vh auto;
  max-height: 92vh;
  background: transparent;
  border-radius: 24px;
  perspective: 1600px;
  transform-origin: var(--pop-x, 50%) var(--pop-y, 50%);
  animation: modalPop3D .6s cubic-bezier(.22, 1.4, .36, 1);
}
@keyframes modalPop3D {
  0%   { opacity: 0; transform: scale(.15) rotateX(40deg) translateY(30px); filter: blur(8px); }
  55%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotateX(0deg) translateY(0); }
}
.burger-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(10,8,6,.7);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
}
.burger-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 24px;
}

/* área da explosão — sem caixa própria: o fundo do site aparece atrás */
.burger-explode-wrap {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  height: 58vh;
  max-height: 520px;
  box-sizing: border-box;
}
.burger-explode {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.burger-layer {
  width: 100%;
  margin: -6px 0;
  transition: transform .55s cubic-bezier(.34,1.56,.64,1), opacity .35s ease, filter .35s ease;
  transform-origin: center;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.55));
}
.burger-layer svg { width: 100%; height: auto; display: block; }
.burger-layer.is-removed {
  opacity: 0;
  transform: translateX(140px) rotate(25deg) scale(.7) !important;
  pointer-events: none;
}
/* estado fechado (empilhado, tocando) definido inline via JS transform: translateY(0) */
/* estado aberto (explodido) definido inline via JS transform: translateY(var(--offset)) */

/* painel de ingredientes — cartão de vidro flutuando sobre o fundo */
.burger-details {
  background: var(--black-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 32px 28px;
  margin: 24px 24px 24px 0;
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.modal-foto {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
}
.burger-details h3 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin: 10px 0 8px;
  color: var(--cream);
}
.burger-desc { color: var(--text-muted); margin: 0 0 22px; }
.ingredients-title {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 0 0 12px;
}
.ingredients-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.ingredient-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(242,167,27,.16);
  transition: background .15s ease;
}
.ingredient-row:hover { background: rgba(242,167,27,.08); }
.ingredient-row.locked { opacity: .6; }
.ingredient-row input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.ingredient-row input[type="checkbox"]:disabled { cursor: not-allowed; }
.ingredient-row label {
  flex: 1;
  font-weight: 600;
  cursor: pointer;
  color: var(--cream);
}
.ingredient-row .lock-note {
  font-size: .72rem;
  color: var(--text-muted);
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(242,167,27,.18);
  padding-top: 20px;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .burger-modal-content { grid-template-columns: 1fr; }
  .burger-explode-wrap { border-radius: 24px 24px 0 0; }
  .local-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .burger-modal-panel {
    margin: 0;
    max-width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }
  .burger-modal-content {
    max-height: 100dvh;
    border-radius: 0;
  }
  .burger-explode-wrap {
    height: 48dvh;
    max-height: none;
    padding: 20px 14px;
    border-radius: 0;
  }
  .burger-explode { max-width: 260px; }
  .burger-details {
    margin: 10px 10px 16px;
    padding: 26px 18px 20px;
  }
  .burger-modal-close {
    top: 10px; right: 10px;
  }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 26px;
    gap: 18px;
    border-bottom: 2px solid var(--gold);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1.5rem;
    cursor: pointer;
  }
}
