
:root{
  --accent:#111;
  --muted:#666;
  --card:#fff;
  --shadow: 0 8px 28px rgba(0,0,0,.08);
  --radius:16px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";color:#111}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.center{text-align:center}
/* Hero */
.hero{
  position:relative; width:100%; 
  height:55svh;
  background: #eee url('assets/banner.jpg') center/cover no-repeat;
  display:flex; align-items:flex-end; justify-content:center;
}
@media (min-width: 768px){
  .hero{ height:45svh; }
}
.hero::after{ content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, rgba(255,255,255,1));}

.stengt{
  position:relative; margin:-24px auto 12px auto; 
  text-align:center; font-weight:700; color:#d21;
}

/* Headings */
h1{font-size:clamp(28px,4vw,40px); margin:16px 0 8px; text-align:center}
h2{font-size:clamp(22px,3vw,28px); margin:28px 0 8px; text-align:center}
h3{font-size:clamp(18px,2.5vw,22px); margin:14px 0 6px; text-align:center}
p,li,small{line-height:1.6}
/* Language pill */
.lang{ position: fixed; top:14px; right:14px; display:flex; gap:8px; z-index:10}
.lang button{border:0;border-radius:999px;padding:8px 12px;background:#000;color:#fff;font-weight:700;box-shadow:var(--shadow); opacity:.85}
/* Ukens & Sesong row */
.feature-row{display:flex; gap:16px; justify-content:center; flex-wrap:wrap}
/* Cards grid */
.grid{display:grid; gap:16px}
.grid.cols-1{grid-template-columns:1fr}
@media (min-width:600px){ .grid.cols-2{grid-template-columns:repeat(2,1fr)}}
@media (min-width:992px){ .grid.cols-4{grid-template-columns:repeat(4,1fr)}}
.card{
  background:var(--card); border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column; align-items:center; text-align:center;
}
.card img{width:100%; aspect-ratio: 4/3; object-fit:cover; background:#f3f3f3}
.card .body{padding:12px 14px}
.price{font-weight:800; margin:4px 0}
.badge{font-size:12px;color:var(--muted)}
.qty{display:flex; align-items:center; justify-content:center; gap:10px; margin:8px 0 2px}
.qty button{border:0; width:34px; height:34px; border-radius:10px; background:#111; color:#fff; font-size:20px; line-height:1}
/* Order area */
.flex2{display:grid; gap:20px}
@media (min-width:900px){
  .flex2{grid-template-columns: 1.2fr .8fr}
}
.panel{
  background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);padding:16px
}
.panel h3{margin-top:0}
.table{width:100%; border-collapse:collapse; font-size:14px}
.table th,.table td{padding:8px; border-bottom:1px solid #eee; text-align:center}
.blur{filter: blur(2px); opacity:.5; pointer-events:none}
.notice{ text-align:center; font-size:14px; color:#555}
.map-wrap{border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow)}
small.meta{display:block; color:#777}
.footer{color:#666; font-size:12px; margin:24px 0; text-align:center}
/* Section spacing */
section{padding: 14px 0}
.sep{height:1px;background:#eee;margin:14px 0}
