
:root{ --page-max:1100px; --card-radius:16px; --shadow:0 6px 18px rgba(0,0,0,.08); }
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system, Segoe UI, Roboto, Helvetica, Arial; color:#111}
/* HERO */
.hero{ position:relative; min-height:45svh; overflow:hidden; }
.hero-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:0; }
.lang{ position:absolute; top:18px; right:18px; display:flex; gap:8px; z-index:5; }
.lang button{ border:none; border-radius:16px; padding:6px 10px; font-weight:700; background:#eee; cursor:pointer }
.lang button.on{ background:#111; color:#fff }
.status-badge{ position:absolute; left:50%; transform:translateX(-50%); bottom:6%; z-index:5; background:rgba(255,255,255,.88); color:#c00; border-radius:999px; padding:8px 16px; font-weight:700; box-shadow:0 2px 10px rgba(0,0,0,.08) }
@media (max-width:600px){
  .hero{ min-height:55svh }
  .status-badge{ bottom:4% }
}
/* Page container */
.page{ max-width:var(--page-max); margin:18px auto; padding:0 16px; }
h1,h2,h3{ text-align:center; margin:20px 0 10px; }
.lead, .kicker{ text-align:center; color:#555; margin:0 0 18px; }
/* Map */
.map{ border-radius:12px; overflow:hidden; box-shadow:var(--shadow); margin:16px 0 28px; }
/* Menu grid */
.section-title{ margin-top:26px; }
.menu-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; }
@media (max-width:740px){ .menu-grid{ grid-template-columns:1fr; } }
.card{ background:#fff; border-radius:var(--card-radius); box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column; border:1px solid #eee; }
.card .thumb{ position:relative; width:100%; aspect-ratio: 4/3; overflow:hidden; background:#f5f5f5; }
.card .thumb img{ width:100%; height:100%; object-fit:cover; display:block; object-position:center; }
.badge{ position:absolute; top:10px; left:10px; background:#111; color:#fff; font-size:12px; padding:4px 8px; border-radius:999px; opacity:.95; }
.card .body{ padding:14px; }
.card h3{ margin:0 0 6px; font-size:18px; text-align:left; }
.meta{ font-size:12px; color:#666; line-height:1.4; margin-bottom:10px; }
.price{ font-weight:800; font-size:18px; margin-top:6px; }
.controls{ display:flex; align-items:center; gap:10px; margin-top:10px; }
.qty{ display:flex; align-items:center; gap:8px; }
.qty button{ width:28px; height:28px; border-radius:8px; border:1px solid #ccc; background:#fff; cursor:pointer; }
.qty input{ width:44px; text-align:center; border:1px solid #ccc; border-radius:8px; padding:4px; }
/* Cart & Payment boxes */
.flex{ display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start; }
@media (max-width:900px){ .flex{ grid-template-columns:1fr; } }
.box{ background:#fff; border:1px solid #eee; border-radius:16px; box-shadow:var(--shadow); padding:16px; }
.box h3{ margin:0 0 10px; }
.line{ height:2px; background:#111; border-radius:2px; margin:10px 0 16px; }
.payment .vipps{ text-align:center; margin-top:10px; }
.payment img{ max-width:200px; height:auto; display:inline-block }
.notice{ font-size:13px; color:#444; text-align:center; }
/* Footer */
.footer{ font-size:12px; color:#555; text-align:center; margin:28px 0 24px; }
