:root {
  --bg: #1a0d05;
  --bg-soft: #2b1508;
  --card: #2f190b;
  --text: #fff6eb;
  --muted: #ffd8ba;
  --brand: #ff9f43;
  --brand-2: #ff6a00;
  --ok: #ffd166;
  --whatsapp: #22c55e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, #7a2e00 0%, transparent 25%),
    radial-gradient(circle at 90% 20%, #4b2205 0%, transparent 30%),
    linear-gradient(180deg, #140903, var(--bg));
  color: var(--text);
}

.hero {
  padding: 16px clamp(16px, 4vw, 48px) 24px;
  border-bottom: 1px solid #66341b;
  background: linear-gradient(180deg, rgba(255, 106, 0, .2), rgba(255, 106, 0, .02));
}

.hero-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.back-link { color: var(--ok); text-decoration: none; font-weight: 700; }

.hero-contacts { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-contacts a {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid #864a2b;
  color: #ffe8d2;
  background: rgba(255,255,255,.05);
}
.hero-contacts a:first-child {
  border-color: #1d8b43;
  background: rgba(34, 197, 94, .16);
}

.kicker {
  margin: 16px 0 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffd8ab;
  font-weight: 700;
  font-size: .75rem;
}

h1 {
  margin: 0;
  font: 900 clamp(2rem, 7vw, 4rem)/1 "Lilita One", Inter, sans-serif;
  color: #fff;
}

.subtitle { margin: 10px 0 0; color: var(--muted); max-width: 70ch; }

.quick-info {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.quick-info div {
  background: rgba(255,255,255,.04);
  border: 1px solid #6e3e24;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 3px;
}

.quick-info strong { color: #ffe4ce; font-size: .88rem; }
.quick-info span { color: #ffcda3; font-size: .92rem; }

.layout {
  padding: 20px clamp(16px, 4vw, 48px) 130px;
  display: grid;
  gap: 14px;
}

.menu-card {
  background: linear-gradient(180deg, #341b0c, #271206);
  border: 1px solid #6f3f24;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}

.menu-head h2 { margin: 0; font-size: clamp(1.25rem, 3vw, 1.8rem); }

.price-badge {
  margin: 0;
  font-weight: 800;
  color: #3c1600;
  background: linear-gradient(90deg, #ffd55d, #ff9f43);
  border-radius: 999px;
  padding: 6px 12px;
}

.menu-description { margin: 8px 0 14px; color: var(--muted); }
.subsection-title { margin: 14px 0 8px; color: #ffbe8a; }

.item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
  border-top: 1px dashed #9c5d36;
  padding: 10px 0;
}

.item:first-of-type { border-top: 0; padding-top: 0; }
.item-name { margin: 0; }
.item-price { color: #ffcb9a; font-weight: 800; white-space: nowrap; }

.item-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.add-btn {
  border: 1px solid #a35f39;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  cursor: pointer;
}

.add-btn:hover { background: rgba(255, 255, 255, .12); }

.order-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  border-top: 1px solid #7f4b2b;
  background: rgba(29, 12, 4, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
}

.order-kicker {
  margin: 0;
  color: #ffd29d;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

#order-summary { margin: 0; color: #ffe6d0; }

.order-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  color: #06260f;
  background: linear-gradient(90deg, #86efac, var(--whatsapp));
  cursor: pointer;
}

.order-btn:disabled {
  background: #4b5563;
  color: #d1d5db;
  cursor: not-allowed;
}
