/* ============================================================
 * Patch & Score v2 — Layer 1: Global tokens, reset, base
 * ============================================================ */

:root {
	--ink:        #0D0D0D;
	--ink-soft:   #1C1C1C;
	--chalk:      #F7F5F0;
	--paper:      #FFFFFF;
	--grass:      #1B6B3F;
	--grass-dk:   #0F4A2A;
	--clay:       #C24A24;
	--lime:       #C24A24;
	--grey:       #6B6660;
	--grey-soft:  #A8A39B;
	--line:       #E4E0D8;

	--f-head:     "Archivo", system-ui, sans-serif;
	--f-body:     "Inter", system-ui, sans-serif;
	--f-mono:     "Inter", system-ui, sans-serif;

	--radius:     4px;
	--radius-lg:  8px;
	--ease:       cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--chalk); }
body { font-family: var(--f-body); color: var(--ink); background: var(--chalk); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
.screen-reader-text { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(194,74,36,0.6); } 100% { box-shadow: 0 0 0 8px rgba(194,74,36,0); } }
@keyframes pulse-grass { 0% { box-shadow: 0 0 0 0 rgba(27,107,63,0.55); } 100% { box-shadow: 0 0 0 8px rgba(27,107,63,0); } }

.util-bar { background: var(--ink); color: var(--chalk); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.util-bar .row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; }
.util-bar .left { display: flex; gap: 24px; align-items: center; }
.util-bar .right { display: flex; gap: 18px; }
.util-bar a { color: inherit; }
.util-bar a:hover { color: var(--lime); }
.util-bar .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 var(--lime); animation: pulse 2s infinite; display: inline-block; margin-right: 8px; vertical-align: middle; }
@media (max-width: 720px) { .util-bar .right { display: none; } .util-bar .row { justify-content: center; padding: 8px 0; } .util-bar .left { gap: 0; position: relative; flex: 1 1 auto; height: 14px; overflow: hidden; } .util-bar .left span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; white-space: nowrap; opacity: 0; transition: opacity .45s ease; pointer-events: none; } .util-bar .left span.is-active { opacity: 1; } }

.header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header .row { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 18px 0; }
.header .logo img { height: 30px; width: auto; }
.header .search { background: var(--chalk); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--grey); max-width: 480px; width: 100%; justify-self: center; }
.header .search input { border: 0; background: transparent; outline: 0; flex: 1; color: var(--ink); font: inherit; }
.header .icons { display: flex; gap: 22px; align-items: center; font-size: 13px; font-weight: 500; }
.header .icons a { display: flex; align-items: center; gap: 6px; }
.header .cart { background: var(--ink); color: var(--chalk); padding: 9px 14px; border-radius: 999px; font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; }
.header .cart .count { background: var(--lime); color: var(--chalk); padding: 1px 7px; border-radius: 999px; margin-left: 6px; font-weight: 700; }
@media (max-width: 900px) { .header .row { grid-template-columns: auto 1fr; gap: 16px; } .header .search { display: none; } }

/* ---------- Primary nav (top-level + dropdown) ---------- */
.nav-bar { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 49; }
.nav-bar .row { display: flex; justify-content: center; padding: 0; }
.nav-bar .ps-nav-menu { list-style: none; display: flex; gap: 36px; padding: 14px 0; font-size: 14px; font-weight: 600; font-family: var(--f-head); text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.nav-bar .ps-nav-menu > li { position: relative; }
.nav-bar .ps-nav-menu a { display: inline-flex; align-items: center; gap: 6px; }
.nav-bar .ps-nav-menu a:hover { color: var(--grass); }
.nav-bar .ps-nav-menu a.sale { color: var(--clay); }
.nav-bar .ps-nav-menu > li.active > a { color: var(--ink); border-bottom: 2px solid var(--lime); padding-bottom: 12px; margin-bottom: -14px; }
.nav-bar .ps-nav-menu > li.has-children > a::after { content: ""; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform .18s var(--ease); }
.nav-bar .ps-nav-menu > li.has-children:hover > a::after,
.nav-bar .ps-nav-menu > li.has-children:focus-within > a::after { transform: rotate(180deg); }

/* Dropdown panel */
.nav-bar .ps-nav-menu .sub-menu { list-style: none; position: absolute; top: calc(100% + 1px); left: 0; min-width: 220px; background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--lime); box-shadow: 0 12px 30px rgba(0,0,0,0.08); padding: 8px 0; margin: 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s; z-index: 60; text-transform: none; letter-spacing: 0; }
.nav-bar .ps-nav-menu > li:hover > .sub-menu,
.nav-bar .ps-nav-menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear 0s; }
.nav-bar .ps-nav-menu .sub-menu li { display: block; }
.nav-bar .ps-nav-menu .sub-menu a { display: block; padding: 9px 18px; font-size: 13px; font-weight: 500; white-space: nowrap; color: var(--ink); }
.nav-bar .ps-nav-menu .sub-menu a:hover { background: var(--chalk); color: var(--grass); }
.nav-bar .ps-nav-menu .sub-menu .sub-menu { top: -9px; left: 100%; }

