/* Site-header volgens de design-handoff (2026-08). Tokens uit het WebOké
   design system (tokens.css); Roboto Mono uitsluitend voor technische
   waardes (scores, aantallen, prijzen). */
@font-face {
	font-family: 'Roboto Mono';
	src: url('fonts/roboto-mono-variable.woff2') format('woff2');
	font-weight: 100 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--brand-primary: #1062fe;
	--brand-success: #36c055;
	--brand-success-dark: #1b7d34;
	--accent-yellow: #ffd166;
	--gray-darker: #17191c;
	--gray-base: #5e636e;
	--gray-lighter: #979ba4;
	--gray-lighter-4: #e9eaec;
	--body-bg: #f7f8fa;
	--surface: #ffffff;
	--hero-gradient: linear-gradient(90deg, #152a80, #1d65af);
	--chip-gradient: linear-gradient(135deg, #152a80, #1d65af);
	--shadow-lift: 0 2px 8px rgba(23, 25, 28, .06), 0 24px 48px rgba(23, 25, 28, .12);
	--radius-sm: 8px;
	--ease-standard: cubic-bezier(.4, 0, .2, 1);
	--dur-fast: .15s;
	--dur-base: .25s;
	--container-max: 1288px;
	--container-pad: 24px;
	--font-sans: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-mono: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

.wok-sprite { position: absolute; }

/* Ankers niet onder de sticky header laten verdwijnen. */
html { scroll-padding-top: 90px; }

/* Skip-link: onzichtbaar tot toetsenbord-focus. */
.wok-skip {
	position: absolute; left: -9999px; top: 0; z-index: 60;
	background: var(--brand-primary); color: #fff; font-weight: 600;
	padding: 10px 16px; border-radius: 0 0 var(--radius-sm) 0; text-decoration: none;
}
.wok-skip:focus { left: 0; }

/* ---------- shell ---------- */
/* Font-rendering vastgepind: sommige sectie-CSS zet body op antialiased,
   waardoor de headertekst per pagina dunner/dikker oogde; hier expliciet
   op auto zodat de header op elke pagina identiek rendert. */
.wok-header { position: sticky; top: 0; z-index: 50; -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; }
.wok-header__inner { transition: box-shadow var(--dur-base) var(--ease-standard); }
.wok-header.is-scrolled .wok-header__inner { box-shadow: 0 8px 24px rgba(10, 15, 30, .12); }

/* ---------- infolijn (34px, verdwijnt bij scroll) ---------- */
.wok-infobar {
	max-height: 34px; opacity: 1; overflow: hidden;
	transition: max-height var(--dur-base) var(--ease-standard), opacity .2s var(--ease-standard);
}
.wok-header.is-scrolled .wok-infobar { max-height: 0; opacity: 0; }
.wok-infobar__row {
	height: 34px;
	background: linear-gradient(rgba(13, 20, 45, .22), rgba(13, 20, 45, .22)), var(--hero-gradient);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.wok-container {
	max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad);
	height: 100%; display: flex; align-items: center;
}
.wok-infobar__row > .wok-container { justify-content: space-between; }
.wok-bar__row > .wok-container { gap: 20px; }
.wok-infobar__group { display: flex; align-items: center; gap: 20px; }
.wok-infobar__links { display: flex; align-items: center; gap: 18px; }
.wok-label {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--font-sans); font-size: 12.5px; font-weight: 500;
	color: rgba(255, 255, 255, .78);
}
.wok-eco {
	display: inline-flex; align-items: center; gap: 6px;
	background: rgba(54, 192, 85, .16);
	border: 1px solid rgba(54, 192, 85, .28);
	border-radius: 999px; padding: 2px 11px;
	font-family: var(--font-sans); font-size: 12px; font-weight: 600;
	color: var(--brand-success);
	white-space: nowrap;
}
.wok-eco svg { width: 12px; height: 12px; flex: none; }
a.wok-eco { text-decoration: none; }
a.wok-eco:hover { background: rgba(54, 192, 85, .26); color: var(--brand-success); text-decoration: none; }
.wok-infobar__links a { display: inline-flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
.wok-infolink-ico { width: 13px; height: 13px; opacity: .75; }
.wok-infobar__links a:hover .wok-infolink-ico { opacity: 1; }
.wok-infobar__links a:hover { color: #fff; text-decoration: none; }
.wok-divider { width: 1px; height: 11px; background: rgba(255, 255, 255, .18); }

/* ---------- Trustpilot ---------- */
.wok-tp-chip { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .85); text-decoration: none; font-family: var(--font-sans); font-size: 12px; white-space: nowrap; line-height: 1; }
.wok-tp-chip:hover { color: #fff; text-decoration: none; }
.wok-tp-chip__sterren { flex: none; display: block; color: #fff; }
.wok-tp-chip b { font-weight: 700; color: #fff; }
.wok-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: #fff; }
.wok-num--soft { font-weight: 500; color: rgba(255, 255, 255, .75); }
.wok-tp-mini { display: none; align-items: center; gap: 5px; }
.wok-header.is-scrolled .wok-tp-mini { display: inline-flex; }
.wok-tp-mini__badge { width: 16px; height: 16px; background: #00b67a; border-radius: 4px; display: grid; place-items: center; }
.wok-tp-mini__badge svg { width: 11px; height: 11px; color: #fff; }
.wok-tp-mini b { font-family: var(--font-mono); font-size: 12.5px; color: #fff; }
.wok-bar__actions > .wok-divider { display: none; width: 1px; height: 18px; background: rgba(255, 255, 255, .3); }
.wok-header.is-scrolled .wok-bar__actions > .wok-divider { display: block; }

/* ---------- hoofdbalk (66 → 56px) ---------- */
.wok-bar { height: 66px; transition: height var(--dur-base) var(--ease-standard); }
.wok-header.is-scrolled .wok-bar { height: 56px; }
.wok-bar__row { height: 100%; background: var(--hero-gradient); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.wok-logo { height: 30px; width: auto; display: block; transition: height var(--dur-base) var(--ease-standard); }
.wok-header.is-scrolled .wok-logo { height: 26px; }

/* ---------- navigatie ---------- */
.wok-nav {
	display: flex; align-items: center; gap: 2px; white-space: nowrap;
	background: rgba(255, 255, 255, .13); border-radius: 999px; padding: 4px 5px;
}
.wok-nav__item {
	display: inline-flex; align-items: center; gap: 5px;
	padding: 10px 14px; border: 0; border-radius: 999px;
	font-family: var(--font-sans); font-size: 15px; font-weight: 600; line-height: 1;
	color: #fff;
	background: none; cursor: pointer;
}
.wok-nav__item svg { width: 12px; height: 12px; color: rgba(255, 255, 255, .65); transition: transform var(--dur-fast) var(--ease-standard); }
.wok-nav__item:hover { background: rgba(255, 255, 255, .16); }
.wok-nav__item[aria-expanded="true"] { background: #fff; color: var(--brand-primary); }
.wok-nav__item[aria-expanded="true"] svg { color: var(--brand-primary); transform: rotate(180deg); }
.wok-nav__item:focus-visible, .wok-iconbtn:focus-visible, .wok-account:focus-visible, .wok-lang:focus-visible {
	outline: 2px solid #fff; outline-offset: 2px;
}

/* ---------- rechter cluster ---------- */
.wok-bar__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; white-space: nowrap; }
.wok-iconbtn {
	position: relative; display: grid; place-items: center; width: 34px; height: 34px;
	border-radius: var(--radius-sm); color: #fff; cursor: pointer; text-decoration: none;
}
.wok-iconbtn:hover { background: rgba(255, 255, 255, .16); text-decoration: none; }
.wok-iconbtn svg { width: 19px; height: 19px; }
.wok-cart-wrap { position: relative; display: inline-flex; }
.wok-cart__badge {
	position: absolute; top: 1px; right: 1px; min-width: 14px; height: 14px;
	padding: 0 3px; box-sizing: border-box; border-radius: 999px;
	background: var(--accent-yellow); color: #5b4400;
	font-family: var(--font-mono); font-size: 9px; font-weight: 700;
	display: grid; place-items: center;
}
.wok-cart__badge[hidden] { display: none; }
.wok-account {
	display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px;
	border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 14px; font-weight: 600; line-height: 1;
	color: #fff; cursor: pointer; text-decoration: none;
}
.wok-account:hover { background: rgba(255, 255, 255, .16); text-decoration: none; }
.wok-account svg { width: 18px; height: 18px; flex: none; }
.wok-lang { display: inline-flex; align-items: center; gap: 6px; padding: 7px 8px; border: 0; background: none; border-radius: var(--radius-sm); cursor: pointer; }
.wok-lang:hover { background: rgba(255, 255, 255, .16); }
.wok-lang__flag { display: inline-flex; width: 21px; height: 15px; border-radius: 2.5px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .08); overflow: hidden; }
.wok-lang__flag svg { width: 21px; height: 15px; display: block; }
.wok-lang__chev { width: 12px; height: 12px; color: rgba(255, 255, 255, .65); }
@media (max-width: 1119px) { .wok-account__label { display: none; } }

/* ---------- panels ---------- */
.wok-panel { position: absolute; top: 100%; padding-top: 10px; display: none; z-index: 1; }
.wok-panel[data-open] { display: block; }
.wok-panel__card {
	background: var(--surface); border: 1px solid var(--gray-lighter-4);
	border-radius: 14px; box-shadow: var(--shadow-lift); overflow: hidden;
	transform-origin: 50% 0;
	animation: wok-panel-in .16s var(--ease-standard) both;
}
@keyframes wok-panel-in { from { opacity: 0; transform: translateY(-4px) scale(.985); } to { opacity: 1; transform: none; } }
.wok-panel__card--560 { width: 560px; }
.wok-panel__card--520 { width: 520px; }
.wok-panel__card--480 { width: 480px; }
.wok-panel__card--taal { width: 220px; }
.wok-scrim { position: fixed; inset: 0; z-index: 40; background: rgba(13, 20, 45, .52); display: none; }
.wok-scrim[data-open] { display: block; }

.wok-list { display: flex; flex-direction: column; padding: 14px; }
.wok-row {
	display: flex; align-items: center; gap: 11px; padding: 9px 10px;
	border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
}
.wok-row:hover { background: rgba(16, 98, 254, .05); text-decoration: none; }
.wok-row__icon { flex: none; width: 32px; height: 32px; border-radius: 10px; background: rgba(16, 98, 254, .1); display: grid; place-items: center; color: var(--brand-primary); transition: transform var(--dur-fast) var(--ease-standard); }
.wok-row__icon svg { width: 17px; height: 17px; }
.wok-row__icon .wok-statusstip { background: currentColor; }
.wok-row:hover .wok-row__icon { transform: translateY(-1px); }
.wok-row__icon--green { background: rgba(54, 192, 85, .14); color: var(--brand-success-dark); }
.wok-row__icon--oranje { background: rgba(245, 158, 11, .16); color: #b45309; }
.wok-row__body { flex: 1; font-size: 14px; font-weight: 600; color: var(--gray-darker); }
.wok-row__body--rij { display: inline-flex; align-items: center; gap: 7px; }
.wok-row__sub { display: block; font-size: 12px; font-weight: 400; color: var(--gray-base); }
.wok-price { font-family: var(--font-mono); font-size: 11.5px; color: var(--gray-base); }
.wok-price--donker { color: var(--gray-darker); }
.wok-price--uptime { font-size: 11px; color: var(--brand-success-dark); }
.wok-free { font-size: 11px; font-weight: 700; color: var(--brand-success-dark); }
.wok-badge-new { background: var(--accent-yellow); color: #5b4400; font-size: 8.5px; font-weight: 700; letter-spacing: .8px; padding: 2px 6px; border-radius: 4px; }
.wok-statusstip { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-success); }
.wok-mono-klein { font-family: var(--font-mono); font-size: 11px; font-weight: 400; }

/* megamenu A — kaarten */
.wok-mega-cards { display: grid; grid-template-columns: 1fr 250px; width: 780px; }
.wok-mega-cards__grid { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.wok-card { display: flex; gap: 12px; padding: 12px; border-radius: 10px; cursor: pointer; text-decoration: none; }
/* portal.css (laadt ná dit bestand) heeft een eigen .wok-card-component met
   witte achtergrond/rand/schaduw/marge; binnen de header wint deze scoped
   reset zodat de menukaarten op het glas geen witte tegels worden. */
.wok-header .wok-card { background: none; border: 0; box-shadow: none; margin: 0; overflow: visible; }
.wok-header .wok-card:hover { background: rgba(16, 98, 254, .05); text-decoration: none; }
.wok-card__icon { flex: none; width: 38px; height: 38px; border-radius: 12px; background: rgba(16, 98, 254, .1); display: grid; place-items: center; color: var(--brand-primary); transition: transform var(--dur-fast) var(--ease-standard); }
.wok-card__icon svg { width: 20px; height: 20px; }
.wok-card:hover .wok-card__icon { transform: translateY(-1px); }
.wok-card__icon--groen { background: rgba(54, 192, 85, .14); color: var(--brand-success-dark); }
.wok-card__title { display: flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 700; color: var(--gray-darker); }
.wok-card__sub { display: block; font-size: 12.5px; color: var(--gray-base); margin-top: 2px; }
.wok-mega-cards__aside { background: var(--body-bg); border-left: 1px solid var(--gray-lighter-4); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.wok-aside__icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(54, 192, 85, .14); display: grid; place-items: center; color: var(--brand-success-dark); }
.wok-aside__icon svg { width: 21px; height: 21px; }
.wok-aside__titel { font-size: 14.5px; font-weight: 700; color: var(--gray-darker); }
.wok-aside__tekst { font-size: 12.5px; color: var(--gray-base); line-height: 1.55; }
.wok-aside__link { font-size: 13px; font-weight: 600; }

/* menu-redesign 2026-08: voetstrip, domeinzoeker, support-proof, morph-shell */
.wok-panel__voet { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 16px; border-top: 1px solid var(--gray-lighter-4); background: var(--body-bg); font-size: 12px; }
.wok-mega-cards .wok-panel__voet { grid-column: 1 / -1; }
.wok-voet__status { display: inline-flex; align-items: center; gap: 7px; color: var(--gray-base); text-decoration: none; }
.wok-voet__status:hover { color: var(--gray-darker); text-decoration: none; }
.wok-voet__link { font-weight: 600; font-size: 12px; color: var(--brand-primary); text-decoration: none; white-space: nowrap; }
.wok-voet__link:hover { text-decoration: underline; }
.wok-statusstip--attentie { background: #f59e0b; }
.wok-voet__tlds { display: inline-flex; flex-wrap: wrap; gap: 12px; color: var(--gray-base); font-family: var(--font-mono); font-size: 11.5px; }
.wok-tld b { font-family: var(--font-sans); font-weight: 700; color: var(--gray-darker); }
.wok-domeinzoek { display: flex; gap: 8px; padding: 14px 14px 2px; }
.wok-domeinzoek input { flex: 1; min-width: 0; height: 38px; padding: 0 12px; border: 1px solid var(--gray-lighter-4); border-radius: 9px; font-family: var(--font-sans); font-size: 13px; color: var(--gray-darker); background: var(--surface); }
.wok-domeinzoek input:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: -1px; }
.wok-domeinzoek button { flex: none; height: 38px; padding: 0 18px; border: 0; border-radius: 9px; background: var(--brand-primary); color: #fff; font-family: var(--font-sans); font-size: 13px; font-weight: 600; cursor: pointer; }
.wok-domeinzoek button:hover { filter: brightness(.95); }
.wok-panel__card--support { width: 540px; }
.wok-support__grid { display: grid; grid-template-columns: 1fr 190px; }
.wok-support__aside { justify-content: center; align-items: center; gap: 14px; }
.wok-proof-wa { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-darker); text-decoration: none; text-align: center; }
.wok-proof-wa:hover { text-decoration: underline; }
.wok-proof-wa__logo { width: 44px; height: 44px; color: #25d366; }
.wok-proof-tp { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-base); text-decoration: none; line-height: 1.3; }
.wok-proof-tp:hover { color: var(--gray-darker); text-decoration: none; }
.wok-proof-tp b { color: var(--gray-darker); }
/* morph-shell: één doorlopende kaart-achtergrond die tussen panels van maat
   en positie verwisselt (à la Stripe); de cards zelf worden dan chroomloos. */
.wok-panel-shell { position: absolute; z-index: 0; background: var(--surface); border: 1px solid var(--gray-lighter-4); border-radius: 14px; box-shadow: var(--shadow-lift); opacity: 0; pointer-events: none; transform-origin: 50% 0; }
.wok-panel-shell[data-open] { opacity: 1; }
.wok-panel-shell--in { animation: wok-panel-in .16s var(--ease-standard) both; }
.wok-panel-shell--morph { transition: left .18s var(--ease-standard), top .18s var(--ease-standard), width .18s var(--ease-standard), height .18s var(--ease-standard); }
.wok-heeft-shell .wok-panel__card { background: transparent; border-color: transparent; box-shadow: none; }
/* Liquid-glass (Apple-stijl) op de shell: donker marineblauw glas in de lijn
   van de merkbalk/nav-pill, met witte tekst. Het filter DEMPT de ondergrond
   (brightness omlaag) zodat witte tekst overal stabiel contrast houdt.
   Alleen waar backdrop-filter bestaat; anders blijft het witte paneel staan. */
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
	.wok-panel-shell {
		/* Plat pill-blauw (#3e5aa1, gesampled uit de nav-pill), geen gradient;
		   de lichte blur houdt alleen het glas-randgevoel in stand. */
		background: rgba(62, 90, 161, .96);
		-webkit-backdrop-filter: blur(30px) saturate(1.2);
		backdrop-filter: blur(30px) saturate(1.2);
		border-width: 1.5px; border-color: rgba(255, 255, 255, .28);
		box-shadow: 0 20px 50px rgba(5, 9, 20, .4), 0 2px 10px rgba(5, 9, 20, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
	}
	/* Sub-vlakken licht doorschijnend zodat het glas doorloopt. */
	.wok-heeft-shell .wok-mega-cards__aside { background: rgba(255, 255, 255, .06); border-left-color: rgba(255, 255, 255, .09); }
	.wok-heeft-shell .wok-panel__voet { background: rgba(255, 255, 255, .05); border-top-color: rgba(255, 255, 255, .09); }
	.wok-heeft-shell .wok-domeinzoek input { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); }
	.wok-heeft-shell .wok-domeinzoek input::placeholder { color: rgba(255, 255, 255, .86); }
	.wok-heeft-shell .wok-card:hover, .wok-heeft-shell .wok-row:hover { background: rgba(255, 255, 255, .09); }
	/* Witte tekst op donker glas (zoals de nav-pill in de balk). */
	.wok-heeft-shell .wok-card__title, .wok-heeft-shell .wok-row__body, .wok-heeft-shell .wok-aside__titel,
	.wok-heeft-shell .wok-domeinzoek input { color: #fff; }
	/* .86 i.p.v. lager: minimum voor WCAG AA 4.5:1 op de lichtste ondergrond
	   (zebra-rij/voetstrip); doorgerekend 2026-08-07. */
	.wok-heeft-shell .wok-card__sub, .wok-heeft-shell .wok-row__sub, .wok-heeft-shell .wok-aside__tekst,
	.wok-heeft-shell .wok-price, .wok-heeft-shell .wok-voet__status, .wok-heeft-shell .wok-voet__tlds,
	.wok-heeft-shell .wok-proof-tp { color: rgba(255, 255, 255, .86); }
	.wok-heeft-shell .wok-voet__status:hover { color: #fff; }
	.wok-heeft-shell .wok-price--donker, .wok-heeft-shell .wok-tld b, .wok-heeft-shell .wok-proof-tp b { color: #fff; }
	.wok-heeft-shell .wok-price--uptime, .wok-heeft-shell .wok-free { color: #9aeeb2; }
	.wok-heeft-shell .wok-proof-wa { color: #fff; }
	.wok-heeft-shell .wok-voet__link, .wok-heeft-shell .wok-aside__link { color: #d6e4ff; }
	/* Frosted tegels op het blauw met de secundaire geel-accentkleur voor de
	   glyphs (zelfde geel als het cart-badge); status houdt functioneel
	   groen/oranje met wit voor het contrast. */
	.wok-heeft-shell .wok-card__icon, .wok-heeft-shell .wok-row__icon, .wok-heeft-shell .wok-aside__icon {
		background: rgba(255, 255, 255, .14); color: var(--accent-yellow);
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), inset 0 1.5px 0 rgba(255, 255, 255, .26);
	}
	.wok-heeft-shell .wok-card__icon--groen, .wok-heeft-shell .wok-row__icon--green { background: rgba(74, 222, 128, .26); color: #fff; }
	.wok-heeft-shell .wok-row__icon--oranje { background: rgba(245, 158, 11, .34); color: #fff; }
}
@media (prefers-reduced-transparency: reduce) {
	.wok-panel-shell { background: #3e5aa1; -webkit-backdrop-filter: none; backdrop-filter: none; }
}

/* Mini-mandje (dropdown onder het cart-icoon): zelfde materiaal en taal als
   de menu-panels — pill-blauw met blur, witte tekst, witte CTA-pill. De
   basisopmaak (s-mini-*) staat in site.css; hier alleen de header-huisstijl. */
.wok-header .s-mini {
	background: #3e5aa1;
	border: 1.5px solid rgba(255, 255, 255, .28);
	border-radius: 14px; color: #fff; padding: 18px 16px;
	width: 404px;
	overflow-x: hidden;
	box-shadow: 0 20px 50px rgba(5, 9, 20, .4), 0 2px 10px rgba(5, 9, 20, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
	transform-origin: 100% 0;
	animation: wok-panel-in .16s var(--ease-standard) both;
}
.wok-header .s-mini-regels { overflow-x: hidden;
	/* Witte schuifbalk-variant op de donkere flyout. */
	scrollbar-color: rgba(255,255,255,.35) transparent; }
.wok-header .s-mini-regels::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); }
.wok-header .s-mini-regels::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.45); }
.wok-header .s-mini-kop, .wok-header .s-mini-regel-naam, .wok-header .s-mini-regel-bedrag,
.wok-header .s-mini-totaal-label, .wok-header .s-mini-totaal-bedrag { color: #fff; }
.wok-header .s-mini-regel-sub { color: rgba(255, 255, 255, .86); }
.wok-header .s-mini-totaal-rechts { display: flex; flex-direction: column; align-items: flex-end; }
.wok-header .s-mini-totaal-excl { font-size: 11.5px; font-weight: 400; color: rgba(255, 255, 255, .86); }
.wok-header .s-mini-leeg, .wok-header .s-mini-noot { color: rgba(255, 255, 255, .86); }
/* Elke productregel als gelijke pill (geen zebra): zelfde tint, afgerond,
   met lucht ertussen; icoon-tegeltje in de menustijl (frosted + geel). */
.wok-header .s-mini-regels { gap: 6px; }
.wok-header .s-mini-regel { background: rgba(255, 255, 255, .08); border-radius: 999px; border-bottom: 0; padding: 9px 18px 9px 16px; }
.wok-header .s-mini-regel:nth-child(even) { background: rgba(255, 255, 255, .08); }
.wok-header .s-mini-regel-tekst { flex: 1; }
.wok-header .s-mini-regel-ico { flex: none; width: 28px; height: 28px; border-radius: 999px; background: rgba(255, 255, 255, .14); display: grid; place-items: center; color: var(--accent-yellow); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16); }
.wok-header .s-mini-regel-ico svg { width: 15px; height: 15px; }
.wok-header .s-mini-sluit, .wok-header .s-mini-wis { background: rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .85); }
.wok-header .s-mini-sluit:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.wok-header .s-mini-wis:hover { background: rgba(255, 255, 255, .22); color: #ffb4ba; }
/* Winkelwagen openen in het accentgeel (gebruikerswens 2026-08-15), ook in
   deze donkere headervariant; de Verder zoeken-link is vervallen. */
.wok-header .s-mini-cta { background: var(--accent-yellow, #ffd166); color: #5b4400; box-shadow: 0 2px 8px rgba(5, 9, 20, .25); }
.wok-header .s-mini-cta:hover { background: #f7c74f; color: #5b4400; }
.wok-header .s-mini-sluit:focus-visible, .wok-header .s-mini-wis:focus-visible,
.wok-header .s-mini-cta:focus-visible { outline: 3px solid rgba(255, 255, 255, .55); outline-offset: 2px; }

/* ---------- mobiel: linker menulade ---------- */
.wok-burger { display: none; border: 0; background: none; color: #fff; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); }
.wok-burger svg { display: block; }
.wok-burger:hover { background: rgba(255, 255, 255, .16); }
.wok-lade, .wok-lade-scrim { display: none; }
@media (max-width: 959px) {
	.wok-nav, .wok-account__label, .wok-lang, .wok-tp-mini, .wok-bar__actions > .wok-divider { display: none !important; }
	/* Infolijn compact en gecentreerd: duurzaam-chip + TrustBox. */
	.wok-infobar__links { display: none; }
	.wok-infobar__group { flex: 1; }
	.wok-infobar__row > .wok-container { justify-content: center; }
	.wok-infobar__group { gap: 12px; }
	.wok-burger { display: inline-flex; }
	.wok-bar { height: 58px; }
	.wok-header.is-scrolled .wok-bar { height: 58px; }
	.wok-panel { display: none !important; }

	/* Eigen dimlaag BOVEN de sticky header (die staat op z 50), zodat de lade
	   de hele pagina inclusief kop dimt; #wok-scrim (z 40) blijft van de
	   desktop-panels. Scroll-slot op <html> zolang de lade open is. */
	html.wok-lade-slot, html.wok-lade-slot body { overflow: hidden; }
	.wok-lade-scrim { display: block; position: fixed; inset: 0; z-index: 80; background: rgba(13, 20, 45, .55); opacity: 0; pointer-events: none; transition: opacity .25s var(--ease-standard); }
	.wok-lade-scrim[data-open] { opacity: 1; pointer-events: auto; }
	.wok-lade {
		display: flex; flex-direction: column;
		position: fixed; top: 0; left: 0; bottom: 0; z-index: 85;
		width: min(86vw, 340px); background: var(--surface);
		box-shadow: 0 24px 60px rgba(10, 15, 30, .35);
		transform: translateX(-104%); visibility: hidden;
		transition: transform .28s var(--ease-standard), visibility .28s;
	}
	.wok-lade.open { transform: none; visibility: visible; }
	/* Kop: zelfde blauwe gradient als de headerbalk, wit logo + sluitknop. */
	.wok-lade__kop { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; padding-top: max(14px, env(safe-area-inset-top)); background: var(--hero-gradient, linear-gradient(90deg, #152a80, #1d65af)); }
	.wok-lade__logo { height: 26px; display: block; }
	.wok-lade__sluit { display: grid; place-items: center; width: 40px; height: 40px; flex: none; border: 0; border-radius: 10px; background: rgba(255, 255, 255, .14); color: #fff; cursor: pointer; }
	.wok-lade__sluit:hover { background: rgba(255, 255, 255, .24); }
	.wok-lade__scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 6px 12px 14px; overscroll-behavior: contain; }
	.wok-lade__groep { font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gray-base); margin: 16px 6px 6px; }
	.wok-lade__rij { display: flex; align-items: center; gap: 12px; padding: 9px 8px; border-radius: 12px; text-decoration: none; min-height: 48px; }
	.wok-lade__rij:hover, .wok-lade__rij:active { background: rgba(16, 98, 254, .06); text-decoration: none; }
	.wok-lade__ico { flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(16, 98, 254, .09); color: var(--brand-primary, #1062fe); }
	.wok-lade__ico svg { width: 18px; height: 18px; }
	.wok-lade__ico--groen { background: rgba(54, 192, 85, .12); color: var(--brand-success, #36c055); }
	.wok-lade__ico--oranje { background: rgba(245, 158, 11, .14); color: #b45309; }
	.wok-lade__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
	.wok-lade__titel { display: flex; align-items: center; gap: 7px; font-size: 14.5px; font-weight: 700; color: var(--gray-darker); line-height: 1.3; }
	.wok-lade__sub { font-size: 12px; color: var(--gray-base); line-height: 1.35; }
	.wok-lade__voet { border-top: 1px solid var(--gray-lighter-4); padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 10px; background: var(--body-bg); }
	.wok-lade__account { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; border-radius: 50px; background: var(--btn-primary, #1d65af); color: #fff; font-size: 14.5px; font-weight: 700; text-decoration: none; box-shadow: 0 1px 3px rgba(29, 101, 175, .35); }
	.wok-lade__account:hover { background: #17548f; color: #fff; text-decoration: none; }
	.wok-lade__account svg { fill: none; stroke: currentColor; }
	/* Instel-rij op donkerblauw, zodat de s-btw-toggle (wit-op-donker uit
	   site.css) zijn eigen opmaak houdt. */
	.wok-lade__instel { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #1d4fa6; border-radius: 50px; padding: 6px 8px 6px 14px; }
	.wok-lade__taal { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; text-decoration: none; min-height: 32px; }
	.wok-lade__taal:hover { color: #fff; text-decoration: none; }
	.wok-lade__taal .wok-lang__flag { display: inline-flex; width: 20px; }
	.wok-lade__taal .wok-lang__flag svg, .wok-lade__taal .wok-lang__flag img { width: 20px; height: auto; border-radius: 3px; display: block; }
}
@media (prefers-reduced-motion: reduce) {
	.wok-lade, .wok-lade-scrim { transition: none; }
}

/* ---------- variant: frosted glass (optie 3) ----------
   Patroon van Linear/Vercel/Stripe: doorschijnende balk met backdrop-blur;
   de content schuift er bij het scrollen zichtbaar onderdoor. Blur alleen op
   de twee rijen (niet op de wrapper) zodat de panels niet geclipt worden. */
.wok-header--glas .wok-infobar__row {
	background: linear-gradient(rgba(13, 20, 45, .28), rgba(13, 20, 45, .28)), linear-gradient(90deg, rgba(21, 42, 128, .6), rgba(29, 101, 175, .6));
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
}
.wok-header--glas .wok-bar__row {
	background: linear-gradient(90deg, rgba(21, 42, 128, .6), rgba(29, 101, 175, .6));
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.wok-header--glas.is-scrolled .wok-bar__row {
	background: linear-gradient(90deg, rgba(21, 42, 128, .78), rgba(29, 101, 175, .78));
}
.wok-header--glas .wok-nav { background: rgba(255, 255, 255, .16); }
@supports not (backdrop-filter: blur(1px)) {
	.wok-header--glas .wok-infobar__row { background: linear-gradient(rgba(13, 20, 45, .22), rgba(13, 20, 45, .22)), var(--hero-gradient); }
	.wok-header--glas .wok-bar__row { background: var(--hero-gradient); }
	.wok-header--glas.is-scrolled .wok-bar__row { background: var(--hero-gradient); }
}

/* Paneelwissel zonder herhaalde fade: bij springen tussen open menu's
   verschijnt het volgende panel direct (Stripe-achtig rustig gedrag). */
.wok-panel--direct .wok-panel__card { animation: wok-fade-in .12s var(--ease-standard) both; }
@keyframes wok-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ---------- variant: volledige header als zwevende pill (optie 2) ---------- */
.wok-header--zweef { padding: 10px 16px 0; }
.wok-header--zweef .wok-header__inner {
	max-width: var(--container-max);
	margin: 0 auto;
	position: relative;
}
.wok-header--zweef .wok-container { max-width: none; }
.wok-header--zweef .wok-infobar__row {
	border-radius: 22px 22px 0 0;
}
.wok-header--zweef .wok-bar__row {
	border-radius: 0 0 22px 22px;
	border-bottom: 0;
	box-shadow: 0 12px 30px rgba(10, 15, 30, .16);
}
.wok-header--zweef.is-scrolled .wok-bar__row { border-radius: 999px; }
.wok-header--zweef.is-scrolled .wok-header__inner { box-shadow: none; }
@media (max-width: 959px) {
	.wok-header--zweef { padding: 8px 10px 0; }
	.wok-header--zweef .wok-bar__row { border-radius: 0 0 18px 18px; }
	.wok-header--zweef .wok-infobar__row { border-radius: 18px 18px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
	.wok-infobar, .wok-bar, .wok-logo, .wok-header__inner, .wok-nav__item svg { transition: none; }
	.wok-card__icon, .wok-row__icon { transition: none; }
	.wok-panel__card { animation: none; }
	.wok-panel-shell--in { animation: none; }
	.wok-panel-shell--morph { transition: none; }
	.wok-header .s-mini { animation: none; }
}
