/* Home etc. woonaccessoiregids: kaarten, filters, detailpagina, tools.
   Kleuren en fonts komen uit het thema (porselein, Delfts blauw, koper).
   Klassen krijgen heg- omdat het thema zelf he- gebruikt. */

:root {
	--heg-accent: var(--blauw, #2b4acf);
	--heg-accent-donker: var(--blauw-donker, #1e36a3);
	--heg-koper: var(--koper, #b97a2a);
	--heg-ink: var(--inkt, #19231f);
	--heg-grijs: var(--inkt-zacht, #5b6661);
	--heg-bg: var(--fond, #f3f5f4);
	--heg-vlak: var(--vlak, #ffffff);
	--heg-steen: var(--steen, #e7ecea);
	--heg-lijn: var(--lijn, #d9e0dd);
	--heg-lijn-zacht: var(--lijn-zacht, #e7ecea);
	--heg-rood: #9b3d2f;
	--heg-groen: #2f6b4f;
	--heg-font: var(--font-body, "Figtree", system-ui, sans-serif);
	--heg-font-kop: var(--font-display, "Syne", system-ui, sans-serif);
	--heg-radius: 10px;
	--heg-radius-klein: 6px;
	--heg-sticky-top: 0px;
}

.heg-sectie { padding: 32px 0 64px; }
.heg-sectie h2 { font-size: 24px; margin-bottom: 14px; }

/* --- Grid --- */
.heg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 24px 0 40px;
}
.heg-grid--inline { margin: 26px 0; }
@media (max-width: 900px) { .heg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .heg-grid { grid-template-columns: 1fr; } }

/* --- Kaart --- */
.heg-card {
	position: relative;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn-zacht);
	border-radius: var(--heg-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.heg-card:hover { border-color: var(--heg-lijn); box-shadow: var(--schaduw, 0 6px 18px rgba(20, 30, 27, 0.06)); }
.heg-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--heg-steen);
	overflow: hidden;
}
.heg-card__media img { width: 100%; height: 100%; object-fit: cover; }
.heg-card__shopbadge,
.heg-card__shop {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 600;
	letter-spacing: 0.01em;
	background: rgba(255, 255, 255, 0.94);
	color: var(--heg-ink);
	border: 1px solid var(--heg-lijn);
	border-radius: 99px;
	padding: 3px 10px;
}
.heg-card__shopbadge { position: absolute; left: 10px; top: 10px; }
.heg-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.heg-card__title { font-family: var(--heg-font-kop); font-size: 16.5px; line-height: 1.25; margin: 0; }
.heg-card__title a { text-decoration: none; }
.heg-card__title a:hover { color: var(--heg-accent); }
.heg-card__specs { font-size: 13.5px; color: var(--heg-grijs); margin: 0; }
.heg-card__meta { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.heg-card__price { font-weight: 700; font-size: 15.5px; }
.heg-card__bol { display: inline-flex; gap: 3px; }
.heg-card__bol i,
.heg-oordeel__bol i {
	width: 8px; height: 8px;
	border-radius: 50%;
	border: 1.2px solid var(--heg-accent);
	display: inline-block;
}
.heg-card__bol i.is-vol,
.heg-oordeel__bol i.is-vol { background: var(--heg-accent); }

.heg-heart {
	position: absolute;
	right: 10px; top: 10px;
	z-index: 3;
	width: 32px; height: 32px;
	border-radius: 50%;
	border: 1px solid var(--heg-lijn);
	background: rgba(255, 255, 255, 0.94);
	color: var(--heg-ink);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
}
.heg-heart.is-aan { color: var(--heg-accent); border-color: var(--heg-accent); }
.heg-heart-groot {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid var(--heg-lijn);
	border-radius: 99px;
	padding: 9px 18px;
	font-family: var(--heg-font);
	font-size: 14.5px;
	font-weight: 600;
	cursor: pointer;
	margin: 6px 0 4px;
}
.heg-heart-groot.is-aan { border-color: var(--heg-accent); color: var(--heg-accent); }

/* --- Redactiekaarten --- */
.heg-card--redactie { padding: 22px 20px; justify-content: center; gap: 8px; }
.heg-card--blauw { background: var(--heg-accent); border-color: var(--heg-accent); color: #fff; }
.heg-card--koper { background: var(--heg-steen); border-color: var(--heg-lijn); }
.heg-redactie__eyebrow { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; margin: 0; }
.heg-redactie__kop { font-family: var(--heg-font-kop); font-size: 20px; line-height: 1.15; margin: 0; }
.heg-redactie__tekst { font-size: 14px; margin: 0; opacity: 0.92; }
.heg-redactie__link { font-weight: 600; font-size: 14.5px; text-decoration: none; border-bottom: 1.5px solid currentColor; align-self: flex-start; }
.heg-card--blauw .heg-redactie__link { color: #fff; }
.heg-card--koper .heg-redactie__link { color: var(--heg-koper); }

/* --- Hero categorie --- */
.heg-hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 36px;
	align-items: center;
	padding: 8px 0 26px;
	border-bottom: 1px solid var(--heg-lijn-zacht);
	margin-bottom: 22px;
}
@media (max-width: 860px) { .heg-hero { grid-template-columns: 1fr; gap: 22px; } }
.heg-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--heg-grijs); margin: 0 0 8px; }
.heg-hero__kruimel { color: var(--heg-accent); text-decoration: none; border-bottom: 1px solid currentColor; }
.heg-hero h1 { font-size: clamp(30px, 4.4vw, 44px); margin: 0 0 10px; }
.heg-hero__count { font-size: 14px; color: var(--heg-grijs); margin: 0 0 10px; }
.heg-hero__sub { font-size: 16.5px; margin: 0 0 18px; max-width: 46ch; }
.heg-hero__acties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.heg-cta {
	display: inline-block;
	background: var(--heg-accent);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	padding: 11px 22px;
	border-radius: 99px;
}
.heg-cta:hover { background: var(--heg-accent-donker); }
.heg-cta--alt { background: transparent; color: var(--heg-ink); border: 1px solid var(--heg-lijn); }
.heg-cta--alt:hover { background: var(--heg-steen); }
.heg-hero__beeld { border-radius: var(--heg-radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--heg-steen); }
.heg-hero__beeld img { width: 100%; height: 100%; object-fit: cover; }
.heg-hero__beeld--leeg { background: linear-gradient(140deg, var(--heg-steen), #fff 70%); border: 1px solid var(--heg-lijn-zacht); }

.heg-byline { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--heg-grijs); }
.heg-byline img, .heg-byline .he-avatar { border-radius: 50%; }

/* --- Persona (E-E-A-T) --- */
.heg-persona {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn-zacht);
	border-radius: var(--heg-radius);
	padding: 22px;
	margin: 30px 0;
}
.heg-persona img, .heg-persona .he-avatar { border-radius: 50%; flex: none; }
.heg-persona__naam { font-size: 15px; margin: 0 0 8px; }
.heg-persona__tekst p { font-size: 15px; margin: 0 0 10px; }
.heg-persona__tekst p:last-child { margin-bottom: 0; }
.heg-persona__tekst a { color: var(--heg-accent); font-weight: 600; }
@media (max-width: 620px) { .heg-persona { flex-direction: column; } }

/* --- Filterbalk --- */
.heg-fbalk {
	position: sticky;
	top: var(--heg-sticky-top, 0px);
	z-index: 40;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	background: var(--heg-bg);
	border-bottom: 1px solid var(--heg-lijn-zacht);
}
.heg-fdrop { position: relative; }
.heg-fknop {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn);
	border-radius: 99px;
	padding: 8px 14px;
	font-family: var(--heg-font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	color: var(--heg-ink);
}
.heg-fdrop.open .heg-fknop { border-color: var(--heg-accent); color: var(--heg-accent); }
.heg-fknop em {
	font-style: normal;
	background: var(--heg-accent);
	color: #fff;
	border-radius: 99px;
	min-width: 18px;
	height: 18px;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}
.heg-fknop i { font-size: 11px; opacity: 0.6; }
.heg-fpaneel {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 6px);
	min-width: 220px;
	max-height: 320px;
	overflow-y: auto;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn);
	border-radius: var(--heg-radius);
	box-shadow: var(--schaduw, 0 6px 18px rgba(20, 30, 27, 0.08));
	padding: 8px;
	z-index: 45;
}
.heg-fdrop.open .heg-fpaneel { display: block; }
.heg-fopt {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 9px;
	border-radius: var(--heg-radius-klein);
	font-size: 14px;
	text-decoration: none;
	color: var(--heg-ink);
}
.heg-fopt:hover { background: var(--heg-steen); }
.heg-fbox { width: 15px; height: 15px; border: 1.4px solid var(--heg-lijn); border-radius: 3px; flex: none; }
.heg-fopt.is-on .heg-fbox { background: var(--heg-accent); border-color: var(--heg-accent); }
.heg-ftel { margin-left: auto; font-size: 12px; color: var(--heg-grijs); }
.heg-fsort { margin-left: auto; font-size: 13px; color: var(--heg-grijs); }

.heg-fstatus { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 14px 0 4px; font-size: 14px; }
.heg-ftag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--heg-steen);
	border-radius: 99px;
	padding: 5px 12px;
	font-size: 13px;
	text-decoration: none;
	color: var(--heg-ink);
}
.heg-ftag b { font-weight: 400; opacity: 0.55; }
.heg-fwis { font-size: 13px; color: var(--heg-accent); text-decoration: none; border-bottom: 1px solid currentColor; }
.heg-grid-empty { margin: 26px 0 10px; font-size: 16px; color: var(--heg-grijs); }
.heg-grid-empty a { color: var(--heg-accent); }
.heg-leeg { color: var(--heg-grijs); }

/* --- Paginering --- */
.heg-pagination-status { font-size: 13.5px; color: var(--heg-grijs); margin: 0 0 6px; }
.heg-pagination-bar { height: 4px; background: var(--heg-steen); border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.heg-pagination-fill { display: block; height: 100%; background: var(--heg-accent); }
.heg-pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.heg-pagination a, .heg-pagination span {
	display: inline-block;
	min-width: 38px;
	text-align: center;
	padding: 8px 12px;
	border: 1px solid var(--heg-lijn);
	border-radius: var(--heg-radius-klein);
	text-decoration: none;
	font-size: 14px;
}
.heg-pagination .current { background: var(--heg-accent); border-color: var(--heg-accent); color: #fff; }

/* --- Categorietekst onder het grid --- */
.heg-cat-tekst { max-width: var(--maat-smal, 720px); margin: 10px 0 0; }
.heg-cat-tekst h2 { font-size: 22px; margin: 26px 0 10px; }
.heg-cat-tekst p { margin-bottom: 14px; }
.heg-cat-tekst a { color: var(--heg-accent); }

/* --- Detailpagina --- */
.heg-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	padding-top: 12px;
}
@media (max-width: 900px) { .heg-detail { grid-template-columns: 1fr; gap: 24px; } }
.heg-detail__media { border-radius: var(--heg-radius); overflow: hidden; background: #fff; border: 1px solid var(--heg-lijn-zacht); }
.heg-detail__pack img { width: 100%; height: auto; object-fit: contain; background: #fff; padding: 18px; }
.heg-detail__scenes { grid-column: 1; display: grid; gap: 14px; }
.heg-detail__scene { margin: 0; border-radius: var(--heg-radius); overflow: hidden; }
.heg-detail__scene img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.heg-detail__scenecap { font-size: 13px; color: var(--heg-grijs); padding-top: 6px; display: flex; gap: 8px; flex-wrap: wrap; }
.heg-detail__crumb { display: inline-block; font-size: 13.5px; color: var(--heg-grijs); text-decoration: none; margin-bottom: 10px; }
.heg-detail__crumb:hover { color: var(--heg-accent); }
.heg-detail__title { font-size: clamp(26px, 3.6vw, 36px); margin: 8px 0 10px; }
.heg-detail__price { font-size: 22px; font-weight: 700; margin: 0 0 4px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.heg-detail__pricenote { font-size: 12.5px; font-weight: 400; color: var(--heg-grijs); }
.heg-detail__chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 16px; }
.heg-chip {
	display: inline-block;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn);
	border-radius: 99px;
	padding: 7px 15px;
	font-family: var(--heg-font);
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	color: var(--heg-ink);
}
.heg-chip--static { cursor: default; background: var(--heg-steen); border-color: transparent; }
.heg-detail__content { margin: 8px 0 20px; }
.heg-detail__content p { margin-bottom: 13px; }
.heg-detail__content a { color: var(--heg-accent); }
.heg-detail__specs { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 14.5px; }
.heg-detail__specs th, .heg-detail__specs td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--heg-lijn-zacht); vertical-align: top; }
.heg-detail__specs th { width: 42%; font-weight: 600; color: var(--heg-grijs); }
.heg-detail__source { font-size: 13.5px; color: var(--heg-grijs); border-top: 1px solid var(--heg-lijn-zacht); padding-top: 14px; margin-top: 6px; }

/* --- Prijsbadge --- */
.heg-prijsbadge { font-size: 12px; font-weight: 700; border-radius: 99px; padding: 3px 10px; }
.heg-prijsbadge--dal { background: rgba(47, 107, 79, 0.12); color: var(--heg-groen); }
.heg-prijsbadge--stijg { background: rgba(155, 61, 47, 0.12); color: var(--heg-rood); }

/* --- Redactie-oordeel --- */
.heg-oordeel { margin: 4px 0 22px; }
.heg-oordeel h2 { font-size: 19px; margin-bottom: 12px; }
.heg-oordeel__assen { display: grid; gap: 8px; margin-bottom: 12px; }
.heg-oordeel__as { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 14.5px; }
.heg-oordeel__label { color: var(--heg-grijs); }
.heg-oordeel__bol { display: inline-flex; gap: 4px; }
.heg-oordeel__motivatie { font-size: 15px; margin: 0; }

/* --- Voor wie wel, voor wie niet --- */
.heg-voorwie { margin: 4px 0 22px; }
.heg-voorwie h2 { font-size: 19px; margin-bottom: 12px; }
.heg-voorwie__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 620px) { .heg-voorwie__cols { grid-template-columns: 1fr; gap: 14px; } }
.heg-voorwie__kop { font-size: 14.5px; margin-bottom: 8px; }
.heg-voorwie__kop--wel { color: var(--heg-groen); }
.heg-voorwie__kop--niet { color: var(--heg-rood); }
.heg-voorwie ul { margin: 0; padding-left: 18px; font-size: 14.5px; }
.heg-voorwie li { margin-bottom: 6px; }

/* --- Product-FAQ --- */
.heg-faq { margin: 34px 0 0; max-width: var(--maat-smal, 720px); }
.heg-faq h2 { font-size: 22px; margin-bottom: 14px; }
.heg-faq__item { border-bottom: 1px solid var(--heg-lijn-zacht); }
.heg-faq__item summary { cursor: pointer; padding: 13px 0; font-weight: 600; font-size: 15.5px; list-style: none; }
.heg-faq__item summary::-webkit-details-marker { display: none; }
.heg-faq__item summary::after { content: '+'; float: right; color: var(--heg-accent); font-weight: 700; }
.heg-faq__item[open] summary::after { content: '−'; }
.heg-faq__item p { padding: 0 0 14px; margin: 0; font-size: 15px; }

/* --- Vergelijkingstabel --- */
.heg-vergelijk { overflow-x: auto; margin: 20px 0 34px; }
.heg-vergelijk table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 14.5px; }
.heg-vergelijk th, .heg-vergelijk td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--heg-lijn-zacht); vertical-align: top; }
.heg-vergelijk th { color: var(--heg-grijs); font-weight: 600; width: 26%; }
.heg-vergelijk img { border-radius: var(--heg-radius-klein); max-width: 190px; }
.heg-vergelijk a { color: var(--heg-accent); text-decoration: none; }