/* Mobile: scroll-row, dropdown disabled (klein scherm → drawer komt later) */
@media (max-width: 720px) {
	.nav-bar .row { justify-content: flex-start; }
	.nav-bar .ps-nav-menu { gap: 20px; overflow-x: auto; padding: 12px 20px; font-size: 13px; -webkit-overflow-scrolling: touch; }
	.nav-bar .ps-nav-menu > li.has-children > a::after { display: none; }
	.nav-bar .ps-nav-menu .sub-menu { display: none; }
}

.breadcrumb { background: var(--chalk); padding: 18px 0 6px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--grey); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 10px; opacity: 0.5; }
.breadcrumb .current { color: var(--ink); font-weight: 500; }

/* ============================================================
 * Mobile header — burger + icon-bar + search overlay + drawer
 * Desktop: alles verborgen (origineel .icons + .search blijven).
 * Mobile (<=900px): logo gecentreerd, burger links, icoonbar rechts.
 * ============================================================ */

.ps-mh-burger,
.ps-mh-actions { display: none; }

.header .ps-mh-burger {
	width: 40px; height: 40px;
	display: none;
	flex-direction: column; justify-content: center; align-items: center;
	gap: 5px;
	color: var(--ink);
	border-radius: var(--radius);
	transition: background .15s var(--ease);
}
.header .ps-mh-burger span {
	display: block;
	width: 22px; height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.header .ps-mh-burger:hover { background: var(--chalk); }

.ps-mh-actions {
	align-items: center;
	gap: 4px;
}
.ps-mh-iconbtn {
	position: relative;
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--ink);
	border-radius: var(--radius);
	transition: background .15s var(--ease), color .15s var(--ease);
}
.ps-mh-iconbtn:hover { background: var(--chalk); color: var(--grass); }
.ps-mh-iconbtn svg { display: block; }

.ps-mh-badge {
	position: absolute;
	top: 4px; right: 2px;
	min-width: 16px; height: 16px; padding: 0 4px;
	background: var(--clay);
	color: var(--chalk);
	font-family: var(--f-mono);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 16px;
	text-align: center;
	border-radius: 999px;
	border: 1.5px solid var(--paper);
	pointer-events: none;
}
.ps-mh-badge--cart { background: var(--ink); }

/* ---- Mobile breakpoint ---- */
@media (max-width: 900px) {
	.header .row {
		grid-template-columns: auto 1fr auto;
		gap: 8px;
		padding: 12px 0;
	}
	.header .logo { justify-self: center; }
	.header .logo img { height: 26px; }

	.header .search,
	.header .icons,
	.nav-bar { display: none !important; }

	.header .ps-mh-burger { display: flex; }
	.ps-mh-actions { display: inline-flex; justify-self: end; }
}
@media (max-width: 400px) {
	.ps-mh-iconbtn { width: 36px; height: 36px; }
	.ps-mh-actions { gap: 0; }
}

/* ============================================================
 * Search overlay — slidet vanaf bovenkant uit.
 * ============================================================ */
.ps-search-overlay {
	position: fixed; inset: 0;
	z-index: 200;
	background: rgba(13,13,13,0.55);
	backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity .28s var(--ease);
	display: flex; align-items: flex-start;
}
.ps-search-overlay.is-open { opacity: 1; }
.ps-search-overlay[hidden] { display: none; }

