
:root{
  --page-max:1100px;
  --card-radius:16px;
  --shadow:0 6px 18px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
body{margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; color:#111;}
/* Full-bleed banner */
header .brand{ position:relative; }
header .brand .brand-logo{
  display:block; width:100vw; max-width:100vw; height:auto;
  position:relative; left:50%; margin-left:calc(-50vw + 50%);
}
header .brand .lang{ position:absolute; top:14px; right:14px; z-index:5; display:flex; gap:8px; }
.lang button{ border:0; background:#111; color:#fff; padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px; cursor:pointer; opacity:.9}
.lang button[aria-current="true"]{ background:#e11; }
.status{ text-align:center; color:#c00; font-weight:700; margin:8px 0 0; }
/* Page container */
.page{ max-width:var(--page-max); margin:0 auto; padding:0 16px; }
/* Headings centered */
h1,h2,h3{ text-align:center; margin:28px 0 10px;}
.lead{ text-align:center; color:#555; margin:0 0 24px;}
/* 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; }
.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 allergens */
.footer{ font-size:12px; color:#555; text-align:center; margin:28px 0 24px;}
