:root {
  --bg: #0b0f19;
  --bg-alt: #0f172a;
  --fg: #f8fafc;
  --muted: #9ca3af;
  --brand: #fbbf24;
  --card: #111827;
  --border: #1f2937;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.08), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.07), transparent 28%),
    var(--bg);
  color: var(--fg);
  min-height: 100vh;
  margin: 0;
}

.navbar {
  background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(10px);
}

.brand-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand);
  display: inline-block;
  border-radius: 9999px;
  margin-left: 0.35rem;
  box-shadow: 0 0 0.65rem rgba(251, 191, 36, 0.6);
}

.category-nav {
  position: sticky;
  top: 56px;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.pillbar {
  overflow: auto;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
}

.pillbar .btn {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--fg);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.pillbar .btn:hover,
.pillbar .btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.section-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.menu-card:hover,
.menu-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.price-badge {
  background: rgba(251, 191, 36, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.size-badge {
  background: #0f172a;
  border: 1px solid #1f2937;
  color: #e5e7eb;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--border);
}

.search {
  background: #ffc107;
  border: 1px solid var(--border);
  color: #111827;
  font-weight: 600;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.16);
}

.search-focused .search {
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.28);
  border-color: rgba(251, 191, 36, 0.8);
}

.search::placeholder {
  color: rgba(17, 24, 39, 0.7);
}

.muted {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.menu-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.table-dark {
  --bs-table-bg: transparent !important;
}

.wa-link,
.map-link {
  text-decoration: none;
  color: inherit;
}

.wa-icon {
  width: 18px;
  height: 18px;
  vertical-align: -2px;
}

.map-icon {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.btn-outline-light {
  border-color: var(--border);
}

.btn-warning {
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.32);
  border: none;
  font-weight: 700;
}

.btn-outline-warning {
  border-color: rgba(251, 191, 36, 0.7);
  color: var(--fg);
}

.btn-outline-warning:hover,
.btn-outline-warning:focus-visible {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.9);
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.35rem;
  }

  .menu-card {
    border-radius: 0.85rem;
  }

  .menu-thumb {
    width: 56px;
    height: 56px;
  }

  .pillbar {
    padding: 0.35rem 0.5rem;
  }

  .navbar .btn {
    padding: 0.35rem 0.75rem;
  }
}