.ps-search-overlay__inner {
	background: var(--paper);
	width: 100%;
	padding: 22px 40px;
	display: flex; align-items: center; gap: 16px;
	border-bottom: 1px solid var(--line);
	transform: translateY(-12px);
	transition: transform .28s var(--ease);
	box-shadow: 0 12px 30px -10px rgba(0,0,0,0.18);
	max-width: none;
}
.ps-search-overlay.is-open .ps-search-overlay__inner { transform: translateY(0); }

.ps-search-overlay__form {
	flex: 1;
	display: flex; align-items: center; gap: 10px;
	border-bottom: 1px solid var(--ink);
	padding: 6px 0;
	color: var(--ink);
}
.ps-search-overlay__form svg { color: var(--grey); flex-shrink: 0; }
.ps-search-overlay__form input {
	flex: 1;
	border: 0; outline: 0; background: transparent;
	font-family: var(--f-head);
	font-size: 20px;
	letter-spacing: -0.01em;
	color: var(--ink);
	padding: 6px 0;
	min-width: 0;
}
.ps-search-overlay__form input::placeholder { color: var(--grey-soft); }

.ps-search-overlay__close {
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 28px; line-height: 1;
	color: var(--ink);
	border-radius: var(--radius);
	flex-shrink: 0;
}
.ps-search-overlay__close:hover { background: var(--chalk); color: var(--clay); }

@media (max-width: 720px) {
	.ps-search-overlay__inner { padding: 16px 20px; gap: 8px; }
	.ps-search-overlay__form input { font-size: 16px; } /* >=16px voorkomt iOS zoom */
}

body.ps-search-open,
body.ps-drawer-open { overflow: hidden; }

/* ============================================================
 * Mobile drawer — schuift vanaf links uit.
 * ============================================================ */
.ps-drawer {
	position: fixed; top: 0; left: 0; bottom: 0;
	z-index: 210;
	width: min(86vw, 360px);
	background: var(--paper);
	color: var(--ink);
	transform: translateX(-105%);
	transition: transform .32s var(--ease);
	display: flex; flex-direction: column;
	box-shadow: 0 0 0 transparent;
	overflow: hidden;
}
.ps-drawer.is-open {
	transform: translateX(0);
	box-shadow: 24px 0 60px -20px rgba(0,0,0,0.35);
}

.ps-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
	background: var(--ink); color: var(--chalk);
}
.ps-drawer__eyebrow {
	font-family: var(--f-mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lime);
}
.ps-drawer__close {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--chalk);
	font-size: 26px; line-height: 1;
	border-radius: var(--radius);
}
.ps-drawer__close:hover { background: rgba(255,255,255,0.08); color: var(--lime); }

.ps-drawer__body { flex: 1; overflow-y: auto; padding: 8px 0; }
.ps-drawer-menu, .ps-drawer__body ul {
	list-style: none; margin: 0; padding: 0;
}
.ps-drawer__body li { display: block; }
.ps-drawer__body a {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 22px;
	font-family: var(--f-head);
	font-size: 15px; font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink);
	border-bottom: 1px solid var(--line);
}
.ps-drawer__body a:hover,
.ps-drawer__body .current-menu-item > a { color: var(--grass); background: var(--chalk); }
.ps-drawer__body .sub-menu {
	background: var(--chalk);
}
.ps-drawer__body .sub-menu a {
	padding-left: 38px;
	font-family: var(--f-body);
	font-weight: 500;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ink-soft);
	border-bottom: 1px solid rgba(228,224,216,0.6);
}

.ps-drawer__foot {
	border-top: 1px solid var(--line);
	background: var(--chalk);
	padding: 12px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 8px;
}
.ps-drawer__shortcut {
	position: relative;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 6px;
	padding: 12px 6px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-family: var(--f-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink);
	text-align: center;
}
.ps-drawer__shortcut:hover { color: var(--grass); border-color: var(--ink); }
.ps-drawer__shortcut--cart { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.ps-drawer__shortcut--cart:hover { background: var(--grass); border-color: var(--grass); color: var(--chalk); }
.ps-drawer__count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 18px; height: 18px; padding: 0 5px;
	background: var(--clay); color: var(--chalk);
	border-radius: 9px;
	font-size: 10px; font-weight: 700;
	position: absolute; top: 6px; right: 6px;
}
.ps-drawer__count--cart { background: var(--lime); }

