:root {
  --bg: #080808;
  --surface: #101010;
  --card: #161616;
  --text: #f5f5f5;
  --muted: #c4c4c4;
  --accent: #facc15;
  --danger: #ef4444;
  --ok: #22c55e;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 22%),
    linear-gradient(180deg, #161616, var(--bg) 50%);
}

.hero {
  padding: 16px clamp(16px, 4vw, 52px) 20px;
  border-bottom: 1px solid #2d2d2d;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.55));
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.back-link { color: #fda4af; text-decoration: none; font-weight: 700; font-size: .92rem; }
.brand-kicker { margin: 0; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }

.hero-content {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: stretch;
}

h1 { margin: 0; font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1; }
.subtitle { margin: 12px 0 0; color: var(--muted); max-width: 50ch; }

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta.whatsapp {
  color: #06260f;
  background: linear-gradient(90deg, #86efac, #22c55e);
}

.cta.secondary {
  color: #fff;
  border: 1px solid #3f3f46;
  background: rgba(255, 255, 255, .05);
}

.sinpe { margin: 12px 0 0; color: #f6d68b; font-weight: 600; }
.sinpe a { color: #fde68a; }

.hero-image-wrap {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #3b3b3b;
  background: #0e0e0e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.07);
}

.category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px clamp(16px, 4vw, 52px);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 12, 12, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #262626;
}

.category-btn {
  border: 1px solid #3b3b3b;
  background: #18181b;
  color: #e4e4e7;
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
  font-weight: 600;
}

.category-btn.active { border-color: var(--danger); color: white; background: #381717; }

.menu-root {
  padding: 18px clamp(16px, 4vw, 52px) 140px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.menu-section {
  background: linear-gradient(180deg, #181818 0%, #111 100%);
  border: 1px solid #2f2f2f;
  border-radius: 18px;
  padding: 14px;
}

.menu-section h2 { margin: 0 0 10px; color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; background: linear-gradient(90deg, #b91c1c, #ef4444); border-radius: 8px; padding: 8px 10px; }

.section-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #3b3b3b;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}


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

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

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

.add-btn {
  border: 1px solid #3f3f46;
  background: #1f2937;
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  cursor: pointer;
}

.add-btn:hover { background: #111827; }

.note { color: #a3a3a3; font-size: .86rem; margin: 8px 0 0; }

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

.order-kicker { margin: 0; color: #93c5fd; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
#order-summary { margin: 0; color: #e2e8f0; }

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

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

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { max-height: 320px; }
}
