/* ============================================================
   Buurt Bites — designsysteem v4
   Ink + wit + één coral accent · strak, modern, food-delivery
   ============================================================ */
:root {
  --ink:        #201710;
  --ink-2:      #4a3f36;
  --muted:      #6e655d;
  --paper:      #ffffff;
  --paper-2:    #fbf8f4;
  --paper-3:    #f3ede6;
  --line:       #ede6dd;
  --line-2:     #e2d9cd;

  /* A2 · vol oranje */
  --brand:      #ff6f00;
  --brand-d:    #e86200;
  --brand-soft: #fff1e3;
  --accent:     #ff6f00;
  --accent-d:   #e86200;
  --accent-soft:#fff1e3;
  --green:      #00a55b;
  --green-soft: #e2f6ec;
  --amber:      #e8a320;
  --amber-soft: #fdf1dc;
  --dark:       #171310;

  --r-xs: 10px; --r-sm: 14px; --r: 18px; --r-lg: 26px; --pill: 999px;
  --sh-sm: 0 2px 10px rgba(30,15,0,.05);
  --sh:    0 12px 34px rgba(30,15,0,.09);
  --sh-lg: 0 30px 70px rgba(30,15,0,.16);
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.3,1);
}
* { box-sizing: border-box; }
input, select, textarea, button { font-family: inherit; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { margin: 0; line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.ico { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
section { padding: clamp(46px, 6vw, 84px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); color: var(--accent-d);
  font-weight: 700; font-size: .82rem; padding: 7px 14px; border-radius: var(--pill);
}
.eyebrow.green { background: var(--green-soft); color: var(--green); }
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 1.06rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: 0;
  padding: 14px 24px; border-radius: var(--pill); background: var(--accent); color: #fff;
  transition: transform .12s var(--ease), background .15s, box-shadow .15s, border-color .15s;
  box-shadow: 0 8px 20px rgba(255,111,0,.28); white-space: nowrap;
}
.btn:hover { background: var(--accent-d); box-shadow: 0 10px 26px rgba(255,111,0,.36); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn.dark { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.16); }
.btn.dark:hover { background: #000; }
.btn.brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(255,111,0,.28); }
.btn.brand:hover { background: var(--brand-d); box-shadow: 0 10px 26px rgba(255,111,0,.36); }
.btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); box-shadow: none; }
.btn.ghost:hover { border-color: var(--ink); background: transparent; transform: none; }
.btn.lg { padding: 16px 30px; font-size: 1.06rem; }
.btn.sm { padding: 10px 18px; font-size: .92rem; box-shadow: none; }
.btn.block { width: 100%; }