.ps-drawer-scrim {
	position: fixed; inset: 0;
	z-index: 205;
	background: rgba(13,13,13,0.55);
	backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
	opacity: 0; visibility: hidden;
	transition: opacity .28s var(--ease), visibility 0s linear .28s;
}
.ps-drawer-scrim.is-open {
	opacity: 1; visibility: visible;
	transition: opacity .28s var(--ease), visibility 0s linear 0s;
}

/* Op ≥901px geen drawer (desktop heeft .nav-bar) */
@media (min-width: 901px) {
	.ps-drawer, .ps-drawer-scrim { display: none !important; }
}
/* ============================================================
 * Contact page (page-contact.php) — patch-score stijl
 * ============================================================ */

.ps-contact-page { background: var(--chalk); }

.ps-contact-section {
	padding: 72px 0 96px;
}
.ps-contact-wrap { max-width: 1100px; }

.ps-contact-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 56px;
}
.ps-contact-head .ps-eyebrow {
	display: inline-block;
	font-family: var(--f-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--clay);
	margin-bottom: 14px;
	padding: 5px 12px;
	border: 1px solid var(--clay);
	border-radius: 999px;
}
.ps-contact-title {
	font-family: var(--f-head);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--ink);
	text-transform: uppercase;
	margin: 0 0 18px;
}
.ps-contact-intro {
	font-size: 17px;
	line-height: 1.6;
	color: var(--grey);
	margin: 0 auto;
	max-width: 540px;
}

.ps-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

/* ---------- Info aside ---------- */
.ps-contact-info {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	position: sticky;
	top: 24px;
}
.ps-contact-info-title {
	font-family: var(--f-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--grey);
	margin: 0 0 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}
.ps-contact-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}
.ps-contact-item:last-of-type { border-bottom: 0; }
.ps-contact-icon {
	flex-shrink: 0;
	width: 38px; height: 38px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--chalk);
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--grass);
}
.ps-contact-item > div {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 4px;
	min-width: 0;
}
.ps-contact-label {
	font-family: var(--f-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--grey-soft);
}
.ps-contact-item a {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	word-break: break-word;
	transition: color .15s var(--ease);
}
.ps-contact-item a:hover { color: var(--clay); }
.ps-contact-item span:not(.ps-contact-label):not(.ps-contact-icon) {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
}

.ps-contact-ig {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	padding: 10px 16px;
	background: var(--ink);
	color: var(--chalk);
	border-radius: 999px;
	font-family: var(--f-mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	transition: background .15s var(--ease), color .15s var(--ease);
}
.ps-contact-ig:hover { background: var(--clay); color: var(--chalk); }
.ps-contact-ig-icon { display: inline-flex; }

/* ---------- Form card ---------- */
.ps-contact-form-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 40px 40px 36px;
}
.ps-contact-form-title {
	font-family: var(--f-head);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 6px;
}
.ps-contact-form-sub {
	font-size: 14px;
	color: var(--grey);
	margin: 0 0 28px;
}

.ps-contact-success,
.ps-contact-error {
	padding: 14px 16px;
	border-radius: var(--radius);
	font-size: 14px;
	margin-bottom: 22px;
	border: 1px solid;
}
.ps-contact-success {
	background: rgba(27,107,63,0.08);
	border-color: var(--grass);
	color: var(--grass-dk);
}
.ps-contact-success strong { display: block; margin-bottom: 2px; font-weight: 700; }
.ps-contact-error {
	background: rgba(194,74,36,0.08);
	border-color: var(--clay);
	color: var(--clay);
}