/* --- Soorten (tegels) --- */
.heg-soorten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 20px 0 30px; }
@media (max-width: 900px) { .heg-soorten { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .heg-soorten { grid-template-columns: repeat(2, 1fr); } }
.heg-soort {
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-decoration: none;
	color: var(--heg-ink);
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn-zacht);
	border-radius: var(--heg-radius);
	padding: 12px;
	transition: border-color 0.18s ease;
}
.heg-soort:hover { border-color: var(--heg-accent); }
.heg-soort__beeld {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--heg-steen);
	border-radius: var(--heg-radius-klein);
	overflow: hidden;
	margin-bottom: 6px;
}
.heg-soort__beeld img { width: 100%; height: 100%; object-fit: cover; }
.heg-soort__naam { font-family: var(--heg-font-kop); font-weight: 700; font-size: 15.5px; }
.heg-soort__tel { font-size: 12.5px; color: var(--heg-grijs); }

/* --- Winkelrij --- */
.heg-merken { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 28px; }
.heg-merk {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn);
	border-radius: 99px;
	padding: 7px 15px;
	font-size: 14px;
	text-decoration: none;
	color: var(--heg-ink);
}
.heg-merk:hover { border-color: var(--heg-accent); color: var(--heg-accent); }
.heg-merk span { font-size: 12px; color: var(--heg-grijs); }