/* ── nav ── */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.28rem; font-weight: 800; letter-spacing: -.03em; white-space: nowrap; }
.brand-mark { width: 34px; height: 34px; }
.brand-name .b1 { color: var(--ink); }
.brand-name .b2 { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-links > a:not(.btn) { color: var(--ink-2); font-weight: 600; font-size: .96rem; }
.nav-links > a:not(.btn):hover { color: var(--accent); }

/* ── hero ── */
.hero { padding-top: clamp(30px, 4vw, 56px); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 900; letter-spacing: -.04em; }
.hero h1 .u {
  color: var(--accent); position: relative; white-space: nowrap;
}
.hero .lead { color: var(--ink-2); font-size: clamp(1.05rem, 1.7vw, 1.28rem); margin: 20px 0 26px; max-width: 30ch; }

/* zoekkaart */
.searchbox { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh); max-width: 560px; }
.field {
  display: flex; align-items: center; gap: 10px; background: var(--paper-2);
  border: 1.5px solid var(--line); border-radius: var(--pill); padding: 6px 6px 6px 18px;
}
.field:focus-within { border-color: var(--ink); background: #fff; }
.field .ico { color: var(--accent); flex: 0 0 auto; }
.field input { flex: 1; border: 0; outline: 0; background: transparent; font-size: 1.05rem; padding: 13px 4px; min-width: 0; color: var(--ink); }
.field .btn { flex: 0 0 auto; padding: 13px 24px; }
.gps { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; background: none; border: 0; color: var(--accent-d); font-weight: 700; font-size: .92rem; cursor: pointer; padding: 4px 2px; }
.gps:hover { text-decoration: underline; }
.gps .ico { width: 17px; height: 17px; }

.radius { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.radius-label { font-size: .9rem; font-weight: 700; color: var(--ink-2); margin-bottom: 10px; }
.seg { display: inline-flex; background: var(--paper-3); border-radius: var(--pill); padding: 4px; gap: 2px; }
.seg button {
  border: 0; background: transparent; color: var(--ink-2); font-weight: 700; font-size: .9rem;
  padding: 9px 16px; border-radius: var(--pill); cursor: pointer; box-shadow: none; transition: all .15s var(--ease);
}
.seg button.on { background: #fff; color: var(--accent-d); box-shadow: var(--sh-sm); }

.qf { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.qf a {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--line-2);
  border-radius: var(--pill); padding: 8px 14px; font-size: .88rem; font-weight: 600; color: var(--ink-2); transition: all .15s;
}
.qf a:hover { border-color: var(--accent); color: var(--accent-d); }
.qf .ico { width: 15px; height: 15px; }

/* ── phone mock ── */
.hero-media { display: grid; place-items: center; }
.stage {
  position: relative; width: 100%; max-width: 460px; aspect-ratio: 1/1;
  background:
    radial-gradient(60% 60% at 70% 25%, #fff1ea 0%, transparent 70%),
    linear-gradient(160deg, #fff6f1 0%, #fdefe7 100%);
  border-radius: var(--r-lg); border: 1px solid var(--line);
}
.phone {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 262px; height: 540px; background: #14100e; border-radius: 42px; padding: 11px;
  box-shadow: var(--sh-lg);
}
.phone::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 92px; height: 20px; background: #14100e; border-radius: var(--pill); z-index: 3; }
.screen { background: var(--paper-2); height: 100%; border-radius: 32px; overflow: hidden; padding: 30px 12px 12px; }
.sc-field { display: flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xs); padding: 10px 12px; font-size: .8rem; font-weight: 700; color: var(--ink-2); }
.sc-field .ico { width: 15px; height: 15px; color: var(--accent); }
.sc-chips { display: flex; gap: 6px; margin: 10px 0; }
.sc-chips span { background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 5px 10px; font-size: .66rem; font-weight: 700; color: var(--ink-2); }
.sc-chips span.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.sc-list { display: flex; flex-direction: column; gap: 10px; }
.sc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.sc-img { height: 52px; position: relative; }
.sc-img .tag { position: absolute; left: 7px; top: 7px; background: rgba(255,255,255,.95); border-radius: var(--pill); padding: 2px 8px; font-size: .58rem; font-weight: 800; color: var(--ink); }
.sc-img .st { position: absolute; right: 7px; bottom: 7px; border-radius: var(--pill); padding: 2px 7px; font-size: .56rem; font-weight: 800; }
.sc-b { padding: 8px 10px; }
.sc-b strong { display: block; font-size: .76rem; }
.sc-b .m { font-size: .64rem; color: var(--muted); margin-top: 2px; }
.st.open { background: var(--green); color: #fff; }
.st.soon { background: var(--amber); color: #fff; }

/* ── category carousel ── */
.cats { display: flex; gap: 14px; overflow-x: auto; padding: 6px 2px 14px; scroll-snap-type: x proximity; -ms-overflow-style: none; scrollbar-width: none; }
.cats::-webkit-scrollbar { display: none; }
.cat { flex: 0 0 auto; width: 108px; text-align: center; scroll-snap-align: start; }
.cat-ic { width: 84px; height: 84px; margin: 0 auto 10px; border-radius: 24px; display: grid; place-items: center; transition: transform .16s var(--ease), box-shadow .16s; }
.cat:hover .cat-ic { transform: translateY(-4px); box-shadow: var(--sh); }
.cat-ic .ico { width: 34px; height: 34px; stroke-width: 1.7; stroke: var(--brand); }
.cat-label { font-weight: 700; font-size: .92rem; }

/* ── restaurant cards ── */
.rgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 22px; }
.rcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .16s var(--ease), box-shadow .16s; }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.rcard-img { height: 148px; position: relative; display: grid; place-items: center; }
.rcard-img .wm { width: 58px; height: 58px; color: rgba(255,255,255,.9); }
.rcard-img .wm .ico { width: 58px; height: 58px; stroke-width: 1.4; }
.rcard-cuisine { position: absolute; left: 12px; top: 12px; background: rgba(255,255,255,.95); backdrop-filter: blur(4px); border-radius: var(--pill); padding: 5px 12px; font-size: .74rem; font-weight: 800; }
.rcard-fav { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.95); display: grid; place-items: center; }
.rcard-fav .ico { width: 17px; height: 17px; color: var(--ink); }
.rcard-status { position: absolute; left: 12px; bottom: 12px; border-radius: var(--pill); padding: 4px 11px; font-size: .72rem; font-weight: 800; }
.rcard-status.open { background: var(--green); color: #fff; }
.rcard-status.soon { background: var(--amber); color: #fff; }
.rcard-b { padding: 15px 16px 17px; }
.rcard-b h3 { font-size: 1.12rem; }
.rcard-b .chef { color: var(--muted); font-size: .88rem; margin: 3px 0 10px; }
.rcard-meta { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-2); font-weight: 600; flex-wrap: wrap; }
.rcard-meta > span { white-space: nowrap; }
.rcard-meta { font-size: .84rem; gap: 7px; }
.rcard-meta .star { color: var(--amber); display: inline-flex; align-items: center; gap: 3px; }
.rcard-meta .star .ico { width: 15px; height: 15px; fill: var(--amber); stroke: var(--amber); }
.rcard-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
.gradients-none {}

/* ── how it works ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { padding: 4px; }
.step-ic { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; }
.step-ic .ico { width: 27px; height: 27px; }
.step .n { color: var(--accent); font-weight: 800; font-size: .82rem; letter-spacing: .04em; }
.step h3 { font-size: 1.24rem; margin: 6px 0 8px; }
.step p { color: var(--muted); }

/* ── why (2 col) ── */
.why { background: var(--paper-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.why-card .tag { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.18rem; margin-bottom: 18px; }
.why-card .tag .badge { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; }
.why-card.eater .tag .badge { background: var(--accent-soft); color: var(--accent-d); }
.why-card.cook .tag .badge { background: var(--green-soft); color: var(--green); }
.why-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.why-card li { display: flex; gap: 12px; color: var(--ink-2); }
.why-card li .ico { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; }
.why-card.eater li .ico { color: var(--accent); }
.why-card.cook li .ico { color: var(--green); }
.why-card li b { color: var(--ink); }

/* ── dark proof band ── */
/* ── bewijs: de getuigenis voorop ──
   Was een donkere balk met vier oranje cijfers en een nauwelijks zichtbare
   quote. Nu draagt het citaat het blok en zakken de cijfers naar een
   rustige regel eronder. */
.bewijs { background: var(--paper); }
.bw-oog {
  display: block; font-size: .72rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--brand);
}
.bw-quote {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 2.4vw, 26px);
  align-items: start; max-width: 60ch; margin: 16px 0 0;
}
.bw-streep { width: 3px; border-radius: 99px; background: var(--brand); align-self: stretch; }
.bw-quote p {
  margin: 0; font-size: clamp(1.15rem, 2.4vw, 1.7rem); line-height: 1.4; font-weight: 600;
  letter-spacing: -.015em; text-wrap: pretty; color: var(--ink);
}
.bw-bron { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.bw-schotel {
  width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
  background-size: cover; background-position: center;
}
.bw-bron b { display: block; font-size: .95rem; }
.bw-bron span { color: var(--muted); font-size: .86rem; }

.bw-feiten {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
}
.bw-f { display: flex; align-items: baseline; gap: 6px; font-variant-numeric: tabular-nums; }
.bw-f b { font-size: 1.15rem; font-weight: 800; letter-spacing: -.02em; }
.bw-f > span { color: var(--muted); font-size: .89rem; font-weight: 600; }
.bw-ster { display: inline-flex; }
.bw-ster .ico { width: 15px; height: 15px; color: var(--amber); fill: var(--amber); }

@media (max-width: 620px) {
  .bw-quote { gap: 14px; }
  .bw-feiten { gap: 10px 18px; }
  .bw-f b { font-size: 1.02rem; }
}

/* ── app cta ── */
.appcta .panel {
  background: linear-gradient(135deg, #ff8a2a 0%, var(--brand) 55%, var(--brand-d) 100%);
  border-radius: var(--r-lg); padding: clamp(34px, 5vw, 60px); color: #fff; text-align: center; position: relative; overflow: hidden;
}
.appcta h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.appcta > .panel > p { color: rgba(255,255,255,.94); margin-top: 12px; font-size: 1.08rem; }
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 26px 0 14px; }
.store { display: inline-flex; align-items: center; gap: 11px; background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 15px; transition: transform .12s var(--ease); }
.store:hover { transform: translateY(-2px); background: #000; }
.store svg { width: 24px; height: 24px; }
.store .t { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.store .t small { font-size: .68rem; opacity: .82; }
.store .t b { font-size: 1.06rem; }
.secondary { color: #fff; font-weight: 600; }
.secondary a { text-decoration: underline; }

/* ── stub ── */
.stub { min-height: 52vh; display: grid; place-items: center; text-align: center; }
.stub h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.stub p { color: var(--muted); max-width: 52ch; margin: 12px auto 0; }
.stub .btn { margin-top: 22px; }

/* ── footer ── */
/* alleen de sitefooter, niet elke <footer> in de pagina */
body > footer { background: var(--dark); color: #cabfb6; padding: clamp(46px, 6vw, 68px) 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.foot-brand .brand { color: #fff; margin-bottom: 12px; }
.foot-brand .brand .b1 { color: #fff; }
.foot-brand p { color: #8f857c; font-size: .92rem; max-width: 30ch; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: #241c17; color: #e7ded6; display: grid; place-items: center; transition: all .15s; }
.socials a:hover { background: var(--accent); color: #fff; }
.socials svg { width: 19px; height: 19px; }
.foot-col b { color: #fff; display: block; margin-bottom: 14px; font-size: .95rem; }
.foot-col a { display: block; color: #b3a89f; font-size: .92rem; padding: 5px 0; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid #2a211b; margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8f857c; font-size: .85rem; }

/* ── responsive ── */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .stage { max-width: 380px; }
  .why-grid { grid-template-columns: 1fr; }
  .proof .wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .field { flex-wrap: wrap; border-radius: var(--r); padding: 12px; }
  .field input { width: 100%; }
  .field .btn { width: 100%; }
  .nav-links > a:not(.btn) { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.14); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-bottom: 0; }
  .stat b { font-size: 1.5rem; }
  .proof h2 { font-size: 1.5rem; }
  .avatars .av { width: 34px; height: 34px; }
  .quote { padding: 22px; }
  .quote p { font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════════
   A2 · VOL ORANJE — hero rand-tot-rand, kaarten vallen eruit
   ══════════════════════════════════════════════════════════ */

/* nav staat ín het oranje vlak */
.nav.on-orange {
  position: static; background: transparent; backdrop-filter: none; border-bottom: 0;
}
.nav.on-orange .brand-name .b1,
.nav.on-orange .brand-name .b2 { color: #fff; }
.nav.on-orange .nav-links > a:not(.btn) { color: rgba(255,255,255,.9); }
.nav.on-orange .nav-links > a:not(.btn):hover { color: #fff; }
.nav.on-orange .btn.onwhite {
  background: #fff; color: var(--brand-d); box-shadow: 0 6px 18px rgba(0,0,0,.13);
}
.nav.on-orange .btn.onwhite:hover { background: #fff; filter: brightness(.97); }

/* het oranje hero-vlak */
.hero-a2 {
  background: var(--brand); padding: 0 0 clamp(72px, 9vw, 118px); position: relative;
}
.hero-a2 > .wrap { display: block; }
.hero-a2 .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.hero-a2-copy { text-align: center; max-width: 660px; margin: 0 auto; padding: clamp(18px, 3vw, 34px) 0 0; }
.hero-a2 h1 {
  color: #fff; font-size: clamp(2rem, 4.6vw, 3.35rem); font-weight: 900; letter-spacing: -.04em;
}
.hero-a2 .lead {
  color: rgba(255,255,255,.94); font-size: clamp(1rem, 1.6vw, 1.17rem);
  margin: 16px auto 26px; max-width: 46ch;
}

/* witte zoekkaart, gecentreerd */
.searchcard {
  background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(80,35,0,.22);
  padding: 12px; max-width: 620px; margin: 0 auto;
}
.searchcard .field {
  display: flex; align-items: center; gap: 10px; background: transparent;
  border: 0; border-radius: 0; padding: 0 0 0 14px;
}
.searchcard .field .ico { color: var(--brand); flex: 0 0 auto; }
.searchcard .field input {
  flex: 1; border: 0; outline: 0; background: transparent; font-size: 1.03rem;
  padding: 14px 4px; min-width: 0; color: var(--ink);
}
.searchcard .field input::placeholder { color: #9a9089; }
/* Zoekstraal, zelfde pil als op de resultatenpagina. flex-shrink:0 zodat
   "10 km" nooit half wegvalt als de postcode lang is. */
.searchcard .field select {
  flex: 0 0 auto; border: 0; outline: 0; background: var(--paper-3);
  border-radius: var(--pill); padding: 11px 32px 11px 14px;
  font-size: .92rem; font-weight: 700; font-family: inherit; color: var(--ink-2); cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a3f36' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center; background-size: 15px;
}
.searchcard .field select:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.searchcard .field .btn { flex: 0 0 auto; border-radius: 14px; padding: 14px 26px; box-shadow: none; }
.searchcard .gps {
  display: inline-flex; align-items: center; gap: 7px; margin: 2px 0 4px 14px;
  background: none; border: 0; color: var(--brand-d); font-weight: 700; font-size: .88rem; cursor: pointer;
}
.searchcard .gps:hover { text-decoration: underline; }
.searchcard .gps .ico { width: 16px; height: 16px; }

/* filterchips onder de zoekkaart, op oranje */
.hero-a2 .qf { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.hero-a2 .qf a {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.42);
  border-radius: var(--pill); padding: 8px 15px; font-size: .87rem; font-weight: 700; color: #fff;
  transition: background .15s, border-color .15s;
}
.hero-a2 .qf a:hover { background: rgba(255,255,255,.28); border-color: #fff; }
.hero-a2 .qf .ico { width: 15px; height: 15px; }

/* trust-regel */
.hero-a2 .trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 20px; color: rgba(255,255,255,.94); font-size: .88rem; font-weight: 700;
}

/* kaarten vallen uit de hero */
.pullup { margin-top: clamp(-96px, -8vw, -64px); position: relative; z-index: 2; }
.pullup .rgrid { gap: 20px; }
.pullup .rcard { box-shadow: 0 16px 40px rgba(60,30,0,.16); border-color: transparent; }

/* echte foto's in de kaarten */
.rcard-img.photo { background-size: cover; background-position: center; }
.rcard-img.photo::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, transparent 42%, rgba(0,0,0,.42) 100%);
}
.rcard-img.photo .rcard-cuisine,
.rcard-img.photo .rcard-fav,
.rcard-img.photo .rcard-status { z-index: 2; }
.rcard-cuisine { background: rgba(255,255,255,.95); backdrop-filter: blur(4px); color: var(--ink); }

/* sectie-koppen gecentreerd bij A2 */
.a2-head { text-align: center; max-width: 620px; margin: 0 auto 30px; }
.a2-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.a2-head p { color: var(--muted); margin-top: 10px; font-size: 1.05rem; }

/* oranje trust-band */
.band {
  background: var(--brand); color: #fff;
  display: flex; gap: clamp(16px, 4vw, 48px); justify-content: center; flex-wrap: wrap;
  padding: 16px clamp(18px, 4vw, 40px); font-weight: 800; font-size: .95rem;
}
.band span { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 620px) {
  .nav .wrap, .hero-a2 .nav .wrap { height: 58px; }
  .brand { font-size: 1.08rem; gap: 8px; }
  .brand-mark { width: 27px; height: 27px; }
  .searchcard { padding: 10px; }
  /* postcode op een eigen regel, straal en knop delen de regel eronder —
     anders knijpt de straal het invoerveld dicht */
  .searchcard .field { flex-wrap: wrap; padding-left: 8px; gap: 8px; }
  /* Twee regels: pin + postcode boven, straal + knop eronder. De basis vult
     regel 1 precies op (min de pin), zodat de straal gegarandeerd doorschuift.
     width werkt hier niet: bij flex:1 is de basis 0% en die wint van width. */
  .searchcard .field input { flex: 1 1 calc(100% - 32px); min-width: 0; }
  .searchcard .field select { flex: 0 0 auto; }
  /* min-width:0 zodat de knop mag krimpen op zeer smalle toestellen (320px)
     in plaats van de rij buiten het scherm te duwen */
  .searchcard .field .btn { flex: 1 1 auto; min-width: 0; width: auto; padding: 14px 16px; }
  .pullup { margin-top: -52px; }
  .band { font-size: .86rem; gap: 14px; }
}

/* ══════════════════════════════════════════════════════════
   RESULTATENPAGINA (/bestellen)
   ══════════════════════════════════════════════════════════ */
.res-top { background: var(--brand); padding: 0; }
.res-top .wrap { display: flex; align-items: center; gap: 20px; height: 76px; flex-wrap: wrap; }
.res-top .brand-name .b1, .res-top .brand-name .b2 { color: #fff; }
.res-search {
  flex: 1; min-width: 260px; display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: var(--pill); padding: 5px 5px 5px 16px;
  box-shadow: 0 8px 24px rgba(80,35,0,.2); max-width: 620px; margin-left: auto;
}
.res-search .ico { color: var(--brand); flex: 0 0 auto; }
.res-search input { flex: 1; border: 0; outline: 0; background: transparent; font-size: .98rem; padding: 11px 4px; min-width: 0; }
.res-search select {
  border: 0; outline: 0; background: var(--paper-3); border-radius: var(--pill);
  padding: 9px 12px; font-size: .88rem; font-weight: 700; color: var(--ink-2); cursor: pointer;
}
.res-search .btn { padding: 11px 20px; box-shadow: none; }

/* filterbalk */
.filterbar {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.filterbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap;
}
.fchips { display: flex; gap: 8px; overflow-x: auto; flex: 1; min-width: 0; padding-bottom: 2px; scrollbar-width: none; }
.fchips::-webkit-scrollbar { display: none; }
.fchip {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--pill);
  padding: 8px 14px; font-size: .88rem; font-weight: 700; color: var(--ink-2);
  cursor: pointer; box-shadow: none; transition: all .15s;
}
.fchip:hover { border-color: var(--brand); color: var(--brand-d); }
.fchip.on { background: var(--brand); border-color: var(--brand); color: #fff; }
.fchip .ico { width: 15px; height: 15px; }
.ftools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fsort { font-size: .84rem; font-weight: 700; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.fsort select {
  border: 1.5px solid var(--line-2); border-radius: var(--pill); padding: 8px 12px;
  font-size: .86rem; font-weight: 700; color: var(--ink); background: #fff; cursor: pointer;
}
.viewtoggle { display: inline-flex; background: var(--paper-3); border-radius: var(--pill); padding: 3px; }
.viewtoggle button {
  display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent;
  color: var(--ink-2); font-weight: 700; font-size: .84rem; padding: 8px 14px;
  border-radius: var(--pill); cursor: pointer; box-shadow: none;
}
.viewtoggle button.on { background: #fff; color: var(--brand-d); box-shadow: var(--sh-sm); }
.viewtoggle .ico { width: 15px; height: 15px; }

.res-body { padding-top: 26px; }
.res-head { margin-bottom: 20px; }
.res-head h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.res-count { color: var(--muted); margin-top: 6px; font-weight: 600; }
.rgrid { display: grid; }
.rcard-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.rcard { display: flex; flex-direction: column; }
.rcard-b { display: flex; flex-direction: column; flex: 1; }
.rcard-foot { margin-top: auto; }
.rcard-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 10px; margin-top: 12px; border-top: 1px solid var(--line);
}
.rcard-foot > span { white-space: nowrap; }
.prijs { font-weight: 800; }
.porties { font-size: .8rem; color: var(--muted); font-weight: 600; }
.leeg { text-align: center; color: var(--muted); padding: 50px 20px; font-size: 1.05rem; }
.hidden { display: none !important; }

/* kaartweergave */
.mapview { display: grid; grid-template-columns: 1fr 300px; gap: 20px; }
.map-canvas {
  position: relative; aspect-ratio: 4/3; background: #eef2ea; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(#e0e7dc 2px, transparent 2px), linear-gradient(90deg, #e0e7dc 2px, transparent 2px),
    linear-gradient(#e8eee4 1px, transparent 1px), linear-gradient(90deg, #e8eee4 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
}
.map-me {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 1;
  width: 20px; height: 20px; border-radius: 50%; background: #2c7fb8; border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.map-me span {
  position: absolute; inset: -14px; border-radius: 50%; border: 2px solid rgba(44,127,184,.35);
}
.pin {
  position: absolute; transform: translate(-50%,-50%); z-index: 2;
  background: none; border: 0; padding: 0; cursor: pointer; box-shadow: none;
}
.pin-dot {
  display: block; background: #fff; border: 2px solid var(--brand); color: var(--brand-d);
  font-weight: 800; font-size: .78rem; padding: 5px 10px; border-radius: var(--pill);
  box-shadow: var(--sh-sm); white-space: nowrap; transition: transform .12s;
}
.pin-dot.soon { border-color: var(--amber); color: var(--amber); }
.pin:hover .pin-dot { transform: scale(1.08); }
.pin.actief .pin-dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.map-side { min-width: 0; }
.map-hint { color: var(--muted); font-size: .92rem; padding: 16px; background: var(--paper-2); border-radius: var(--r); }
.map-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; box-shadow: var(--sh-sm); }
.map-card h3 { font-size: 1.1rem; }
.mc-dish { color: var(--ink-2); margin-top: 5px; font-size: .92rem; }
.mc-meta { color: var(--muted); font-size: .85rem; margin: 8px 0 14px; }

/* ══════════════════════════════════════════════════════════
   KOK-PAGINA (/kok/:id)
   ══════════════════════════════════════════════════════════ */
.kok-hero {
  background-size: cover; background-position: center; color: #fff;
  padding: clamp(24px, 4vw, 40px) 0 clamp(30px, 5vw, 52px);
}
.terug { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.9); font-weight: 700; font-size: .9rem; }
.terug .ico { width: 16px; height: 16px; transform: rotate(180deg); }
.terug:hover { color: #fff; }
.kok-keuken {
  display: block; width: fit-content; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--pill); padding: 5px 13px; font-size: .8rem; font-weight: 800; margin: 22px 0 12px;
}
.kok-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; }
.kok-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; color: rgba(255,255,255,.9); font-size: .93rem; font-weight: 600; }
.kok-meta .ster { color: #ffc043; letter-spacing: 1px; }
.kok-status { border-radius: var(--pill); padding: 4px 11px; font-size: .78rem; font-weight: 800; }
.kok-status.open { background: var(--green); color: #fff; }
.kok-status.soon { background: var(--amber); color: #fff; }

.kok-body { padding-top: clamp(26px, 4vw, 44px); }
.kok-grid { display: grid; grid-template-columns: 1fr 330px; gap: clamp(24px, 4vw, 44px); align-items: start; }
.kok-bio h2, .menu-kop { font-size: 1.32rem; margin-bottom: 10px; }
.kok-bio p { color: var(--ink-2); line-height: 1.7; }
.kok-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 24px 0 32px; }
.ki { display: flex; gap: 11px; align-items: flex-start; background: var(--paper-2); border-radius: var(--r-sm); padding: 14px; }
.ki-ic { flex: 0 0 auto; color: var(--brand); }
.ki-ic .ico { width: 20px; height: 20px; }
.ki b { display: block; font-size: .88rem; }
.ki span { color: var(--muted); font-size: .84rem; }

.menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.menu-item {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px;
}
.menu-item.hoofd { border-color: var(--brand); background: var(--brand-soft); }
.mi-info h3 { font-size: 1.04rem; }
.mi-info p { color: var(--muted); font-size: .89rem; margin-top: 4px; }
.mi-porties { display: inline-block; margin-top: 7px; font-size: .76rem; font-weight: 700; color: var(--green); }
.mi-actie { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.mi-prijs { font-weight: 800; }
.mi-add {
  width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--brand); color: #fff;
  font-size: 1.35rem; font-weight: 700; cursor: pointer; box-shadow: 0 4px 12px rgba(255,111,0,.3);
  display: grid; place-items: center; line-height: 1; transition: transform .12s, background .15s;
}
.mi-add:hover { background: var(--brand-d); }
.mi-add.gedaan { transform: scale(1.22); background: var(--green); }

.allergie {
  margin-top: 26px; background: var(--amber-soft); border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0; padding: 15px 18px; font-size: .92rem; color: var(--ink-2); line-height: 1.6;
}

.mand-wrap { position: sticky; top: 90px; }
.mand { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh); }
.mand h2 { font-size: 1.18rem; margin-bottom: 14px; }
.mand-lijst { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.mand-leeg { color: var(--muted); font-size: .92rem; }
.mand-r { display: flex; align-items: center; gap: 9px; font-size: .9rem; }
.mr-n { font-weight: 800; color: var(--brand-d); flex: 0 0 auto; }
.mr-naam { flex: 1; min-width: 0; }
.mr-p { font-weight: 700; flex: 0 0 auto; }
.mr-min {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-2);
  background: #fff; color: var(--ink-2); font-size: 1rem; cursor: pointer; box-shadow: none;
  display: grid; place-items: center; line-height: 1; flex: 0 0 auto; padding: 0;
}
.mr-min:hover { border-color: var(--err, #d34848); color: #d34848; background: #fff; }
.mand-tot { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); font-size: 1.05rem; }
.mand-tot b { font-size: 1.25rem; }
.mand .btn { margin-top: 14px; }
.mand .btn:disabled { background: var(--line-2); color: var(--muted); box-shadow: none; cursor: default; }
.mand-note { color: var(--muted); font-size: .8rem; margin-top: 10px; text-align: center; }

@media (max-width: 900px) {
  .mapview { grid-template-columns: 1fr; }
  .kok-grid { grid-template-columns: 1fr; }
  .mand-wrap { position: static; }
}
@media (max-width: 620px) {
  .res-top .wrap { height: auto; padding-top: 12px; padding-bottom: 12px; }
  .res-search { margin-left: 0; width: 100%; flex-wrap: wrap; }
  /* zelfde verdeling als de zoekkaart op de homepage */
  .res-search input { flex: 1 1 calc(100% - 32px); min-width: 0; }
  .res-search select { flex: 0 0 auto; }
  .res-search .btn { flex: 1 1 auto; min-width: 0; }
  .filterbar .wrap { padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .ftools { width: 100%; justify-content: space-between; gap: 8px; }
  .ftools .fchip { padding: 7px 11px; font-size: .82rem; }
  .fsort { gap: 0; font-size: 0; }               /* label verbergen, select behouden */
  .fsort select { font-size: .82rem; padding: 7px 9px; }
  .viewtoggle button { padding: 7px 11px; font-size: .8rem; }
  .viewtoggle button .ico { display: none; }
  .menu-item { flex-direction: column; align-items: stretch; gap: 12px; }
  .mi-actie { justify-content: space-between; }
}

/* ══════════════════════════════════════════════════════════
   CHECKOUT (/afrekenen) EN BEVESTIGING (/bevestiging)
   ══════════════════════════════════════════════════════════ */
.co-wrap { padding: clamp(22px, 4vw, 40px) 0 60px; }
.terug.donker { color: var(--muted); }
.terug.donker:hover { color: var(--brand-d); }

.co-steps { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 26px; }
.cs {
  font-size: .82rem; font-weight: 700; color: var(--muted);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--pill); padding: 7px 14px;
}
.cs.done { color: var(--green); border-color: #cbe9d9; background: var(--green-soft); }
.cs.actief { color: #fff; background: var(--brand); border-color: var(--brand); }

.co-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(22px, 4vw, 40px); align-items: start; }
.co-form h1 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 22px; }
.co-blok { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; margin: 0 0 16px; }
.co-blok legend { font-weight: 800; font-size: 1.02rem; padding: 0 8px; }
.optioneel { font-weight: 600; font-size: .8rem; color: var(--muted); }
.veld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.veld:last-child { margin-bottom: 0; }
.veld label { font-size: .86rem; font-weight: 700; color: var(--ink-2); }
.veld input, .co-blok textarea {
  border: 1.5px solid var(--line-2); border-radius: var(--r-xs); padding: 12px 14px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff; width: 100%;
}
.veld input:focus, .co-blok textarea:focus { outline: 0; border-color: var(--brand); }
.veld-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.veld-hint { color: var(--muted); font-size: .84rem; margin-top: 4px; }

.sloten { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot span {
  display: inline-block; border: 1.5px solid var(--line-2); border-radius: var(--pill);
  padding: 9px 15px; font-size: .9rem; font-weight: 700; color: var(--ink-2); cursor: pointer; transition: all .15s;
}
.slot input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }
.slot input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.slot span:hover { border-color: var(--brand); }

.betaal {
  display: flex; align-items: center; gap: 13px; border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm); padding: 14px 16px; margin-top: 10px; cursor: pointer; transition: all .15s;
}
.betaal:hover { border-color: var(--brand); }
.betaal:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.betaal input { accent-color: var(--brand); width: 18px; height: 18px; flex: 0 0 auto; }
.bt-ic { display: grid; place-items: center; flex: 0 0 auto; color: var(--ink-2); }
.bt-txt { display: flex; flex-direction: column; }
.bt-txt small { color: var(--muted); font-size: .82rem; }

.akkoord { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0; font-size: .9rem; color: var(--ink-2); line-height: 1.6; }
.akkoord input { accent-color: var(--brand); width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; }
.akkoord a { color: var(--brand-d); font-weight: 700; text-decoration: underline; }
.co-note { display: flex; align-items: center; gap: 8px; justify-content: center; color: var(--muted); font-size: .84rem; margin-top: 12px; }
.co-note .ico { width: 16px; height: 16px; color: var(--green); flex: 0 0 auto; }

.co-side { position: sticky; top: 20px; }
.co-sum { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.cs-kok { display: flex; gap: 12px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.cs-foto { width: 52px; height: 52px; border-radius: var(--r-xs); background-size: cover; background-position: center; flex: 0 0 auto; }
.cs-kok b { display: block; font-size: .98rem; }
.cs-kok span { color: var(--muted); font-size: .82rem; }
.cs-lijst { list-style: none; margin: 16px 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cs-lijst li { display: flex; gap: 9px; font-size: .9rem; }
.cs-leeg { color: var(--muted); }
.cl-n { font-weight: 800; color: var(--brand-d); flex: 0 0 auto; }
.cl-naam { flex: 1; min-width: 0; }
.cl-p { font-weight: 700; flex: 0 0 auto; }
.cs-regel { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); font-size: .95rem; }
.cs-regel.klein { font-size: .86rem; color: var(--muted); border-top: 0; padding-top: 6px; }
.cs-regel.klein b { font-weight: 700; color: var(--ink-2); }
.cs-regel.groen b { color: var(--green); }
.cs-regel.totaal { margin-top: 10px; padding-top: 14px; font-size: 1.05rem; font-weight: 800; }
.cs-regel.totaal b { font-size: 1.3rem; }

/* bevestiging */
.bev { padding: clamp(30px, 5vw, 60px) 0 70px; }
.bev-kaart {
  max-width: 620px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--sh); text-align: center;
}
.bev-vink {
  width: 66px; height: 66px; border-radius: 50%; background: var(--green-soft);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.bev-vink .ico { width: 34px; height: 34px; color: var(--green); stroke-width: 2.6; }
.bev-kaart h1 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.bev-sub { color: var(--ink-2); margin-top: 10px; }
.bev-ref {
  display: inline-flex; align-items: center; gap: 12px; margin: 22px 0 4px;
  background: var(--paper-2); border: 1px dashed var(--line-2); border-radius: var(--pill); padding: 10px 20px;
}
.bev-ref span { color: var(--muted); font-size: .84rem; font-weight: 700; }
.bev-ref b { font-size: 1.1rem; letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.bev-rijen { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; text-align: left; }
.bev-rij { display: flex; gap: 13px; align-items: flex-start; background: var(--paper-2); border-radius: var(--r-sm); padding: 15px 16px; }
.bev-rij.nu { background: var(--brand-soft); border: 1px solid #f7d9bd; }
.br-ic { flex: 0 0 auto; color: var(--brand); display: grid; place-items: center; }
.br-ic .ico { width: 21px; height: 21px; }
.bev-rij b { display: block; }
.bev-rij span { color: var(--muted); font-size: .87rem; }
.bev-tip {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: var(--green-soft); border-radius: var(--r-sm); padding: 13px 16px;
  color: var(--green); font-size: .88rem; font-weight: 600; text-align: left;
}
.bev-tip .ico { width: 18px; height: 18px; flex: 0 0 auto; }
.bev-acties { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

@media (max-width: 900px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-side { position: static; order: -1; }
}
@media (max-width: 560px) {
  .veld-rij { grid-template-columns: 1fr; }
  .sloten { gap: 6px; }
  .slot span { padding: 8px 12px; font-size: .85rem; }
  .bev-acties .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   AANBIEDER-KANT (/word-thuiskok, /aanbieder)
   ══════════════════════════════════════════════════════════ */
.tk-hero { padding: clamp(30px, 5vw, 60px) 0 clamp(36px, 5vw, 64px); }
.tk-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.tk-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 900; letter-spacing: -.04em; margin-top: 16px; }
.tk-hero .lead { color: var(--ink-2); font-size: clamp(1.02rem, 1.6vw, 1.18rem); margin: 18px 0 26px; max-width: 34ch; }
.tk-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.tk-usp { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; padding: 0; margin: 24px 0 0; }
.tk-usp li { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.tk-usp .ico { width: 17px; height: 17px; color: var(--green); }

/* verdiencalculator */
.tk-calc { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px); }
.tk-calc h2 { font-size: 1.25rem; margin-bottom: 18px; }
.calc-r { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; margin-bottom: 18px; align-items: center; }
.calc-r > span { font-size: .9rem; font-weight: 700; color: var(--ink-2); }
.calc-r output { font-weight: 800; color: var(--brand-d); font-variant-numeric: tabular-nums; }
.calc-r input[type=range] { grid-column: 1 / -1; width: 100%; accent-color: var(--brand); margin-top: 2px; }
.calc-uit { border-top: 1px solid var(--line); padding-top: 16px; }
.cu-regel { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 7px; font-size: .95rem; }
.cu-regel.klein { color: var(--muted); font-size: .87rem; }
.cu-regel.groot { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 1.05rem; font-weight: 800; }
.cu-regel.groot b { font-size: 1.5rem; color: var(--green); }
.cu-note { color: var(--muted); font-size: .84rem; margin-top: 10px; }
.cu-note b { color: var(--ink-2); }

/* stappen */
.tk-stappen { background: var(--paper-2); }
.tk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tk-stap { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; position: relative; }
.ts-n {
  position: absolute; top: 16px; right: 18px; font-size: 1.5rem; font-weight: 900;
  color: var(--line-2); line-height: 1;
}
.ts-ic { width: 46px; height: 46px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-d); display: grid; place-items: center; margin-bottom: 14px; }
.ts-ic .ico { width: 22px; height: 22px; }
.tk-stap h3 { font-size: 1.06rem; }
.tk-stap p { color: var(--muted); font-size: .91rem; margin-top: 6px; }

/* quote */
.tk-quote blockquote { max-width: 720px; margin: 0 auto; text-align: center; }
.tk-quote p { font-size: clamp(1.1rem, 2.2vw, 1.42rem); line-height: 1.55; color: var(--ink); }
.tk-quote footer { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 22px; }
.q-av { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; }
.tk-quote footer div { text-align: left; }
.tk-quote footer b { display: block; }
.tk-quote footer span { color: var(--muted); font-size: .86rem; }

/* faq */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 18px; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brand); font-size: 1.35rem; font-weight: 700; line-height: 1; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--ink-2); margin-top: 12px; line-height: 1.65; }

/* aanmeldformulier */
.tk-aanmeld { background: var(--paper-2); }
.aan-kaart { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh); }
.aan-kaart h2 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
.aan-sub { color: var(--muted); margin: 8px 0 24px; }
.aan-form .veld-rij { margin-bottom: 12px; }
.aan-gelukt { text-align: center; }
.aan-gelukt h3 { font-size: 1.3rem; }
.aan-gelukt p { color: var(--muted); margin: 10px 0 20px; }

@media (max-width: 980px) {
  .tk-grid { grid-template-columns: repeat(2, 1fr); }
  .db-stats { grid-template-columns: repeat(2, 1fr); }
  .db-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .tk-hero .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tk-grid { grid-template-columns: 1fr; }
  .tk-cta .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   ACCOUNTS (/registreren, /inloggen) + dashboard-uitbreiding
   ══════════════════════════════════════════════════════════ */
.auth { padding: clamp(30px, 5vw, 60px) 0 70px; background: var(--paper-2); }
.auth-kaart {
  max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh);
}
.auth-kaart.breed { max-width: 680px; }
.auth-kaart h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 14px; }
.auth-sub { color: var(--muted); margin: 10px 0 24px; }
.auth-form .veld-rij { margin-bottom: 12px; }
.auth-alt { text-align: center; color: var(--muted); margin-top: 18px; font-size: .92rem; }
.auth-alt a { color: var(--brand-d); font-weight: 700; }
.verklaring { background: var(--paper-2); border-radius: var(--r-sm); padding: 16px; margin: 18px 0; }
.verklaring .akkoord { margin: 0 0 14px; font-size: .87rem; }
.verklaring .akkoord:last-child { margin-bottom: 0; }
.foutblok {
  background: #fdecec; border-left: 4px solid #d34848; border-radius: 0 12px 12px 0;
  padding: 14px 16px; margin-bottom: 20px; color: #7d2020;
}
.foutblok ul { margin: 8px 0 0; padding-left: 20px; }
.foutblok li { margin: 3px 0; }

.db-banner {
  display: flex; gap: 12px; align-items: flex-start; background: var(--amber-soft);
  border: 1px solid #f0dcb4; border-radius: var(--r-sm); padding: 15px 17px; margin-bottom: 22px;
  color: #6b4a12; line-height: 1.55;
}
.db-banner .ico { flex: 0 0 auto; color: var(--amber); width: 21px; height: 21px; }
.db-leeg { color: var(--muted); font-size: .93rem; padding: 14px 0; }
.db-info { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.db-info li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; background: var(--paper-2); border-radius: var(--r-xs); font-size: .9rem; }
.db-info span { color: var(--muted); }
.st-actief { color: var(--green); }
.st-wacht { color: var(--amber); }
.st-geweigerd, .st-gepauzeerd { color: #d34848; }
.db-privacy { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .84rem; margin-top: 14px; line-height: 1.5; }
.db-privacy .ico { flex: 0 0 auto; width: 16px; height: 16px; color: var(--green); margin-top: 1px; }

/* ══════════════════════════════════════════════════════════
   DASHBOARD — zijbalk + kaarten (naar het model van
   partnerportalen zoals Uber Eats Manager)
   ══════════════════════════════════════════════════════════ */
.dash {
  display: grid; grid-template-columns: 236px 1fr; gap: 26px; align-items: start;
  max-width: var(--maxw); margin: 0 auto; padding: 24px clamp(16px, 4vw, 40px) 70px;
}

/* zijbalk */
.dash-zij { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 18px; }
.dz-kok { display: flex; gap: 11px; align-items: center; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 14px; }
.dz-av { width: 40px; height: 40px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; flex: 0 0 auto; }
.dz-kok b { display: block; font-size: .92rem; line-height: 1.25; }
.dz-kok span { font-size: .78rem; font-weight: 700; }
.dz-nav { display: flex; flex-direction: column; gap: 3px; }
.dz-nav a {
  display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: var(--r-xs);
  font-weight: 700; font-size: .92rem; color: var(--ink-2); transition: background .14s, color .14s;
}
.dz-nav a:hover { background: var(--paper-2); }
.dz-nav a.on { background: var(--brand-soft); color: var(--brand-d); }
.dz-nav .ico { width: 18px; height: 18px; flex: 0 0 auto; }
.dz-badge { margin-left: auto; background: var(--brand); color: #fff; font-size: .72rem; min-width: 20px; height: 20px; border-radius: 999px; display: grid; place-items: center; padding: 0 6px; }
.dz-uit { font-size: .88rem; font-weight: 700; color: var(--muted); padding: 8px 13px; }
.dz-uit:hover { color: #d34848; }

/* hoofdkolom */
.dash-hoofd { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.dash-kop { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.dash-kop h1 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
.dash-datum { color: var(--muted); margin-top: 3px; font-size: .92rem; }
.dash-datum::first-letter { text-transform: uppercase; }

.dash-kaart { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; scroll-margin-top: 20px; }
.dk-kop { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.dk-kop h2 { font-size: 1.14rem; }
.dk-status { margin-left: auto; font-size: .78rem; font-weight: 800; border-radius: var(--pill); padding: 5px 12px; display: inline-flex; align-items: center; gap: 6px; }
.dk-status.live { background: var(--green-soft); color: var(--green); }
.dk-status.uit { background: var(--paper-3); color: var(--muted); }
.dk-status .ico { width: 14px; height: 14px; }
.dk-telling { margin-left: auto; background: var(--brand); color: #fff; font-size: .78rem; font-weight: 800; min-width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; padding: 0 8px; }
.dk-sub { margin-left: auto; color: var(--muted); font-size: .82rem; }

/* verkoop-voortgang */
.verkoop { margin-bottom: 20px; }
.vk-balk { height: 8px; background: var(--paper-3); border-radius: 999px; overflow: hidden; }
.vk-balk span { display: block; height: 100%; background: var(--green); border-radius: 999px; transition: width .4s var(--ease); }
.vk-tekst { color: var(--muted); font-size: .86rem; margin-top: 8px; }
.vk-tekst b { color: var(--ink); }

/* formulier in twee kolommen */
.db-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.db-form .veld { margin-bottom: 0; }
.db-form .veld.breed { grid-column: 1 / -1; }
.db-form .knoprij { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.db-sinds { color: var(--muted); font-size: .84rem; }
/* tijdvelden linksuitgelijnd — iOS centreert ze standaard */
input[type=time], input[type=date], input[type=number] { text-align: left; -webkit-appearance: none; appearance: none; }
input[type=time]::-webkit-date-and-time-value { text-align: left; }
.invoer-pre { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--r-xs); overflow: hidden; background: #fff; }
.invoer-pre:focus-within { border-color: var(--brand); }
.invoer-pre span { padding: 0 4px 0 14px; color: var(--muted); font-weight: 700; flex: 0 0 auto; }
.invoer-pre input { border: 0; border-radius: 0; padding-left: 4px; }
.invoer-pre input:focus { outline: 0; }

/* bestellingen */
.best-lijst { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.best-lijst li { display: grid; grid-template-columns: 54px 1fr auto auto; gap: 12px; align-items: center; background: var(--paper-2); border-radius: var(--r-xs); padding: 13px 15px; }
.bl-tijd { font-weight: 800; color: var(--brand-d); font-variant-numeric: tabular-nums; }
.bl-mid { min-width: 0; }
.bl-mid b { display: block; font-size: .93rem; }
.bl-mid span { color: var(--muted); font-size: .83rem; }
.bl-ref { color: var(--muted); font-size: .76rem; font-variant-numeric: tabular-nums; }
.bl-bedrag { font-size: .95rem; }

.dash-leeg { text-align: center; padding: 30px 20px; color: var(--muted); }
.dash-leeg .ico { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--line-2); stroke-width: 1.5; }
.dash-leeg p { line-height: 1.6; }
.dash-leeg span { font-size: .88rem; }

/* cijfers */
.cijfers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cf { background: var(--paper-2); border-radius: var(--r-xs); padding: 16px; }
.cf b { display: block; font-size: 1.4rem; font-weight: 900; color: var(--brand-d); }
.cf span { color: var(--muted); font-size: .82rem; font-weight: 600; }

/* profiel */
.prof-lijst { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.prof-lijst li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.prof-lijst li:last-child { border-bottom: 0; }
.prof-lijst span { color: var(--muted); }
.prof-lijst b { text-align: right; word-break: break-word; }
.dash-privacy { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .84rem; margin-top: 16px; line-height: 1.5; }
.dash-privacy .ico { flex: 0 0 auto; width: 16px; height: 16px; color: var(--green); margin-top: 1px; }

@media (max-width: 860px) {
  .dash { grid-template-columns: 1fr; gap: 14px; padding-top: 14px; }
  /* kop eerst, daarna een plakkende tabbalk — scheelt schermruimte */
  .dash-zij { position: sticky; top: 0; z-index: 30; order: 2; margin: 0 calc(-1 * clamp(16px, 4vw, 40px));
    padding: 8px clamp(16px, 4vw, 40px); background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line); flex-direction: row; align-items: center; gap: 6px; overflow-x: auto;
    scrollbar-width: none; }
  .dash-zij::-webkit-scrollbar { display: none; }
  .dz-kok, .dz-uit { display: none; }             /* naam staat al in de kop */
  .dz-nav { flex-direction: row; gap: 5px; flex: 1; }
  .dz-nav a { white-space: nowrap; padding: 8px 12px; font-size: .85rem; }
  .dash-kop { order: 1; align-items: flex-start; }
  .dash-kop .btn { padding: 8px 14px; font-size: .85rem; box-shadow: none; }
  .dash-hoofd { display: contents; }               /* kop en tabbalk los kunnen ordenen */
  .db-banner, .dash-kaart { order: 3; }
  .db-banner { padding: 13px 15px; font-size: .92rem; }
  .cijfers { grid-template-columns: repeat(2, 1fr); }
  .best-lijst li { grid-template-columns: 50px 1fr auto; }
  .bl-ref { display: none; }
}
@media (max-width: 560px) {
  .db-form { grid-template-columns: 1fr; }
  .dash-kaart { padding: 18px; }
  .dz-kok b { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* ══════════════════════════════════════════════════════════
   SUPPORT (/support)
   ══════════════════════════════════════════════════════════ */
.sup-hero {
  background: linear-gradient(180deg, var(--brand-soft), var(--paper));
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 5vw, 56px) 0 clamp(26px, 4vw, 44px);
  text-align: center;
}
.sup-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 14px; }
.sup-hero .lead { color: var(--ink-2); max-width: 560px; margin: 12px auto 0; font-size: 1.05rem; }

/* drie kanalen naast elkaar; op mobiel onder elkaar */
.sup-kanalen {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 900px; margin: clamp(24px, 4vw, 34px) auto 0; text-align: left;
}
.sk {
  display: flex; align-items: center; gap: 13px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px;
  box-shadow: var(--sh-sm); transition: transform .15s, box-shadow .15s, border-color .15s;
}
.sk:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--line-2); }
.sk div { flex: 1; min-width: 0; }
.sk b { display: block; font-size: .98rem; }
.sk span:not(.sk-ic) { display: block; color: var(--muted); font-size: .84rem; margin-top: 2px; }
.sk .ico { width: 18px; height: 18px; color: var(--muted); flex: 0 0 auto; }
.sk-ic {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 13px;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-d);
}
.sk-ic .ico { width: 21px; height: 21px; color: inherit; }
.sk.wa .sk-ic { background: #e2f6ec; color: #1eaa5b; }

/* ── veelgestelde vragen, gesplitst per doelgroep ── */
.sup-faq { padding: clamp(36px, 6vw, 64px) 0; background: var(--paper-2); }
.faq-kolommen { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); align-items: start; }
.faq-kolommen .faq { max-width: none; }
.faq-kop {
  display: flex; align-items: center; gap: 9px; font-size: 1.05rem;
  margin-bottom: 14px; color: var(--ink);
}
.faq-kop .ico { width: 19px; height: 19px; color: var(--brand); }
.faq-item p a { color: var(--brand-d); font-weight: 700; }

/* ── contactformulier + zijkolom ── */
.sup-form { padding: clamp(36px, 6vw, 64px) 0 clamp(50px, 7vw, 80px); }
.sup-form .wrap { display: grid; grid-template-columns: 1fr 320px; gap: clamp(22px, 4vw, 40px); align-items: start; }
.sup-kaart {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh);
}
.sup-kaart h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); }
.sup-sub { color: var(--muted); margin: 8px 0 22px; }

/* select en textarea kregen hun stijl in de checkout binnen .co-blok — hier apart */
.veld select, .veld textarea {
  border: 1.5px solid var(--line-2); border-radius: var(--r-xs); padding: 12px 14px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff; width: 100%;
}
.veld textarea { resize: vertical; line-height: 1.6; }
.veld select:focus, .veld textarea:focus { outline: 0; border-color: var(--brand); }
.veld select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e655d' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
  padding-right: 40px;
}

/* geen flex: anders wordt de link een los flex-item en breekt de zin op */
.sup-note {
  position: relative; padding-left: 24px; color: var(--muted);
  font-size: .85rem; line-height: 1.55; margin-top: 16px;
}
.sup-note .ico { position: absolute; left: 0; top: 2px; width: 16px; height: 16px; }
.sup-note a { color: var(--brand-d); font-weight: 700; }

.sup-gelukt { text-align: center; padding: clamp(10px, 3vw, 26px) 0; }
.sup-gelukt h2 { margin-top: 18px; }
.sup-gelukt p { color: var(--ink-2); margin-top: 10px; }

.sup-zij { display: flex; flex-direction: column; gap: 14px; }
.sup-blok {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px 22px;
}
.sup-blok h3 { font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.sup-blok h3 .ico { width: 18px; height: 18px; color: var(--brand); }
.sup-blok p { color: var(--ink-2); font-size: .9rem; line-height: 1.6; margin: 10px 0 16px; }
.sup-links { list-style: none; margin: 14px 0 0; padding: 0; }
.sup-links li + li { border-top: 1px solid var(--line); }
.sup-links a {
  display: block; padding: 10px 0; color: var(--ink-2); font-size: .91rem; font-weight: 600;
}
.sup-links a:hover { color: var(--brand-d); }
.sup-blok.urgent { background: var(--brand-soft); border-color: #ffd9b4; }
.sup-blok.urgent .btn { display: flex; align-items: center; justify-content: center; gap: 8px; }

@media (max-width: 900px) {
  .sup-kanalen { grid-template-columns: 1fr; max-width: 460px; }
  .faq-kolommen { grid-template-columns: 1fr; }
  .sup-form .wrap { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   KAART (Leaflet) — afhaalpunt op de bevestiging
   ══════════════════════════════════════════════════════════ */
.kaart-blok { margin: 0 0 12px; }
.kaart {
  height: 220px; border-radius: var(--r-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-3);
}
.kaart-uit { color: var(--muted); font-size: .88rem; padding: 12px; }

/* Leaflet zet standaard z-index 400+ op zijn panes; hier binnen een kaart
   houden zodat niets over de header valt. */
.kaart .leaflet-pane, .kaart .leaflet-control { z-index: 1; }
.kaart .leaflet-container { font: inherit; }
.kaart .leaflet-control-attribution {
  font-size: .68rem; background: rgba(255,255,255,.86); color: var(--muted);
}
.kaart .leaflet-control-attribution a { color: var(--brand-d); }

/* Eigen speld in de huisstijl in plaats van de standaardafbeelding. */
.bb-speld { background: none; border: 0; }
.bb-speld-punt {
  display: block; width: 26px; height: 26px; border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg); background: var(--brand);
  border: 3px solid #fff; box-shadow: 0 3px 10px rgba(40,20,0,.4);
}

.btn.route { margin: 0 0 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn.route .ico { width: 18px; height: 18px; }
.bev-rij a[href^="tel:"] { color: var(--brand-d); font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   DASHBOARDS — klant, kok en beheer delen deze bouwstenen
   ══════════════════════════════════════════════════════════ */

/* korte terugkoppeling na een actie */
.meldblok {
  background: var(--green-soft); border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 13px 16px; margin-bottom: 18px;
  color: #14603a; font-size: .93rem; font-weight: 600;
}

/* statuspil — één vorm voor bestellingen, koks, aanmeldingen en meldingen */
.pil {
  display: inline-flex; align-items: center; font-size: .74rem; font-weight: 800;
  border-radius: var(--pill); padding: 4px 11px; white-space: nowrap; line-height: 1.4;
}
.pil.nieuw { background: var(--amber-soft); color: #8a5c10; }
.pil.ok    { background: var(--brand-soft); color: var(--brand-d); }
.pil.klaar { background: var(--green-soft); color: var(--green); }
.pil.uit   { background: var(--paper-3); color: var(--muted); }
.dz-kok .pil { margin-top: 3px; }

/* cijfers met een toelichtingsregel eronder */
.cf em { display: block; font-style: normal; color: var(--muted); font-size: .74rem; margin-top: 3px; line-height: 1.4; }
.db-voet { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .85rem; margin-top: 16px; line-height: 1.55; }
.db-voet .ico { flex: 0 0 auto; width: 16px; height: 16px; color: var(--brand); margin-top: 2px; }
.dash-leeg-actie { text-align: center; padding-bottom: 8px; }
.grijs { color: var(--muted); }

/* bestelregels met acties erachter */
.best-lijst li.bl { grid-template-columns: 64px 1fr auto auto auto auto; }
.best-lijst li.geannuleerd { opacity: .58; }
.best-lijst li.opgehaald .bl-tijd { color: var(--green); }
.bl-contact { display: block; margin-top: 3px; color: var(--muted); font-size: .8rem; }
.bl-contact .ico { width: 13px; height: 13px; vertical-align: -2px; }
.bl-contact a { color: var(--brand-d); font-weight: 700; }
.bl-mid em { font-style: normal; color: var(--ink-2); }
.bl-acties { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.bl-acties .btn.sm { padding: 6px 12px; font-size: .8rem; box-shadow: none; }

/* één bestelling, zoals de klant hem ziet */
.bestelkaart {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px; margin-bottom: 14px; text-align: left;
}
.bestelkaart:last-child { margin-bottom: 0; }
.bestelkaart.solo {
  max-width: 620px; margin: 22px auto 0; background: #fff; box-shadow: var(--sh);
  padding: clamp(20px, 3vw, 32px);
}
.bestelkaart.geannuleerd { opacity: .72; }
.bk-kop { display: flex; align-items: flex-start; gap: 12px; }
.bk-kop b { display: block; font-size: 1.02rem; }
.bk-kop span { color: var(--muted); font-size: .87rem; }
.bk-kop .pil { margin-left: auto; }
.bk-ref {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 12px;
  background: #fff; border: 1px dashed var(--line-2); border-radius: var(--pill); padding: 7px 15px;
}
.bestelkaart.solo .bk-ref { background: var(--paper-2); }
.bk-ref span { color: var(--muted); font-size: .78rem; font-weight: 700; }
.bk-ref b { letter-spacing: .06em; font-variant-numeric: tabular-nums; }
.bk-uitleg { color: var(--muted); font-size: .85rem; }
.bk-acties { margin-top: 12px; }
.bestelkaart .bev-rijen { margin: 16px 0 0; }
.bestelkaart .bev-rij { background: #fff; }
.bestelkaart.solo .bev-rij { background: var(--paper-2); }
.bestelkaart .bev-rij.nu { background: var(--brand-soft); }

/* ── tabellen in het beheerscherm ── */
.tabel-schuif { overflow-x: auto; margin: 0 -4px; padding: 0 4px; }
.beheer-tabel { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 720px; }
.beheer-tabel th {
  text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); font-weight: 800; padding: 0 12px 9px; white-space: nowrap;
}
.beheer-tabel td { padding: 11px 12px; border-top: 1px solid var(--line); vertical-align: top; }
.beheer-tabel tr:hover td { background: var(--paper-2); }
.beheer-tabel small { display: block; color: var(--muted); font-size: .76rem; margin-top: 2px; }
.beheer-tabel a { color: var(--brand-d); }

.rij-acties { display: flex; gap: 5px; flex-wrap: wrap; }
.mini {
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
  border-radius: var(--pill); padding: 5px 11px; font-size: .76rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; font-family: inherit; transition: border-color .14s, color .14s, background .14s;
}
.mini:hover { border-color: var(--brand); color: var(--brand-d); }
.mini.actief, .mini.bevestigd, .mini.benaderd, .mini.beantwoord { border-color: #bfe4cd; color: var(--green); }
.mini.actief:hover, .mini.bevestigd:hover { background: var(--green-soft); }
.mini.geweigerd, .mini.geannuleerd { border-color: #f0c8c8; color: #b23c3c; }
.mini.geweigerd:hover, .mini.geannuleerd:hover { background: #fdecec; }

/* ── startersroom ── */
.startkaart { border-color: #f7d9bd; background: linear-gradient(180deg, var(--brand-soft), #fff 130px); }
.start-lijst { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.start-lijst li { display: flex; gap: 12px; align-items: center; background: rgba(255,255,255,.75); border-radius: var(--r-xs); padding: 12px 14px; }
.start-lijst li.af { background: rgba(255,255,255,.45); }
.start-lijst b { display: block; font-size: .93rem; }
.start-lijst li.af b { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1px; }
.start-lijst span { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.start-lijst .mini { margin-left: auto; flex: 0 0 auto; }
.sl-vink {
  width: 24px; height: 24px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--line-2); background: #fff;
}
.start-lijst li.af .sl-vink { background: var(--green); border-color: var(--green); }
.sl-vink .ico { width: 14px; height: 14px; color: #fff; stroke-width: 3; }

/* ── supportmeldingen ── */
.meld-lijst { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ml { background: var(--paper-2); border-radius: var(--r-xs); padding: 14px 16px; }
.ml.gesloten { opacity: .62; }
.ml-kop { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ml-kop b { font-size: .95rem; }
.ml-kop span { color: var(--muted); font-size: .8rem; }
.ml-kop .pil { margin-left: auto; }
.ml p { color: var(--ink-2); font-size: .9rem; line-height: 1.6; margin: 8px 0 12px; white-space: pre-wrap; }

/* ── kaarten in dashboards en zoekresultaten ── */
.kaart-blok.groot .kaart, .kaart.echt { height: clamp(320px, 46vh, 520px); }
.kaart-onder { color: var(--muted); font-size: .8rem; margin-top: 7px; }
.mapview { grid-template-columns: 1fr 320px; }
.mapview .kaart { margin: 0; }

/* prijsspeld op de zoekkaart — het bedrag ís de speld, zoals bij Airbnb */
.bb-prijs { background: none; border: 0; }
.bb-prijs span {
  display: block; background: #fff; border: 2px solid var(--brand); color: var(--brand-d);
  border-radius: var(--pill); padding: 4px 10px; font-weight: 800; font-size: .82rem;
  box-shadow: 0 3px 10px rgba(40,20,0,.22); white-space: nowrap; text-align: center;
}
.bb-prijs.soon span { border-color: var(--line-2); color: var(--muted); }
.bb-prijs:hover span { background: var(--brand); border-color: var(--brand); color: #fff; }
.bb-speld.st-wacht .bb-speld-punt { background: var(--amber); }
.bb-speld.st-gepauzeerd .bb-speld-punt, .bb-speld.st-geweigerd .bb-speld-punt { background: var(--muted); }

/* ── losse velden ── */
.veld-vast { padding: 12px 0; color: var(--muted); font-size: .93rem; }
.co-ingelogd, .co-gast {
  display: flex; gap: 9px; align-items: flex-start; border-radius: var(--r-sm);
  padding: 13px 15px; margin-bottom: 16px; font-size: .9rem; line-height: 1.55;
}
.co-ingelogd { background: var(--green-soft); color: #14603a; }
.co-gast { background: var(--paper-2); color: var(--ink-2); }
.co-ingelogd .ico, .co-gast .ico { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; }
.co-ingelogd a, .co-gast a { color: var(--brand-d); font-weight: 700; text-decoration: underline; }
.cs-onder { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .83rem; margin-top: 12px; line-height: 1.5; }
.cs-onder .ico { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 2px; }
.res-tip { color: var(--muted); }
.gps.op-oranje { color: rgba(255,255,255,.92); }
.menu-item.uit { opacity: .6; }
/* svg staat globaal op display:block; hier moet het icoon in de regel blijven */
.mand-lijst .mr-naam .ico { display: inline-block; width: 15px; height: 15px;
  vertical-align: -3px; margin-right: 6px; color: var(--brand); }
.bl-contact .ico { display: inline-block; }
.mand .kaart-blok { margin-bottom: 16px; }

@media (max-width: 900px) {
  .mapview { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  /* Vaste plaatsing, anders schuift de statuspil op de plek van het bedrag
     zodra .bl-ref wordt verborgen. */
  .best-lijst li.bl { grid-template-columns: 56px 1fr auto; row-gap: 8px; }
  .bl-tijd   { grid-column: 1; grid-row: 1; }
  .bl-mid    { grid-column: 2; grid-row: 1; }
  .bl-bedrag { grid-column: 3; grid-row: 1; }
  .bl-status { grid-column: 2 / -1; grid-row: 2; justify-self: end; }
  .bl-acties { grid-column: 1 / -1; grid-row: 3; justify-content: flex-start; }
  .bestelkaart.solo { padding: 20px; }
}

/* accountlink in de kop — blijft op mobiel staan, dan alleen het icoon */
.nav-links > a.nav-account { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.nav-account .ico { width: 19px; height: 19px; flex: 0 0 auto; }
@media (max-width: 780px) {
  .nav-links > a.nav-account { display: inline-flex; padding: 8px; border-radius: 50%; background: var(--paper-2); }
  .nav-links > a.nav-account .na-tekst { display: none; }
  .nav.on-orange .nav-links > a.nav-account { background: rgba(255,255,255,.16); }
}

/* ══════════════════════════════════════════════════════════
   CORRECTIES — tekstblokjes met een icoon ervoor
   ══════════════════════════════════════════════════════════
   Deze blokjes bevatten losse tekst mét inline links. Met display:flex
   wordt élk kind een flex-item, dus ook zo'n link: die springt dan uit de
   zin en gaat rechts hangen. Daarom staat het icoon hier absoluut en blijft
   de tekst één doorlopende alinea. */
.dash-privacy, .db-voet, .co-ingelogd, .co-gast, .cs-onder, .veld-hint.met-ico {
  display: block; position: relative; padding-left: 26px;
}
.dash-privacy > .ico, .db-voet > .ico, .co-ingelogd > .ico,
.co-gast > .ico, .cs-onder > .ico, .veld-hint.met-ico > .ico {
  position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
}
.co-ingelogd, .co-gast { padding: 13px 15px 13px 38px; }
.co-ingelogd > .ico, .co-gast > .ico { left: 15px; top: 15px; width: 17px; height: 17px; }
.dash-privacy > .ico, .db-voet > .ico { top: 4px; }

/* knoprij: .veld staat op flex-direction:column, dus de knoppen kwamen
   onder elkaar te staan in plaats van naast elkaar */
.db-form .knoprij { flex-direction: row; }

/* code in beheerteksten */
.dash-privacy code, .prof-lijst code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82em;
  background: var(--paper-3); border-radius: 5px; padding: 1px 5px; white-space: nowrap;
}

/* De keukenfilters passen niet altijd op één regel. Horizontaal schuiven is
   hier beter dan afkappen: anders zijn de laatste keukens onbereikbaar. */
.fchips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.fchips::-webkit-scrollbar { display: none; }
.fchips .fchip { flex: 0 0 auto; }

/* ══════════════════════════════════════════════════════════
   BEOORDELINGEN
   ══════════════════════════════════════════════════════════ */
.sterren { display: inline-flex; gap: 1px; color: var(--line-2); font-size: 1rem; line-height: 1; letter-spacing: .04em; }
.sterren .aan { color: var(--amber); }
.sterren.op-foto { color: rgba(255,255,255,.45); }
.sterren.op-foto .aan { color: #ffc44d; }

/* het formulier onder een opgehaalde bestelling */
.beoordeel {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.bo-kop { font-size: .95rem; }

/* Sterren van rechts naar links, zodat "alles links ervan ook aan" met één
   CSS-regel kan: ~ selecteert alleen latere broers, en die staan hier links.
   Werkt daardoor zonder JavaScript. */
.bo-sterren { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.bo-sterren input { position: absolute; opacity: 0; width: 0; height: 0; }
.bo-sterren label {
  font-size: 1.9rem; line-height: 1; color: var(--line-2); cursor: pointer;
  transition: color .12s, transform .12s;
}
.bo-sterren label:hover, .bo-sterren label:hover ~ label,
.bo-sterren input:checked ~ label { color: var(--amber); }
.bo-sterren label:hover { transform: scale(1.12); }
.bo-sterren input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
.beoordeel textarea {
  width: 100%; border: 1.5px solid var(--line-2); border-radius: var(--r-xs);
  padding: 10px 12px; font: inherit; font-size: .92rem; color: var(--ink);
  background: #fff; resize: vertical; line-height: 1.6;
}
.beoordeel textarea:focus { outline: 0; border-color: var(--brand); }

.bo-gegeven {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--muted); font-size: .87rem;
}

/* in de historielijst zit het formulier op een eigen regel */
.bl-beoordeel { grid-column: 1 / -1; }
.bl-beoordeel .beoordeel, .bl-beoordeel .bo-gegeven { margin-top: 10px; padding-top: 10px; }
.bl-beoordeel .beoordeel textarea { max-width: 460px; }

/* de lijst op de kokpagina */
.bo-lijst { margin: 30px 0 0; }
.bo-lijst h2 { font-size: 1.25rem; margin-bottom: 14px; }
.bo-lijst ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bo-lijst li { background: var(--paper-2); border-radius: var(--r-sm); padding: 15px 17px; }
.bo-kop-rij { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bo-kop-rij b { font-size: .93rem; }
.bo-kop-rij span { color: var(--muted); font-size: .82rem; }
.bo-lijst p { color: var(--ink-2); font-size: .93rem; line-height: 1.62; margin: 8px 0 0; }

/* instellingen-checklist in het beheer */
.sl-waar { display: block; margin-top: 4px; }
.sl-waar code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .74rem;
  background: var(--paper-3); border-radius: 5px; padding: 2px 6px; color: var(--muted);
}
.start-lijst li.open .sl-waar code { background: #fff; }

/* concept-waarschuwing boven de juridische pagina's */
.callout.waarschuwing {
  background: var(--amber-soft); border-left: 4px solid var(--amber); color: #6b4a12;
}
.callout.waarschuwing a { color: #6b4a12; text-decoration: underline; font-weight: 700; }

.bev-melding { max-width: 620px; margin: 18px auto 0; }


/* ── lege etalage ──
   Wat er staat zolang er nog geen kok is aangemeld. Geen grijze streep met
   "geen resultaten", maar een uitnodiging: de eerste kok van een buurt is
   degene die het op gang brengt. */
.leeg-etalage {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(34px, 6vw, 62px) clamp(22px, 5vw, 56px);
  text-align: center; box-shadow: 0 18px 44px -32px rgba(60,35,10,.5);
}
.leeg-etalage .le-ic {
  display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 20px;
  border-radius: 20px; background: #fff3e8; color: var(--accent);
}
.leeg-etalage .le-ic svg { width: 30px; height: 30px; }
.leeg-etalage h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); letter-spacing: -.02em; margin: 0; }
.leeg-etalage p { color: var(--ink-2); max-width: 46ch; margin: 12px auto 0; }
.leeg-etalage .le-knoppen {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px;
}
