/* =========================================================================
   DTH Premium — Hoofdstyling
   Kleuren: #3736BF (merkblauw), #000000 (zwart), #FFFFFF (wit)
   Typografie: Space Grotesk (koppen) + Inter (lopende tekst)
   ========================================================================= */

:root {
	/* Merkkleuren (vastgelegd door DTH) */
	--dth-blue: #3736BF;
	--dth-blue-bright: #6664e6; /* lichtere tint, alleen voor gebruik op donkere vlakken */
	--dth-blue-deep: #262571;  /* donkerder, voor hover-states op lichte knoppen */
	--dth-black: #000000;
	--dth-white: #ffffff;

	/* Afgeleide, neutrale tinten (geen afwijking van het merk, enkel hulpkleuren) */
	--dth-ink: #0a0a0c;        /* bijna-zwart, voorkomt "verstopte" felle zwarte vlakken op scherm */
	--dth-mist: #f4f4f7;       /* lichte sectie-achtergrond met vleugje merkblauw */
	--dth-line: #e3e3ea;
	--dth-slate: #6b6b76;

	--font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

	--container-w: 1240px;
	--radius-sm: 4px;
	--radius-md: 12px;
	--radius-pill: 999px;
	--ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* -------------------------------------------------------------------------
   Basistypografie
   ---------------------------------------------------------------------- */

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--dth-black);
	background: var(--dth-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	color: var(--dth-black);
}

h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; }

a { transition: color 0.15s var(--ease); }

body:not(.dth-transparent-header) { padding-top: var(--dth-header-height, 97px); } /* JS meet dit hierna exact opnieuw in (zie main.js) */

::selection {
	background: var(--dth-blue);
	color: var(--dth-white);
}

:focus-visible {
	outline: 2px solid var(--dth-blue);
	outline-offset: 3px;
}

.dth-container {
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: 24px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link.screen-reader-text:focus {
	position: fixed !important;
	top: 12px; left: 12px;
	width: auto; height: auto;
	background: var(--dth-black);
	color: var(--dth-white);
	padding: 10px 16px;
	z-index: 10000;
	border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------
   Knoppen
   ---------------------------------------------------------------------- */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 0.95rem;
	white-space: nowrap;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.button:active { transform: scale(0.98); }

.button--primary {
	background: var(--dth-blue);
	color: var(--dth-white);
}
.button--primary:hover { background: var(--dth-blue-deep); }

.button--primary-invert {
	background: var(--dth-white);
	color: var(--dth-black);
}
.button--primary-invert:hover { background: var(--dth-mist); }

.button--ghost {
	background: transparent;
	color: var(--dth-black);
	border-color: var(--dth-line);
}
.button--ghost:hover { border-color: var(--dth-black); }

.button--ghost-invert {
	background: transparent;
	color: var(--dth-white);
	border-color: rgba(255, 255, 255, 0.5);
}
.button--ghost-invert:hover { border-color: var(--dth-white); }

.button--block { width: 100%; }

/* -------------------------------------------------------------------------
   Formulieren (registratie, login, dashboard)
   ---------------------------------------------------------------------- */

.dth-form { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }

.dth-form__row { display: flex; gap: 18px; }
.dth-form__row--split > * { flex: 1 1 0; }
.dth-form__row--between { align-items: center; justify-content: space-between; flex-wrap: wrap; }

.dth-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; }
.dth-field span { font-weight: 600; color: var(--dth-black); }
.dth-field input,
.dth-field select,
.dth-field textarea {
	font: inherit;
	padding: 13px 16px;
	border: 1.5px solid var(--dth-line);
	border-radius: var(--radius-sm);
	background: var(--dth-white);
	color: var(--dth-black);
	transition: border-color 0.15s var(--ease);
}
.dth-field input:focus,
.dth-field select:focus,
.dth-field textarea:focus {
	border-color: var(--dth-blue);
	outline: none;
}
.dth-field__hint { color: #b3261e; font-size: 0.85rem; margin: -8px 0 0; }

.dth-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--dth-slate); }
.dth-checkbox input { margin-top: 3px; accent-color: var(--dth-blue); }
.dth-checkbox--inline { align-items: center; }