/* --- Homepage-sectie --- */
.heg-home { padding: 44px 0 10px; }
.heg-home__kop { font-family: var(--heg-font-kop); font-size: 19px; margin: 6px 0 12px; }
.heg-home__knoppen { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

/* --- Bewaarlijst --- */
.heg-mandpagina { margin: 34px 0 10px; }
.heg-mandpagina h2 { font-size: 24px; margin-bottom: 12px; }
.heg-mandpagina__leeg { color: var(--heg-grijs); }
.heg-mandpagina__leeg a { color: var(--heg-accent); }
.heg-mandpagina__gedeeld { background: var(--heg-steen); border-radius: var(--heg-radius); padding: 14px 18px; margin-bottom: 14px; }
.heg-mandpagina__lijst { display: grid; gap: 10px; }
.heg-mandrij { position: relative; }
.heg-mandrij__weg {
	position: absolute;
	right: 12px; top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	font-size: 16px;
	color: var(--heg-grijs);
	cursor: pointer;
}
.heg-fav {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn-zacht);
	border-radius: var(--heg-radius);
	padding: 10px 14px;
	text-decoration: none;
	color: var(--heg-ink);
	position: relative;
}
.heg-fav:hover { border-color: var(--heg-lijn); }
.heg-fav__media { width: 74px; height: 58px; border-radius: var(--heg-radius-klein); overflow: hidden; background: var(--heg-steen); flex: none; }
.heg-fav__media img { width: 100%; height: 100%; object-fit: cover; }
.heg-fav__body { display: flex; flex-direction: column; gap: 3px; font-size: 14.5px; }
.heg-fav__body span { font-size: 13px; color: var(--heg-grijs); }
.heg-fav__remove { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: 0; font-size: 15px; color: var(--heg-grijs); cursor: pointer; }
.heg-mandpagina__voet { margin-top: 18px; border-top: 1px solid var(--heg-lijn-zacht); padding-top: 16px; }
.heg-mandpagina__totaal { font-size: 16px; margin: 0 0 12px; }
.heg-mandpagina__acties { display: flex; flex-wrap: wrap; gap: 10px; }
.heg-mandpagina__noot { font-size: 12.5px; color: var(--heg-grijs); margin: 12px 0 0; }

