:root {
  --bg: #0f172a;
  --card: #111827;
  --muted: #94a3b8;
  --text: #e2e8f0;
  --accent: #f59e0b;
  --accent-2: #22c55e;
  --border: #1f2937;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.08), transparent 20%),
              radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.08), transparent 18%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 96px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  padding: 16px 12px;
  margin: -16px -12px 12px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: contain;
  background: #0b1221;
  padding: 6px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

h1 {
  margin: 4px 0 0;
  font-size: 1.4rem;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
}

.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: all 0.2s ease;
}

.pill:hover {
  border-color: var(--accent);
}

.cart-pill {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #0b0f1a;
  border: none;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 12px;
}

.hero-text h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.hero-text p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.12);
  color: #34d399;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #f59e0b);
  color: #0b0f1a;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
}

.trust img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #0b1221;
  padding: 6px;
}

.trust-title {
  margin: 0;
  font-weight: 700;
}

.trust-sub {
  margin: 2px 0 0;
  color: var(--muted);
}

.hero-media {
  display: grid;
  gap: 12px;
}

.hero-card,
.mini-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero-card-body {
  padding: 12px 14px 16px;
}

.micro {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0;
  color: var(--muted);
}

.hero-card-title {
  margin: 6px 0 4px;
  font-size: 1.1rem;
}

.hero-card-price {
  margin: 0;
  font-weight: 700;
  color: #fbbf24;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.mini-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  padding: 10px;
  gap: 10px;
}

.mini-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-title {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  margin-top: 48px;
}

.section-heading h2 {
  margin: 0 0 6px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 160px 1fr;
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
}

.menu-price {
  font-weight: 700;
  color: #fbbf24;
}

.menu-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.add-btn {
  background: linear-gradient(135deg, #22c55e, #f59e0b);
  color: #0b0f1a;
  border: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.cart {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 90vw);
  height: 100vh;
  background: #0b1221;
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
  z-index: 20;
}

.cart.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-header button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: grid;
  gap: 12px;
}

.cart-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
}

.quantity button {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.full {
  width: 100%;
}

.muted {
  color: var(--muted);
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

.scrim.visible {
  opacity: 1;
  pointer-events: auto;
}

.splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: grid;
  place-items: center;
  z-index: 30;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.splash.hide {
  opacity: 0;
  pointer-events: none;
}

.splash-inner {
  text-align: center;
  background: rgba(17, 24, 39, 0.8);
  padding: 24px 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.splash-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  animation: pulse 2s infinite;
}

.splash-text {
  margin: 10px 0 0;
  color: var(--muted);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    position: static;
    margin: 0;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-card {
    grid-template-rows: auto;
  }
}