.form-notice {
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	margin-bottom: 18px;
	font-size: 0.9rem;
}
.form-notice ul { list-style: disc; padding-left: 1.2em; margin: 0; }
.form-notice--error { background: #fdecea; color: #7a1712; border: 1px solid #f3b7b0; }
.form-notice--success { background: #eaf6ee; color: #1c5e34; border: 1px solid #b8e2c4; }

.dth-status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	font-size: 0.8rem;
	font-weight: 600;
	margin: 10px 0 22px;
}
.dth-status-badge.is-pending { background: #fff3d6; color: #8a5a00; }
.dth-status-badge.is-approved { background: #eaf6ee; color: #1c5e34; }
.dth-status-badge.is-rejected { background: #fdecea; color: #7a1712; }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */

/*
 * De header is consistent op elke pagina: een donkere balk
 * (kleur instelbaar via Uiterlijk > Aanpassen > Site-identiteit) met
 * wit logo en witte tekst. Alleen op de homepage begint hij volledig
 * transparant over de hero-animatie, en wordt hij bij het scrollen
 * dezelfde donkere balk als op de rest van de site.
 *
 * De header staat altijd op position:fixed (nooit sticky). Belangrijke
 * reden: Safari/iOS heeft een bekende bug waarbij een "position:fixed"
 * element (het mobiele menu) binnenin een "position:sticky" voorouder
 * niet correct over de hele pagina wordt getoond. Met position:fixed
 * als voorouder treedt die bug niet op. De ruimte die de header anders
 * zou innemen wordt met JS gecompenseerd (zie main.js) omdat de
 * hoogte varieert met de logo-grootte-instelling.
 */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	background: var(--dth-header-bg, #2b2b30);
	color: var(--dth-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header a:not(.button) { color: var(--dth-white); }

.dth-transparent-header .site-header {
	background: transparent;
	border-bottom-color: transparent;
	transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dth-transparent-header .site-header.is-scrolled {
	background: var(--dth-header-bg, #2b2b30);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding-block: 16px;
}

.site-header__logo { justify-self: start; }
.site-header__logo img {
	height: var(--dth-logo-height, 64px);
	width: auto;
	max-width: 260px;
}

.site-header__nav { justify-self: center; min-width: 0; }
.primary-menu { display: flex; gap: 28px; }
.primary-menu a {
	font-weight: 500;
	font-size: 0.95rem;
	color: inherit;
	white-space: nowrap;
}
.primary-menu a:hover { color: var(--dth-blue-bright); }

/* Duplicaat van de acties, alleen zichtbaar binnen het mobiele
   uitklapmenu (zie media query verderop). Op desktop verborgen. */
.site-header__nav-actions { display: none; }

.site-header__actions { justify-self: end; display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.site-header__account,
.site-header__login {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	font-size: 0.92rem;
	white-space: nowrap;
}
.site-header__cart { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.site-header__action-label { display: none; } /* op desktop: alleen het winkelwagen-icoon */
.site-header__cart-count {
	position: absolute;
	top: -8px; right: -10px;
	background: var(--dth-blue);
	color: var(--dth-white);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1;
	min-width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2px;
}

.site-header__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 6px;
	color: inherit;
	flex-shrink: 0;
	justify-self: end;
}
.site-header__burger span {
	width: 22px; height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

/* -------------------------------------------------------------------------
   Hero — zwevende producten die bij het scrollen "naar je toe" komen
   ---------------------------------------------------------------------- */

.hero {
	position: relative;
	height: 280vh; /* scroll-traject: hoe hoger, hoe "trager" de animatie */
	background: var(--dth-ink);
}

.hero__pin {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(60% 60% at 50% 40%, rgba(55, 54, 191, 0.35), transparent 70%),
		var(--dth-ink);
}

.hero__stage {
	position: absolute;
	inset: 0;
}

.hero__item {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 110px;
	height: 110px;
	color: rgba(255, 255, 255, 0.92);
	pointer-events: none;
	transform:
		translate3d(
			calc(-50% + var(--fx) + (var(--sx) * (1 - var(--p, 0)))),
			calc(-50% + var(--fy) + (var(--sy) * (1 - var(--p, 0)))),
			0
		)
		rotate(calc(var(--sr) * (1 - var(--p, 0)) * 1deg))
		scale(calc(var(--sscale) + (1 - var(--sscale)) * var(--p, 0)));
	opacity: calc(var(--sop) + (1 - var(--sop)) * var(--p, 0));
	will-change: transform, opacity;
}

.hero__item-inner {
	animation: dthFloat 6s ease-in-out infinite;
}
.hero__item-inner svg { width: 100%; height: 100%; }
.hero__item-inner model-viewer {
	width: 100%;
	height: 100%;
	--poster-color: transparent;
	background-color: transparent;
	pointer-events: none; /* decoratief - laat scroll/klikken er "doorheen" gaan */
}

@keyframes dthFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
	.hero__item {
		transform: translate3d(calc(-50% + var(--fx)), calc(-50% + var(--fy)), 0) !important;
		opacity: 1 !important;
	}
	.hero__item-inner { animation: none !important; }
}

.hero__copy {
	position: relative;
	z-index: 2;
	max-width: 680px;
	text-align: center;
	padding-inline: 24px;
	color: var(--dth-white);
}
.hero__copy h1 { color: var(--dth-white); }
.hero__subtitle {
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	color: rgba(255, 255, 255, 0.78);
	max-width: 52ch;
	margin-inline: auto;
}
.hero__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.hero__scrollcue {
	position: absolute;
	bottom: 34px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
}
.hero__scrollcue span {
	width: 1px;
	height: 34px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
	animation: dthScrollcue 1.8s ease-in-out infinite;
}
@keyframes dthScrollcue {
	0% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
	50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
	100% { transform: scaleY(0.3); opacity: 0.3; transform-origin: top; }
}

/* -------------------------------------------------------------------------
   Over ons
   ---------------------------------------------------------------------- */

.about { padding: 120px 0; background: var(--dth-white); }
.about__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 80px;
	align-items: center;
}
.about__text p { color: var(--dth-slate); font-size: 1.05rem; max-width: 56ch; }
.about__stat {
	background: var(--dth-black);
	color: var(--dth-white);
	border-radius: var(--radius-md);
	padding: 48px 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.about__stat-number {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 4vw, 3.4rem);
	font-weight: 700;
	color: var(--dth-blue-bright);
	line-height: 1;
}
.about__stat-label { color: rgba(255, 255, 255, 0.75); max-width: 30ch; }

/* -------------------------------------------------------------------------
   Showcase
   ---------------------------------------------------------------------- */

.showcase { padding: 40px 0 130px; background: var(--dth-mist); }
.showcase__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}
.showcase__all { font-weight: 600; color: var(--dth-blue); }
.showcase__all:hover { color: var(--dth-blue-deep); }
.showcase__empty {
	background: var(--dth-white);
	border: 1px dashed var(--dth-line);
	border-radius: var(--radius-md);
	padding: 48px;
	text-align: center;
	color: var(--dth-slate);
}

/* -------------------------------------------------------------------------
   Winkeloverzicht: lay-out met filter-sidebar
   ---------------------------------------------------------------------- */

.shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 48px;
	align-items: start;
	padding-block: 48px;
}
/* De filters renderen in de HTML ná de productlijst (zo werkt de
   WooCommerce-hook nu eenmaal), maar staan visueel links: */
.shop-sidebar { order: 1; }
.shop-layout__content { order: 2; }

.shop-sidebar {
	position: sticky;
	top: calc(var(--dth-header-height, 97px) + 24px);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.shop-filter-widget {
	padding-bottom: 26px;
	margin-bottom: 26px;
	border-bottom: 1px solid var(--dth-line);
}
.shop-filter-widget:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.shop-filter-widget__title {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 14px;
}

/* Generieke filterlijsten (categorieën, attributen, beoordeling) */
.shop-filter-widget ul { display: flex; flex-direction: column; gap: 4px; }
.shop-filter-widget ul ul { margin-top: 4px; margin-left: 14px; }
.shop-filter-widget li { list-style: none; }
.shop-filter-widget li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 7px 8px;
	border-radius: var(--radius-sm);
	color: var(--dth-slate);
	font-size: 0.9rem;
	transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.shop-filter-widget li > a:hover { background: var(--dth-mist); color: var(--dth-black); }
.shop-filter-widget .count { color: var(--dth-slate); font-size: 0.8rem; }

/* Filter op attribuut/categorie: aangevinkte staat */
.shop-filter-widget li.chosen > a,
.shop-filter-widget li.chosen-ancestor > a {
	color: var(--dth-blue);
	font-weight: 600;
	background: var(--dth-mist);
}

/* "Actieve filters" widget: verwijderbare chips */
.widget_layered_nav_filters ul { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.widget_layered_nav_filters li > a {
	background: var(--dth-mist);
	padding: 6px 12px 6px 10px;
	border-radius: var(--radius-pill);
	font-size: 0.82rem;
}
.widget_layered_nav_filters li > a::before { content: '✕'; font-size: 0.7em; }

/* Filter op beoordeling: sterren als tekstlabel houden, simpel en leesbaar */
.widget_rating_filter li > a { align-items: center; }

/* Filter op prijs (jQuery UI slider) */

/* Functionele basis-CSS - de jQuery UI-slider heeft dit nodig om
   correct te positioneren/schalen; dit staat los van WooCommerce's
   eigen (uitgeschakelde) stylesheet, dus dit thema levert het zelf. */
.ui-slider {
	position: relative;
	touch-action: none;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	touch-action: none;
	-webkit-tap-highlight-color: transparent;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	display: block;
	border: 0;
	font-size: 0.7em;
}
.ui-slider-horizontal { height: 4px; }
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
.ui-slider-horizontal .ui-slider-handle {
	top: -7px;
	width: 18px;
	height: 18px;
	margin-left: -9px;
}

/* Cosmetisch: DTH-huisstijl */
.price_slider_wrapper { padding-top: 6px; }
.price_slider { margin-bottom: 18px; margin-inline: 6px; }
.price_slider .ui-slider {
	background: var(--dth-line);
	border-radius: var(--radius-pill);
}
.price_slider .ui-slider-range {
	background: var(--dth-blue);
	border-radius: var(--radius-pill);
}
.price_slider .ui-slider-handle {
	background: var(--dth-white);
	border: 2px solid var(--dth-blue);
	border-radius: 50%;
	cursor: grab;
	outline: none;
	box-shadow: 0 2px 6px rgba(10, 10, 12, 0.2);
}
.price_slider_amount { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price_slider_amount .amount { font-size: 0.85rem; color: var(--dth-slate); }
.price_slider_amount button.button {
	padding: 9px 18px;
	font-size: 0.82rem;
	background: var(--dth-blue);
	color: var(--dth-white);
	border-radius: var(--radius-pill);
	white-space: nowrap;
}
.price_slider_amount button.button:hover { background: var(--dth-blue-deep); }

/* -------------------------------------------------------------------------
   "DTH Zekerheden" - vertrouwensbalk op de productpagina
   ---------------------------------------------------------------------- */

.dth-trust-badges { background: var(--dth-mist); padding: 56px 0; margin-top: 8px; }
.dth-trust-badges__grid {
	max-width: var(--container-w);
	margin-inline: auto;
	padding-inline: 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.dth-trust-badges__item { text-align: left; }
.dth-trust-badges__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--dth-white);
	color: var(--dth-blue);
	margin-bottom: 16px;
}
.dth-trust-badges__item h3 { font-size: 1rem; margin-bottom: 6px; }
.dth-trust-badges__item p { color: var(--dth-slate); font-size: 0.88rem; margin: 0; }

/* -------------------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------------- */

.testimonials { padding: 20px 0 100px; background: var(--dth-white); }
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.testimonials__item {
	margin: 0;
	background: var(--dth-mist);
	border-radius: var(--radius-md);
	padding: 36px 32px 30px;
	display: flex;
	flex-direction: column;
}
.testimonials__mark {
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	color: var(--dth-blue-bright);
	margin-bottom: 4px;
}
.testimonials__item blockquote {
	margin: 0 0 20px;
	flex: 1;
}
.testimonials__item blockquote p {
	margin: 0;
	font-size: 1.02rem;
	color: var(--dth-black);
}
.testimonials__item figcaption { display: flex; flex-direction: column; }
.testimonials__name { font-weight: 600; font-size: 0.92rem; }
.testimonials__role { color: var(--dth-slate); font-size: 0.85rem; }

/* -------------------------------------------------------------------------
   B2B banner
   ---------------------------------------------------------------------- */

.b2b-banner { background: var(--dth-black); color: var(--dth-white); padding: 90px 0; }
.b2b-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.b2b-banner__text h2 { color: var(--dth-white); max-width: 18ch; }
.b2b-banner__text p { color: rgba(255, 255, 255, 0.72); max-width: 48ch; }
.b2b-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */

.site-footer { background: var(--dth-ink); color: rgba(255, 255, 255, 0.75); padding-top: 80px; }
.site-footer__top {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 56px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand img { width: 140px; margin-bottom: 16px; }
.site-footer__brand p { max-width: 32ch; color: rgba(255, 255, 255, 0.55); }
.site-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--dth-white);
	transition: background-color 0.15s var(--ease);
}
.site-footer__social a:hover { background: var(--dth-blue); }
.site-footer__col h3,
.footer-widget__title {
	color: var(--dth-white);
	font-size: 0.95rem;
	margin-bottom: 16px;
}
.site-footer__col ul,
.footer-widget ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a:hover { color: var(--dth-white); }
.site-footer__bottom {
	padding-block: 24px;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
}

/* -------------------------------------------------------------------------
   Auth: inloggen / registreren (split screen)
   ---------------------------------------------------------------------- */

.auth-split { display: grid; grid-template-columns: 0.85fr 1.15fr; min-height: 100vh; }
.auth-split__panel--brand {
	background: var(--dth-black);
	color: var(--dth-white);
	display: flex;
	align-items: center;
	padding: 60px;
}
.auth-split__brand-inner { max-width: 380px; }
.auth-split__brand-inner img { width: 140px; margin-bottom: 40px; }
.auth-split__brand-inner h1 { color: var(--dth-white); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.auth-split__brand-inner > p { color: rgba(255, 255, 255, 0.72); }
.auth-split__points { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.auth-split__points li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, 0.85); }
.auth-split__points svg { flex-shrink: 0; color: var(--dth-blue-bright); margin-top: 2px; }
.auth-split__foot { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.auth-split__foot a { color: var(--dth-blue-bright); font-weight: 600; }

.auth-split__panel--form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
}
.auth-split__form-inner { width: 100%; max-width: 460px; }
.auth-split__intro { color: var(--dth-slate); margin-bottom: 28px; }
.dth-form__forgot { font-size: 0.88rem; color: var(--dth-blue); font-weight: 600; }

/* -------------------------------------------------------------------------
   Contactpagina
   ---------------------------------------------------------------------- */

.contact-split { padding: 80px 0 110px; }
.contact-split__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 64px;
	align-items: start;
}
.contact-split__form h2 { margin-bottom: 6px; }
.contact-split__form-intro { color: var(--dth-slate); margin-bottom: 28px; }

.contact-split__info { display: flex; flex-direction: column; gap: 28px; }
.contact-split__info-card {
	background: var(--dth-mist);
	border-radius: var(--radius-md);
	padding: 32px;
}
.contact-split__info-card h3 { font-size: 1.05rem; margin-bottom: 20px; }
.contact-split__list { display: flex; flex-direction: column; gap: 20px; }
.contact-split__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-split__list strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-split__list a { color: var(--dth-blue); font-weight: 500; }
.contact-split__list span { color: var(--dth-slate); font-size: 0.92rem; }
.contact-split__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--dth-white);
	color: var(--dth-blue);
}

.contact-split__banner {
	background: var(--dth-black);
	color: var(--dth-white);
	border-radius: var(--radius-md);
	padding: 32px;
}
.contact-split__banner h3 { color: var(--dth-white); font-size: 1.05rem; margin-bottom: 8px; }
.contact-split__banner p { color: rgba(255, 255, 255, 0.72); margin-bottom: 20px; font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   Dashboard (B2B-omgeving)
   ---------------------------------------------------------------------- */

.dashboard { background: var(--dth-mist); min-height: 70vh; padding: 60px 0 100px; }
.dashboard__inner { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }

.dashboard__sidebar {
	background: var(--dth-black);
	color: var(--dth-white);
	border-radius: var(--radius-md);
	padding: 32px 26px;
	position: sticky;
	top: calc(var(--dth-header-height, 97px) + 24px);
}
.dashboard__welcome { color: rgba(255, 255, 255, 0.55); margin-bottom: 2px; font-size: 0.85rem; }
.dashboard__sidebar h1 { color: var(--dth-white); font-size: 1.4rem; margin-bottom: 4px; }
.dashboard__company { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.dashboard__nav { display: flex; flex-direction: column; gap: 4px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }
.dashboard__nav a {
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.92rem;
	font-weight: 500;
}
.dashboard__nav a:hover,
.dashboard__nav a.is-active { background: rgba(255, 255, 255, 0.08); color: var(--dth-white); }
.dashboard__logout { margin-top: 8px; color: rgba(255, 255, 255, 0.5) !important; }

.dashboard__content { display: flex; flex-direction: column; gap: 36px; }
.dashboard__section {
	background: var(--dth-white);
	border-radius: var(--radius-md);
	padding: 34px;
	border: 1px solid var(--dth-line);
}
.dashboard__section h2 { font-size: 1.25rem; }
.dashboard__muted { color: var(--dth-slate); }

.dashboard__banner { border-radius: var(--radius-md); padding: 28px 32px; }
.dashboard__banner--pending { background: #fff8e8; border: 1px solid #f3d9a0; }
.dashboard__banner--rejected { background: #fdecea; border: 1px solid #f3b7b0; }
.dashboard__banner h2 { font-size: 1.1rem; }

.dashboard__table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.dashboard__table th, .dashboard__table td {
	text-align: left;
	padding: 12px 10px;
	border-bottom: 1px solid var(--dth-line);
}
.dashboard__table th { color: var(--dth-slate); font-weight: 600; font-size: 0.82rem; }

.dashboard__meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }
.dashboard__meta dt { font-size: 0.78rem; color: var(--dth-slate); margin-bottom: 4px; }
.dashboard__meta dd { margin: 0; font-weight: 500; }

/* -------------------------------------------------------------------------
   Generieke pagina's / blog
   ---------------------------------------------------------------------- */

.dth-page-header { background: var(--dth-black); color: var(--dth-white); padding: 90px 0 60px; }
.dth-page-header h1 { color: var(--dth-white); margin-bottom: 0; }
.dth-page-header p { color: rgba(255, 255, 255, 0.7); margin-top: 12px; }

.prose { max-width: 72ch; margin: 60px auto; }
.prose h2 { margin-top: 1.4em; }
.prose p { color: var(--dth-slate); }
.prose img { border-radius: var(--radius-md); margin: 24px 0; }
.prose a { color: var(--dth-blue); text-decoration: underline; }

.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 60px 0; }
.post-list__thumb { display: block; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; aspect-ratio: 4/3; }
.post-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-list__excerpt { color: var(--dth-slate); font-size: 0.92rem; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-bottom: 60px; }

.error-404 { text-align: center; padding: 120px 0; }
.error-404 .button { margin-top: 24px; }
.error-404 .search-form { max-width: 420px; margin: 24px auto; }

/* -------------------------------------------------------------------------
   Standaard WordPress-widgets (zoekformulier, eventuele footer-widgets)
   ---------------------------------------------------------------------- */

.search-form {
	display: flex;
	gap: 10px;
}
.search-form .search-form__label,
.search-form label { flex: 1; margin: 0; }
.search-form .search-field {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--dth-line);
	border-radius: var(--radius-sm);
	font: inherit;
}
.search-form .search-submit {
	padding: 13px 22px;
	border: none;
	border-radius: var(--radius-sm);
	background: var(--dth-blue);
	color: var(--dth-white);
	font-weight: 600;
}
.search-form .search-submit:hover { background: var(--dth-blue-deep); }

.widget { margin-bottom: 32px; }
.widget-title,
.widget h2,
.widget h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	margin-bottom: 14px;
}
.widget ul { display: flex; flex-direction: column; gap: 8px; }
.widget select {
	padding: 10px 12px;
	border: 1.5px solid var(--dth-line);
	border-radius: var(--radius-sm);
	font: inherit;
}

/* -------------------------------------------------------------------------
   Responsief
   ---------------------------------------------------------------------- */

@media (max-width: 960px) {
	.about__grid { grid-template-columns: 1fr; gap: 40px; }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
	.auth-split { grid-template-columns: 1fr; }
	.auth-split__panel--brand { padding: 48px 32px; }
	.dashboard__inner { grid-template-columns: 1fr; }
	.dashboard__sidebar { position: static; }
	.post-list { grid-template-columns: repeat(2, 1fr); }
	.shop-layout { grid-template-columns: 1fr; }
	.shop-sidebar { position: static; order: 2; }
	.shop-layout__content { order: 1; }
	.dth-trust-badges__grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials__grid { grid-template-columns: 1fr; }
	.contact-split__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
	/* Header-balk zelf blijft leeg: alleen logo (grid) + burger. Menu,
	   inloggen/account/winkelwagen zitten allemaal in de uitklap. */
	.site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
	.site-header__actions { display: none; }

	.site-header__nav {
		position: fixed;
		inset: 0;
		background: var(--dth-black);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 32px;
		overflow-y: auto;
		z-index: 90;
		/* Verborgen via opacity/visibility (niet enkel transform) - dat
		   voorkomt dat het menu "onzichtbaar maar aanwezig" blijft
		   hangen, en is betrouwbaarder op mobiele browsers. */
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
	}
	.site-header__nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
	}

	.primary-menu { flex-direction: column; text-align: center; gap: 22px; }
	.primary-menu a { color: var(--dth-white); font-size: 1.4rem; }

	.site-header__nav-actions {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		margin-top: 20px;
		padding-top: 28px;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		width: 100%;
		max-width: 320px;
	}
	.site-header__nav-actions .site-header__login,
	.site-header__nav-actions .site-header__account,
	.site-header__nav-actions .site-header__cart {
		color: var(--dth-white);
		font-size: 1.05rem;
	}
	.site-header__nav-actions .site-header__action-label { display: inline; }
	.site-header__nav-actions .site-header__cart-count {
		position: static;
		margin-left: 6px;
		border-radius: var(--radius-pill);
		padding: 2px 9px;
		min-width: 0;
		height: auto;
	}
	.site-header__nav-actions .button { width: 100%; }

	.site-header__burger { display: flex; }
	.site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
	.site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.hero__item { width: 70px; height: 70px; }
	.about, .showcase, .b2b-banner { padding: 70px 0; }
	.b2b-banner__inner { flex-direction: column; align-items: flex-start; }
	.site-footer__top { grid-template-columns: 1fr; }
	.dth-form__row--split { flex-direction: column; }
	.post-list { grid-template-columns: 1fr; }
	.dashboard__meta { grid-template-columns: 1fr; }
	.dth-trust-badges__grid { grid-template-columns: 1fr; gap: 28px; }
}