/* --- Swipe --- */
.heg-swipe { max-width: 460px; margin: 20px auto 0; }
.heg-swipe__stage { position: relative; height: 460px; }
.heg-swipe__stack { position: absolute; inset: 0; }
.heg-swipe-card {
	position: absolute;
	inset: 0;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn-zacht);
	border-radius: var(--heg-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	touch-action: none;
	user-select: none;
	box-shadow: var(--schaduw, 0 6px 18px rgba(20, 30, 27, 0.06));
}
.heg-swipe-card[data-depth="1"] { transform: scale(0.96) translateY(10px); }
.heg-swipe-card[data-depth="2"] { transform: scale(0.92) translateY(20px); }
.heg-swipe-card__media { flex: 1; background: var(--heg-steen); overflow: hidden; }
.heg-swipe-card__media img { width: 100%; height: 100%; object-fit: cover; }
.heg-swipe-card__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.heg-swipe-card__title { font-family: var(--heg-font-kop); font-size: 18px; margin: 0; }
.heg-swipe-card__meta { font-size: 14px; color: var(--heg-grijs); margin: 0; }
.heg-swipe-card__badge {
	position: absolute;
	top: 18px;
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 700;
	opacity: 0;
	pointer-events: none;
}
.heg-swipe-card__badge--like { left: 18px; background: var(--heg-accent); color: #fff; }
.heg-swipe-card__badge--nope { right: 18px; background: var(--heg-rood); color: #fff; }
.heg-swipe__done { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; background: var(--heg-steen); border-radius: var(--heg-radius); }
.heg-swipe__done[hidden] { display: none; }
.heg-swipe__actions { display: flex; justify-content: center; gap: 20px; margin: 20px 0 8px; }
.heg-swipe__btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--heg-lijn); background: var(--heg-vlak); font-size: 20px; cursor: pointer; }
.heg-swipe__btn--like { color: var(--heg-accent); border-color: var(--heg-accent); }
.heg-swipe__btn--nope { color: var(--heg-grijs); }
.heg-swipe__progress { text-align: center; font-size: 13.5px; color: var(--heg-grijs); }
.heg-swipe__likes { margin-top: 34px; }
.heg-swipe__likes h2 { font-size: 20px; margin-bottom: 12px; }
.heg-swipe__likes-empty { color: var(--heg-grijs); font-size: 14.5px; }
.heg-swipe__likes-grid { display: grid; gap: 10px; margin-bottom: 12px; }