.ps-contact-form { display: flex; flex-direction: column; gap: 18px; position: relative; }
.ps-field { display: flex; flex-direction: column; gap: 6px; }
.ps-field-label {
	font-family: var(--f-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--grey);
}
.ps-field-label .req { color: var(--clay); margin-left: 2px; }
.ps-field input,
.ps-field textarea {
	width: 100%;
	background: var(--chalk);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 13px 14px;
	font-family: var(--f-body);
	font-size: 15px;
	color: var(--ink);
	transition: border-color .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.ps-field input:hover,
.ps-field textarea:hover { border-color: var(--grey-soft); }
.ps-field input:focus,
.ps-field textarea:focus {
	outline: 0;
	border-color: var(--ink);
	background: var(--paper);
	box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}
.ps-field textarea { resize: vertical; min-height: 140px; }
.ps-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.ps-contact-form .ps-btn-primary {
	margin-top: 6px;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--ink);
	color: var(--chalk);
	font-family: var(--f-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 999px;
	transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.ps-contact-form .ps-btn-primary:hover {
	background: var(--clay);
	color: var(--chalk);
	transform: translateY(-1px);
}
.ps-contact-form .ps-btn-primary .arr { transition: transform .15s var(--ease); }
.ps-contact-form .ps-btn-primary:hover .arr { transform: translateX(4px); }

.ps-contact-form-footer {
	margin-top: 14px;
	font-size: 12px;
	color: var(--grey);
	line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.ps-contact-section { padding: 48px 0 72px; }
	.ps-contact-head { margin-bottom: 36px; }
	.ps-contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.ps-contact-info { position: static; }
	.ps-contact-form-card { padding: 28px 22px 26px; }
	.ps-field-row { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 480px) {
	.ps-contact-section { padding: 36px 0 56px; }
	.ps-contact-info { padding: 24px 20px; }
	.ps-contact-form-card { padding: 24px 18px; }
	.ps-field input,
	.ps-field textarea { font-size: 16px; } /* prevent iOS zoom */
}


/* reCAPTCHA v2 widget on contact form */
.ps-recaptcha-wrap{margin:4px 0 18px;display:flex;justify-content:flex-start}
@media (max-width:380px){.ps-recaptcha-wrap{transform:scale(.88);transform-origin:0 0;margin-bottom:0}}


/* ---------- Home V2 — mobile overrides for inline-styled sections ---------- */
@media (max-width: 900px){
  /* Hero — full-width text, geen 50/50 split */
  .ps-hero-section{ min-height:auto !important; background-position:center 20% !important; }
  .ps-hero-section > div:first-child{ width:100% !important; padding:96px 20px 64px !important; background:linear-gradient(180deg, rgba(15,23,30,0.55) 0%, rgba(15,23,30,0.78) 100%); }
  .ps-hero-section > div:nth-child(2){ display:none !important; }
  .ps-hero-section .ps-hero-title{ font-size: clamp(40px, 11vw, 64px) !important; line-height:1.02 !important; }
  .ps-hero-section .ps-hero-lead{ max-width:none !important; }
  .ps-hero-section .ps-hero-lead p{ font-size:15px !important; line-height:1.55 !important; }

  /* UCL banner — 1 kolom op mobiel */
  .ps-home-banner{ padding:48px 0 !important; }
  .ps-home-banner .wrap{ grid-template-columns:1fr !important; gap:32px !important; padding:40px 24px !important; }
  .ps-home-banner .wrap > div:nth-child(2){ aspect-ratio:16/10 !important; max-width:420px; margin:0 auto; width:100%; }
  .ps-home-banner .stamp{ width:96px !important; height:96px !important; font-size:13px !important; }

  /* Story — 1 kolom op mobiel */
  .ps-home-story{ padding:56px 0 !important; }
  .ps-home-story .wrap{ grid-template-columns:1fr !important; gap:32px !important; }
  .ps-home-story .ps-story-media img{ width:100%; height:auto; max-height:420px; object-fit:cover; border-radius:6px; }
}


/* Over ons page ====================================================== */
.ps-about-section{padding:72px 0 96px;}
.ps-about-wrap{max-width:820px;margin:0 auto;padding:0 24px;}
.ps-about-head{text-align:center;margin-bottom:40px;}
.ps-about-head .ps-eyebrow{display:inline-block;background:var(--clay,#c75c3a);color:#fff;padding:6px 14px;border-radius:999px;font-family:'Archivo',sans-serif;font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:18px;}
.ps-about-title{font-family:'Archivo',sans-serif;font-weight:800;text-transform:uppercase;font-size:clamp(34px,6vw,56px);line-height:1.05;letter-spacing:-.01em;color:var(--ink,#0e0e10);margin:0 0 18px;}
.ps-about-intro{font-size:18px;line-height:1.6;color:#444;max-width:640px;margin:0 auto;}
.ps-about-image{margin:0 0 40px;border-radius:14px;overflow:hidden;background:#f2f2f2;}
.ps-about-image img{display:block;width:100%;height:auto;max-height:520px;object-fit:cover;}
.ps-about-content{font-size:17px;line-height:1.7;color:#1c1c1f;}
.ps-about-content > *:first-child{margin-top:0;}
.ps-about-content > *:last-child{margin-bottom:0;}
.ps-about-content p{margin:0 0 18px;}
.ps-about-content h2{font-family:'Archivo',sans-serif;font-weight:800;text-transform:uppercase;font-size:clamp(24px,3.4vw,32px);letter-spacing:-.005em;margin:40px 0 14px;color:var(--ink,#0e0e10);}
.ps-about-content h3{font-family:'Archivo',sans-serif;font-weight:700;text-transform:uppercase;font-size:20px;letter-spacing:.02em;margin:28px 0 10px;color:var(--ink,#0e0e10);}
.ps-about-content ul,.ps-about-content ol{margin:0 0 18px;padding-left:22px;}
.ps-about-content li{margin:0 0 6px;}
.ps-about-content a{color:var(--clay,#c75c3a);text-decoration:underline;text-underline-offset:3px;}
.ps-about-content a:hover{color:var(--ink,#0e0e10);}
.ps-about-content blockquote{margin:24px 0;padding:14px 20px;border-left:3px solid var(--clay,#c75c3a);background:#faf6f3;font-style:italic;color:#333;}
@media (max-width:720px){
  .ps-about-section{padding:48px 0 72px;}
  .ps-about-wrap{padding:0 20px;}
  .ps-about-head{margin-bottom:28px;}
  .ps-about-intro{font-size:16px;}
  .ps-about-image{margin-bottom:28px;border-radius:10px;}
  .ps-about-image img{max-height:340px;}
  .ps-about-content{font-size:16px;line-height:1.65;}
}


/* ============================================================
 * SIDE CART — slide-in paneel (zelfde functies als referentie)
 * z-index boven alles. Patch & Score stijl: ink/chalk/clay/grass.
 * ============================================================ */
body.ps-sc-locked { overflow: hidden; }

.ps-sc-backdrop {
	position: fixed; inset: 0;
	background: rgba(13,13,13,0.55);
	backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
	opacity: 0; pointer-events: none;
	transition: opacity .32s var(--ease);
	z-index: 10099;
}
.ps-sc-backdrop.is-open { opacity: 1; pointer-events: auto; }

.ps-sc {
	position: fixed; top: 0; right: 0; height: 100vh;
	width: 440px; max-width: 92vw;
	background: var(--chalk);
	display: flex; flex-direction: column;
	transform: translateX(105%);
	transition: transform .4s var(--ease);
	z-index: 10100;
	box-shadow: -30px 0 60px -20px rgba(13,13,13,0.35);
}
.ps-sc.is-open { transform: translateX(0); }
.ps-sc.is-loading { opacity: .7; pointer-events: none; }

.ps-sc__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 24px;
	background: var(--ink); color: var(--chalk);
}
.ps-sc__head h2 {
	font-family: var(--f-head);
	font-size: 18px; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.04em;
	line-height: 1; color: var(--chalk);
	display: flex; align-items: center; gap: 10px;
}
.ps-sc__count {
	font-family: var(--f-mono);
	font-size: 11px; font-weight: 700;
	background: var(--clay); color: var(--chalk);
	padding: 3px 9px; border-radius: 999px;
	line-height: 1; min-width: 22px; text-align: center;
}
.ps-sc__count.is-pulse,
.header .cart .count.is-pulse,
.ps-mh-badge--cart.is-pulse { animation: ps-sc-pulse .5s var(--ease); }
@keyframes ps-sc-pulse { 0%,100% { transform: scale(1); } 40% { transform: scale(1.25); } }

.ps-sc__close {
	width: 38px; height: 38px; border-radius: var(--radius);
	background: rgba(255,255,255,0.08); color: var(--chalk);
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; line-height: 1;
	transition: background .15s var(--ease), color .15s var(--ease);
}
.ps-sc__close:hover { background: var(--clay); color: var(--chalk); }

.ps-sc__content { flex: 1; overflow-y: auto; padding: 4px 24px; }
.ps-sc__content::-webkit-scrollbar { width: 6px; }
.ps-sc__content::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.ps-sc__empty { text-align: center; padding: 56px 16px; }
.ps-sc__empty-icon { color: var(--grey-soft); margin-bottom: 16px; display: flex; justify-content: center; }
.ps-sc__empty h3 {
	font-family: var(--f-head); font-size: 18px; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.02em;
	color: var(--ink); margin-bottom: 8px; line-height: 1.1;
}
.ps-sc__empty p { color: var(--grey); font-size: 14px; margin-bottom: 22px; }

.ps-sc__items { list-style: none; display: flex; flex-direction: column; gap: 18px; padding: 16px 0; margin: 0; }
.ps-sc__item {
	display: grid; grid-template-columns: 76px 1fr; gap: 14px; align-items: flex-start;
	padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.ps-sc__item:last-child { border-bottom: 0; padding-bottom: 0; }
.ps-sc__media {
	display: block; border-radius: var(--radius); overflow: hidden;
	aspect-ratio: 1; background: var(--paper); border: 1px solid var(--line);
}
.ps-sc__media img, .ps-sc__thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.ps-sc__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ps-sc__name {
	font-family: var(--f-body); font-size: 13px; font-weight: 600;
	color: var(--ink); line-height: 1.35; text-decoration: none;
}
.ps-sc__name:hover { color: var(--clay); }
.ps-sc__meta { font-family: var(--f-mono); font-size: 11px; color: var(--grey); }
.ps-sc__meta p { margin: 0; font-size: 11px; }
.ps-sc__row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; gap: 10px; }
.ps-sc__qty {
	display: inline-flex; align-items: center;
	border: 1px solid var(--line); border-radius: 999px;
	background: var(--paper); height: 32px; padding: 0 4px;
}
.ps-sc__qty button {
	width: 26px; height: 30px; font-size: 15px; color: var(--ink);
	display: flex; align-items: center; justify-content: center; border-radius: 50%;
	transition: color .15s var(--ease);
}
.ps-sc__qty button:hover { color: var(--clay); }
.ps-sc__qty span { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; color: var(--ink); }
.ps-sc__subtotal { font-family: var(--f-head); font-size: 15px; font-weight: 800; color: var(--ink); }
.ps-sc__subtotal .woocommerce-Price-amount { font-family: inherit; }
.ps-sc__remove {
	align-self: flex-start; font-family: var(--f-mono); font-size: 11px; color: var(--grey);
	text-decoration: underline; text-underline-offset: 2px; padding: 0;
	transition: color .15s var(--ease);
}
.ps-sc__remove:hover { color: var(--clay); }

.ps-sc__foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); background: var(--paper); }
.ps-sc__foot:empty { display: none; }
.ps-sc__ship { margin-bottom: 14px; }
.ps-sc__ship p { font-size: 13px; color: var(--ink); margin: 0 0 8px; }
.ps-sc__ship strong { color: var(--clay); }
.ps-sc__bar { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.ps-sc__bar-fill { height: 100%; background: var(--grass); border-radius: 999px; transition: width .5s var(--ease); }
.ps-sc__totals {
	display: flex; justify-content: space-between; align-items: baseline;
	margin: 12px 0 16px; font-size: 14px; color: var(--ink);
}
.ps-sc__totals span { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }
.ps-sc__totals strong { font-family: var(--f-head); font-size: 22px; font-weight: 800; color: var(--ink); }
.ps-sc__totals strong .woocommerce-Price-amount { font-family: inherit; }

.ps-sc__ctas { display: flex; gap: 8px; }
.ps-sc__btn {
	flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 16px; border-radius: 999px;
	font-family: var(--f-head); font-size: 12px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em;
	transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease);
}
.ps-sc__btn .arr { transition: transform .15s var(--ease); }
.ps-sc__btn:hover .arr { transform: translateX(3px); }
.ps-sc__btn--ghost { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
.ps-sc__btn--ghost:hover { background: var(--chalk); border-color: var(--grass); color: var(--grass); }
.ps-sc__btn--primary { background: var(--ink); color: var(--chalk); border: 1px solid var(--ink); }
.ps-sc__btn--primary:hover { background: var(--clay); border-color: var(--clay); color: var(--chalk); transform: translateY(-1px); }
.ps-sc__empty .ps-sc__btn { flex: 0 0 auto; }

@media (max-width: 680px) { .ps-sc { width: 100vw; max-width: 100vw; } }

/* GTranslate switcher (header icons row) */
.header .icons .ps-gt { display: flex; align-items: center; }
.header .icons .ps-gt .gtranslate_wrapper { display: flex; align-items: center; line-height: 1; }
.header .icons .ps-gt a { display: flex; align-items: center; }
.header .icons .ps-gt img { display: block; }
