:root {
  --bg: #f7f3ec;
  --ink: #151515;
  --muted: #6b7280;
  --card: #ffffff;
  --brand: #111827;
  --accent: #f59e0b;
  --line: rgba(17, 24, 39, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.public-shell { width: min(100%, 720px); margin: 0 auto; padding-bottom: 42px; }
.hero { position: relative; min-height: 310px; overflow: hidden; border-radius: 0 0 32px 32px; background: #111827; }
.cover { width: 100%; height: 310px; object-fit: cover; display: block; opacity: .86; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.05)); }
.hero-content { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 22px; display: flex; gap: 14px; align-items: center; color: #fff; }
.logo { width: 82px; height: 82px; border-radius: 24px; background: #fff; padding: 6px; object-fit: cover; box-shadow: 0 18px 50px rgba(0,0,0,.28); }
.category { margin: 0 0 3px; opacity: .82; font-size: 14px; }
h1 { margin: 0; font-size: clamp(28px, 8vw, 42px); letter-spacing: -0.04em; line-height: .95; }
.status { margin: 8px 0 0; display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.16); backdrop-filter: blur(8px); font-size: 13px; }
.card { margin: 16px; padding: 18px; background: var(--card); border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 16px 40px rgba(17,24,39,.08); }
.intro p { margin: 0; color: #374151; line-height: 1.5; }
.actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 16px; }
.action { border: 0; min-height: 82px; border-radius: 24px; background: #fff; box-shadow: 0 12px 26px rgba(17,24,39,.08); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 14px; gap: 9px; font-weight: 800; text-align: left; cursor: pointer; border: 1px solid rgba(17,24,39,.08); }
.action span { font-size: 15px; }
h2 { margin: 0 0 14px; font-size: 24px; letter-spacing: -0.03em; }
h3 { margin: 0 0 10px; font-size: 18px; }
.menu-category + .menu-category { margin-top: 24px; }
.product { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); align-items: center; }
.product img { width: 72px; height: 72px; border-radius: 18px; object-fit: cover; background: #f3f4f6; }
.product strong { display: block; font-size: 16px; }
.product p { margin: 4px 0; color: #4b5563; font-size: 14px; line-height: 1.35; }
.product small { color: #6b7280; }
.price { white-space: nowrap; font-weight: 900; }
.promo-list { display: grid; gap: 12px; }
.promo { display: grid; grid-template-columns: 84px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: 20px; background: #f9fafb; }
.promo img { width: 84px; height: 84px; object-fit: cover; border-radius: 18px; }
.promo p { margin: 0; color: #4b5563; }
.muted { color: var(--muted); }
footer { text-align: center; color: var(--muted); font-size: 13px; padding: 20px 0; }
dialog { width: min(90vw, 420px); border: 0; border-radius: 24px; padding: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
dialog button, .big-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 18px; padding: 14px 18px; font-weight: 800; background: var(--brand); color: #fff; margin: 8px 6px 0 0; }
.secondary-button { background: #fff; color: var(--brand); }
.landing { min-height: 100vh; display: grid; place-items: center; padding: 18px; background: radial-gradient(circle at top, #f59e0b 0, #f7f3ec 36%, #f7f3ec 100%); }
.landing-card { width: min(100%, 560px); background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: 32px; padding: 32px; box-shadow: 0 24px 80px rgba(17,24,39,.16); }
.landing-card h1 { color: var(--brand); }
.hint { color: var(--muted); font-size: 14px; }
@media (min-width: 640px) { .actions { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