/* --- Keuzehulp --- */
.heg-hulp { max-width: var(--maat-smal, 720px); margin: 20px 0 0; }
.heg-hulp__teller { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--heg-grijs); margin: 0 0 8px; }
.heg-hulp__vraag { font-size: clamp(22px, 3vw, 30px); margin: 0 0 18px; }
.heg-hulp__opties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.heg-hulp__optie:hover { border-color: var(--heg-accent); color: var(--heg-accent); }
.heg-hulp__terug { background: none; border: 0; color: var(--heg-grijs); font-size: 14px; cursor: pointer; padding: 0; font-family: var(--heg-font); }
.heg-hulp__resultaat h2 { font-size: 24px; margin-bottom: 6px; }
.heg-hulp__deelbaar { font-size: 13.5px; color: var(--heg-grijs); margin-bottom: 16px; }
.heg-hulp__grid { display: grid; gap: 10px; margin-bottom: 16px; }

/* --- Zwevende bewaarknop --- */
.heg-mand {
	position: fixed;
	right: 20px; bottom: 20px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--heg-accent);
	color: #fff;
	box-shadow: 0 10px 24px rgba(20, 30, 27, 0.28);
}
.heg-mand[hidden] { display: none; }
.heg-mand__tel {
	position: absolute;
	top: -4px; right: -4px;
	min-width: 19px; height: 19px;
	border-radius: 10px;
	background: var(--heg-koper);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* --- Submenu in het hoofdmenu (het thema levert er zelf geen opmaak voor) --- */
.he-nav-lijst { position: relative; }
.he-nav-lijst li { position: relative; }
.he-nav-lijst .sub-menu {
	position: absolute;
	top: 100%;
	left: -14px;
	min-width: 224px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: var(--heg-vlak);
	border: 1px solid var(--heg-lijn);
	border-radius: var(--heg-radius);
	box-shadow: var(--schaduw, 0 6px 18px rgba(20, 30, 27, 0.08));
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
	z-index: 60;
	display: block;
}
.he-nav-lijst li:hover > .sub-menu,
.he-nav-lijst li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.he-nav-lijst .sub-menu li { display: block; }
.he-nav-lijst .sub-menu a { display: block; padding: 7px 18px; border-bottom: 0; font-size: 14.5px; white-space: nowrap; }
.he-nav-lijst .sub-menu a:hover { color: var(--heg-accent); border-bottom: 0; }
.he-mobiel-lijst .sub-menu { list-style: none; margin: 2px 0 8px 14px; padding: 0; }
@media (max-width: 900px) { .he-nav-lijst .sub-menu { display: none; } }
