/* ==========================================================================
   Series, modellen en het inruilblok
   Gebruikt door [stc_series], [stc_serie_modellen] en [stc_inruil].
   ========================================================================== */

.stc-serie,
.stc-series {
	--h-navy: #00394d;
	--h-teal: #00b7be;
	--h-grijs: #f1f2f4;
	--h-rand: rgba(0, 57, 77, 0.1);
	margin: var(--medium, 28px) 0 var(--mediumlarge, 40px);
}

/* ---------- Kaarten met modellen ---------- */

.stc-serie__grid,
.stc-series {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 18px;
}

.stc-serie__kaart,
.stc-series__kaart {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--h-rand);
	border-radius: 15px;
	background: #ffffff;
	color: var(--h-navy);
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stc-serie__kaart:hover,
.stc-series__kaart:hover,
.stc-serie__kaart:focus-visible,
.stc-series__kaart:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 22, 30, 0.13);
	border-color: rgba(0, 183, 190, 0.5);
	text-decoration: none;
}

.stc-serie__beeld,
.stc-series__beeld {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--h-grijs);
}

/* Het thema heeft eigen afbeeldingsregels met meer gewicht; vandaar de
   volledige keten. De foto staat vrij in het vak, dus elke kaart is even
   hoog, ongeacht het formaat van het origineel. */
.stc-serie .stc-serie__beeld img,
.stc-series .stc-series__beeld img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	padding: 10px;
	object-fit: contain;
	border-radius: 0;
	mix-blend-mode: multiply;
}

.stc-serie__body,
.stc-series__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 14px 16px 16px;
}

.stc-serie__model,
.stc-series__naam {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
}

.stc-series__tekst {
	margin: 0 0 12px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(0, 57, 77, 0.72);
}

/* De paar specificaties op de kaart. Het label mag afbreken, de waarde niet:
   "630 x 665 x 1020 mm" over vier regels leest nergens naar. */
.stc-serie__specs {
	display: grid;
	grid-template-columns: minmax(0, auto) 1fr;
	gap: 4px 10px;
	margin: 0 0 12px;
	font-size: 0.78rem;
	line-height: 1.35;
}

.stc-serie__specs dt {
	color: rgba(0, 57, 77, 0.6);
}

.stc-serie__specs dd {
	margin: 0;
	font-weight: 700;
	text-align: right;
	/* Afbreken mag, maar niet midden in een maat: "630 x 665 x 1020 mm" blijft
	   zo bij elkaar en valt hooguit op de spatie voor de eenheid. */
	overflow-wrap: break-word;
}

.stc-serie__link,
.stc-series__aantal {
	margin-top: auto;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--h-teal);
}

/* ---------- De vergelijkingstabel ---------- */

.stc-serie__tabelwrap {
	margin-top: 22px;
	overflow-x: auto;
	border: 1px solid var(--h-rand);
	border-radius: 15px;
}

.stc-serie__tabel {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
	white-space: nowrap;
}

.stc-serie__tabel th,
.stc-serie__tabel td {
	padding: 11px 14px;
	text-align: left;
	border-bottom: 1px solid var(--h-rand);
}

.stc-serie__tabel thead th {
	background: var(--h-grijs);
	font-weight: 700;
	color: var(--h-navy);
}

.stc-serie__tabel tbody th {
	font-weight: 800;
}

.stc-serie__tabel tbody th a {
	color: var(--h-navy);
	text-decoration: none;
}

.stc-serie__tabel tbody th a:hover {
	color: var(--h-teal);
}

.stc-serie__tabel tbody tr:last-child th,
.stc-serie__tabel tbody tr:last-child td {
	border-bottom: 0;
}

.stc-serie__tabel tbody tr:hover th,
.stc-serie__tabel tbody tr:hover td {
	background: rgba(0, 183, 190, 0.06);
}

/* ---------- Het inruilblok ---------- */

.stc-inruil {
	margin: var(--mediumlarge, 40px) 0;
	padding: clamp(22px, 4vw, 40px);
	border-radius: 30px;
	background: #00394d;
	color: #ffffff;
}

.stc-inruil--compact {
	border-radius: 15px;
	padding: clamp(18px, 3vw, 28px);
}

.stc-inruil__body {
	max-width: 62ch;
}

.stc-inruil__label {
	margin: 0 0 6px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #00b7be;
}

.stc-inruil .stc-inruil__kop {
	margin: 0 0 10px;
	color: #ffffff;
}

.stc-inruil--compact .stc-inruil__kop {
	font-size: 1.35rem;
}

.stc-inruil__tekst {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.85);
}

.stc-inruil__tekst p {
	margin: 0 0 10px;
}

.stc-inruil__tekst p:last-child {
	margin-bottom: 0;
}

.stc-inruil .btn {
	background: #00b7be;
	border-color: #00b7be;
	color: #00394d;
}

/* ---------- Mobiel ---------- */

@media (max-width: 600px) {
	.stc-serie__grid,
	.stc-series {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
	}

	.stc-serie__body,
	.stc-series__body {
		padding: 12px;
	}

	.stc-serie__model,
	.stc-series__naam {
		font-size: 0.95rem;
	}

	/* Naast elkaar is er geen ruimte voor label en waarde op één regel; onder
	   elkaar leest het rustiger en breekt er niets af. */
	.stc-serie__specs {
		display: block;
		margin-bottom: 10px;
		font-size: 0.75rem;
	}

	.stc-serie__specs dt {
		font-size: 0.7rem;
		line-height: 1.2;
	}

	.stc-serie__specs dd {
		margin: 0 0 7px;
		text-align: left;
		font-size: 0.8rem;
		white-space: normal;
	}

	.stc-serie__specs dd:last-child {
		margin-bottom: 0;
	}

	.stc-serie__link,
	.stc-series__aantal {
		font-size: 0.72rem;
	}
}

/* ==========================================================================
   Het paneel onder aan een modelpagina: technisch blad, prijsvraag en
   doorbladeren binnen de serie. Gebruikt door [stc_modelpaneel].
   ========================================================================== */

.stc-model {
	--h-navy: #00394d;
	--h-teal: #00b7be;
	--h-grijs: #f1f2f4;
	--h-rand: rgba(0, 57, 77, 0.1);
	margin: var(--medium, 28px) 0;
}

.stc-model__acties {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	margin-bottom: 20px;
}

/* De downloadtegel, met het formaat erbij zodat je weet wat je krijgt. */
.stc-model__download {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px 12px 14px;
	border: 1px solid var(--h-rand);
	border-radius: 12px;
	background: #ffffff;
	color: var(--h-navy);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stc-model__download:hover,
.stc-model__download:focus-visible {
	border-color: var(--h-teal);
	box-shadow: 0 4px 16px rgba(0, 22, 30, 0.1);
	text-decoration: none;
}

.stc-model__pijl {
	position: relative;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--h-grijs);
}

/* Een pijl omlaag, met CSS getekend zodat er geen extra bestand bij hoeft. */
.stc-model__pijl::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	width: 2px;
	height: 12px;
	margin-left: -1px;
	background: var(--h-navy);
}

.stc-model__pijl::after {
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	width: 8px;
	height: 8px;
	margin-left: -4px;
	border-right: 2px solid var(--h-navy);
	border-bottom: 2px solid var(--h-navy);
	transform: rotate(45deg);
}

.stc-model__downloadtekst {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.stc-model__downloadtekst strong {
	font-size: 0.95rem;
}

.stc-model__downloadtekst em {
	font-size: 0.78rem;
	font-style: normal;
	color: rgba(0, 57, 77, 0.6);
}

.stc-model .btn.stc-model__prijs {
	align-self: center;
}

/* ---------- Doorbladeren binnen de serie ---------- */

.stc-model__blader {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid var(--h-rand);
}

.stc-model__stap {
	display: flex;
	flex-direction: column;
	gap: 1px;
	color: var(--h-navy);
	text-decoration: none;
	line-height: 1.25;
}

.stc-model__stap span {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(0, 57, 77, 0.5);
}

.stc-model__stap strong {
	font-size: 1rem;
}

.stc-model__stap:hover strong {
	color: var(--h-teal);
}

.stc-model__stap--vorige strong::before {
	content: "\2190\00a0";
}

.stc-model__stap--volgende {
	text-align: right;
}

.stc-model__stap--volgende strong::after {
	content: "\00a0\2192";
}

.stc-model__alle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--h-rand);
	border-radius: 100px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--h-navy);
	text-decoration: none;
	white-space: nowrap;
}

.stc-model__alle:hover {
	border-color: var(--h-teal);
	color: var(--h-teal);
}

.stc-model__telling {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 100px;
	background: var(--h-grijs);
	font-size: 0.72rem;
}

@media (max-width: 600px) {
	.stc-model__acties {
		flex-direction: column;
		align-items: stretch;
	}

	.stc-model .btn.stc-model__prijs {
		align-self: stretch;
		text-align: center;
	}

	/* Op een smal scherm is er geen ruimte voor drie kolommen naast elkaar. */
	.stc-model__blader {
		grid-template-columns: 1fr 1fr;
	}

	.stc-model__alle {
		grid-column: 1 / -1;
		order: -1;
		justify-content: center;
		margin-bottom: 4px;
	}

	.stc-model__stap strong {
		font-size: 0.9rem;
	}
}

/* ==========================================================================
   Uitleg over de sealuitvoeringen. Gebruikt door [stc_sealtypes].
   ========================================================================== */

.stc-seal {
	--h-navy: #00394d;
	--h-teal: #00b7be;
	--h-grijs: #f1f2f4;
	--h-rand: rgba(0, 57, 77, 0.1);
	margin: var(--mediumlarge, 40px) 0;
}

.stc-seal .stc-seal__kop {
	margin: 0 0 var(--small, 16px);
}

.stc-seal__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 16px;
}

.stc-seal__kaart {
	padding: 16px;
	border: 1px solid var(--h-rand);
	border-radius: 15px;
	background: #ffffff;
}

.stc-seal__beeld {
	margin-bottom: 12px;
	padding: 14px 10px;
	border-radius: 10px;
	background: var(--h-grijs);
}

.stc-seal .stc-seal__svg {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	border-radius: 0;
}

/* De twee lagen folie van de zak. */
.stc-seal__folie {
	fill: #ffffff;
	stroke: rgba(0, 57, 77, 0.28);
	stroke-width: 1.5;
}

/* De las zelf: waar de folie aan elkaar zit. */
.stc-seal__las {
	fill: var(--h-teal);
}

/* Het restje folie dat bij een cut-off wegvalt. */
.stc-seal__rest {
	fill: rgba(0, 57, 77, 0.08);
	stroke: rgba(0, 57, 77, 0.2);
	stroke-width: 1.5;
	stroke-dasharray: 3 3;
}

/* De snede naast de las. */
.stc-seal__snede {
	stroke: var(--h-navy);
	stroke-width: 1.5;
	stroke-dasharray: 4 4;
}

.stc-seal__naam {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 800;
	color: var(--h-navy);
}

.stc-seal__tekst {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(0, 57, 77, 0.72);
}

.stc-seal__voet {
	margin: 16px 0 0;
	font-size: 0.875rem;
	color: rgba(0, 57, 77, 0.6);
}

@media (max-width: 600px) {
	.stc-seal__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.stc-seal__kaart {
		padding: 12px;
	}

	.stc-seal__naam {
		font-size: 0.9rem;
	}

	.stc-seal__tekst {
		font-size: 0.8rem;
	}
}

/* ==========================================================================
   Het prijsvenster op een machinepagina.
   ========================================================================== */

.stc-prijs {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.stc-prijs[hidden] {
	display: none;
}

.stc-prijs__scherm {
	position: absolute;
	inset: 0;
	background: rgba(0, 22, 30, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.stc-prijs__venster {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	padding: clamp(20px, 4vw, 32px);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 20px 60px rgba(0, 22, 30, 0.35);
	animation: stc-prijs-in 0.22s ease both;
}

@keyframes stc-prijs-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.stc-prijs__venster {
		animation: none;
	}
}

/* Achter het venster niet meescrollen. */
body.stc-prijs-open {
	overflow: hidden;
}

.stc-prijs__sluit {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f1f2f4;
	color: #00394d;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.stc-prijs__sluit:hover {
	background: #e3e5e8;
}

.stc-prijs__label {
	margin: 0 0 4px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #00b7be;
}

.stc-prijs .stc-prijs__kop {
	margin: 0 0 2px;
	font-size: 1.5rem;
	padding-right: 34px;
}

.stc-prijs__machine {
	margin: 0 0 18px;
	font-size: 0.9rem;
	color: rgba(0, 57, 77, 0.65);
}

/* De twee snelle wegen naast elkaar: appen of mailen. */
.stc-prijs__snel {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	margin-bottom: 4px;
}

.stc-prijs__mail {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 14px 20px;
	border: 1px solid rgba(0, 57, 77, 0.2);
	border-radius: 100px;
	background: #ffffff;
	color: #00394d;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.stc-prijs__mail:hover,
.stc-prijs__mail:focus-visible {
	border-color: #00b7be;
	background: rgba(0, 183, 190, 0.08);
	color: #00394d;
	text-decoration: none;
}

/* Een envelop, met CSS getekend. */
.stc-prijs__mail-icoon {
	position: relative;
	flex: 0 0 auto;
	width: 20px;
	height: 15px;
	border: 2px solid currentColor;
	border-radius: 3px;
	overflow: hidden;
}

.stc-prijs__mail-icoon::before {
	content: "";
	position: absolute;
	top: -4px;
	left: 1px;
	width: 12px;
	height: 12px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

@media (max-width: 420px) {
	/* Ook hier naast elkaar, maar krapper gezet: twee knoppen onder elkaar
	   kosten een regel die het venster niet heeft. */
	.stc-prijs__snel {
		gap: 8px;
	}

	.stc-prijs__wa,
	.stc-prijs__mail {
		gap: 7px;
		padding: 12px 12px;
		font-size: 0.88rem;
	}

	.stc-prijs__wa-icoon {
		width: 19px;
		height: 19px;
	}

	.stc-prijs__mail-icoon {
		width: 18px;
		height: 13px;
	}
}

/* WhatsApp als snelste weg, bovenaan. */
.stc-prijs__wa {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 100px;
	background: #25d366;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

.stc-prijs__wa:hover {
	background: #1fbe5a;
	color: #ffffff;
	text-decoration: none;
}

/* Het telefoontje, met CSS getekend zodat er geen bestand bij hoeft. */
.stc-prijs__wa-icoon {
	position: relative;
	width: 22px;
	height: 22px;
	border: 2px solid #ffffff;
	border-radius: 50% 50% 50% 4px;
}

.stc-prijs__wa-icoon::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 7px;
	border-radius: 2px;
	background: #ffffff;
}

/* Scheidingsregel met tekst ertussen. */
.stc-prijs__of {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px 0;
	font-size: 0.82rem;
	color: rgba(0, 57, 77, 0.55);
}

.stc-prijs__of::before,
.stc-prijs__of::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: rgba(0, 57, 77, 0.12);
}

/* Het formulier compacter dan op de contactpagina: in een venster telt elke
   regel, zeker op een telefoon. */
.stc-prijs__formulier .gform_wrapper {
	margin: 0;
}

.stc-prijs__formulier .gform_wrapper .gform_fields {
	grid-row-gap: 10px;
}

.stc-prijs__formulier .gform_wrapper .gfield_label {
	margin-bottom: 3px;
	font-size: 0.78rem;
	line-height: 1.2;
}

.stc-prijs__formulier .gform_wrapper input[type="text"],
.stc-prijs__formulier .gform_wrapper input[type="email"],
.stc-prijs__formulier .gform_wrapper input[type="tel"],
.stc-prijs__formulier .gform_wrapper textarea {
	padding: 9px 13px;
	font-size: 0.92rem;
}

.stc-prijs__formulier .gform_wrapper textarea {
	height: 72px;
}

.stc-prijs__formulier .gform_footer {
	margin: 12px 0 0;
	padding: 0;
}

@media (max-width: 640px) {
	/* Gravity Forms rekent met twaalf kolommen en zet elk veld op een telefoon
	   over de volle breedte. In dit venster houden we de halve velden ook daar
	   naast elkaar; dat scheelt twee regels. */
	.stc-prijs__formulier .gform_wrapper .gform_fields {
		column-gap: 10px;
		row-gap: 10px;
	}

	.stc-prijs__formulier .gform_wrapper .gfield--width-half {
		grid-column: span 6 / span 6 !important;
	}

	.stc-prijs__formulier .gform_wrapper textarea {
		height: 62px;
	}
}

@media (max-width: 600px) {
	.stc-prijs {
		padding: 0;
		align-items: flex-end;
	}

	/* Op een telefoon komt het venster van onderen omhoog, tegen de duim aan. */
	.stc-prijs__venster {
		max-width: none;
		max-height: 92vh;
		padding: 18px 16px 16px;
		border-radius: 20px 20px 0 0;
		animation-name: stc-prijs-omhoog;
	}

	/* De kop mag korter: de machine staat er toch al bij. */
	.stc-prijs__label {
		margin-bottom: 2px;
		font-size: 0.68rem;
	}

	.stc-prijs__machine {
		margin-bottom: 12px;
		font-size: 0.85rem;
	}

	.stc-prijs__wa,
	.stc-prijs__mail {
		padding: 12px 16px;
	}

	.stc-prijs__of {
		margin: 12px 0;
	}

	@keyframes stc-prijs-omhoog {
		from {
			transform: translateY(100%);
		}

		to {
			transform: translateY(0);
		}
	}

	.stc-prijs .stc-prijs__kop {
		font-size: 1.3rem;
	}
}

/* ==========================================================================
   De knoppen onder een inruilblok.
   Op een telefoon is WhatsApp de weg; daar vult niemand een formulier in.
   Op een breed scherm staat de uitlegpagina er als derde bij.
   ========================================================================== */

.stc-inruil__acties {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.stc-inruil__wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 100px;
	background: #25d366;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

.stc-inruil__wa:hover,
.stc-inruil__wa:focus-visible {
	background: #1fbe5a;
	color: #ffffff;
	text-decoration: none;
}

/* Het telefoontje, met CSS getekend. */
.stc-inruil__wa-icoon {
	position: relative;
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	border: 2px solid #ffffff;
	border-radius: 50% 50% 50% 4px;
}

.stc-inruil__wa-icoon::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 4px;
	width: 9px;
	height: 6px;
	border-radius: 2px;
	background: #ffffff;
}

.stc-inruil__mail,
.stc-inruil__meer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 22px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 100px;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
}

.stc-inruil__mail:hover,
.stc-inruil__meer:hover {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
}

/* Los blok zonder de donkere achtergrond: dan zijn de randen navy. */
.stc-inruil--kaal {
	margin: var(--medium, 24px) 0;
	padding: 0;
	background: none;
	color: inherit;
}

.stc-inruil--kaal .stc-inruil__mail,
.stc-inruil--kaal .stc-inruil__meer {
	border-color: rgba(0, 57, 77, 0.25);
	color: #00394d;
}

.stc-inruil--kaal .stc-inruil__mail:hover,
.stc-inruil--kaal .stc-inruil__meer:hover {
	border-color: #00b7be;
	background: rgba(0, 183, 190, 0.08);
	color: #00394d;
}

@media (max-width: 767px) {
	/* Volle breedte, WhatsApp bovenaan en het grootst. */
	.stc-inruil__acties {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.stc-inruil__wa {
		padding: 16px 22px;
		font-size: 1.02rem;
	}

	/* De uitlegpagina is op een telefoon een omweg; die laten we weg. */
	.stc-inruil__meer {
		display: none;
	}
}


/* === Modelpagina op groot scherm === */

/* Staat de prijsknop in de rechterkolom, dan hoeft de contactknop van het
   thema er niet ook nog bij: ze openen hetzelfde venster. */
.stc-modelpagina .product-content:has(.stc-model__info) .product-header > .btn {
	display: none;
}

.stc-model__info {
	--h-navy: #00394d;
	--h-teal: #00b7be;
	--h-grijs: #f1f2f4;
	--h-rand: rgba(0, 57, 77, 0.1);
	margin-top: 20px;
}

.stc-model__info .stc-model__acties {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin: 0;
}

.stc-model__info .btn.stc-model__prijs {
	align-self: stretch;
	text-align: center;
}

.stc-model__detail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin-bottom: 26px;
}

/* Blijft er maar een kaart over (bijvoorbeeld bij een traysealer, die geen
   seallengte heeft), dan mag die niet over de hele breedte uitrekken. */
.stc-model__detail > *:only-child {
	max-width: 520px;
}

.stc-model__kaart,
.stc-model__kenmerken {
	padding: 20px;
	border: 1px solid var(--h-rand, rgba(0, 57, 77, 0.1));
	border-radius: 15px;
	background: #ffffff;
}

.stc-model__kenmerken:empty {
	display: none;
}

.stc-model__kaart h4,
.stc-model__kenmerken h3 {
	margin: 0 0 14px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(0, 57, 77, 0.55);
}

.stc-model__kenmerken ul {
	margin: 0;
	padding-left: 18px;
}

.stc-model__kenmerken li {
	margin-bottom: 7px;
	font-size: 0.92rem;
}

.stc-model .stc-model__tekening {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
	margin: 0 0 14px;
	border-radius: 0;
}

.stc-model__kaart p {
	margin: 0 0 12px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: rgba(0, 57, 77, 0.65);
}

.stc-model__link {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--h-teal, #00b7be);
	text-decoration: none;
}

.stc-model__link::after {
	content: "\00a0\2192";
}

.stc-model__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.stc-model__chip {
	display: inline-flex;
	padding: 7px 13px;
	border: 1px solid var(--h-rand, rgba(0, 57, 77, 0.1));
	border-radius: 100px;
	font-size: 0.8rem;
	color: var(--h-navy, #00394d);
	text-decoration: none;
}

a.stc-model__chip:hover,
a.stc-model__chip:focus-visible {
	border-color: var(--h-teal, #00b7be);
	color: var(--h-teal, #00b7be);
	text-decoration: none;
}

/* Vanaf een tablet in liggende stand drie kolommen: specificaties links, de
   foto in het midden en de prijskolom rechts. */
@media (min-width: 992px) {
	body.stc-modelpagina section.product .row {
		display: grid;
		grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) minmax(280px, 330px);
		column-gap: 44px;
		align-items: start;
	}

	body.stc-modelpagina section.product .row > div:not(.product-sidebar-col) {
		display: contents;
	}

	body.stc-modelpagina section.product .product-specifications {
		grid-column: 1;
		grid-row: 1;
		margin: 0;
	}

	body.stc-modelpagina .product-gallery {
		grid-column: 2;
		grid-row: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	body.stc-modelpagina .product-sidebar-col {
		grid-column: 3;
		grid-row: 1;
		width: auto;
		max-width: none;
		flex: none;
		padding: 0;
	}

	body.stc-modelpagina .product-sidebar-placeholder {
		display: none;
	}

	body.stc-modelpagina .product-gallery__image img {
		width: 100%;
		height: auto;
		max-height: 500px;
		object-fit: contain;
	}

	/* Specificaties als lijst: het label klein erboven, de waarde eronder. In
	   een smalle kolom leest dat beter dan twee kolommen naast elkaar. */
	body.stc-modelpagina section.product .product-specifications table {
		width: 100%;
		table-layout: auto;
	}

	body.stc-modelpagina section.product .product-specifications tr {
		display: block;
		padding: 9px 0;
	}

	body.stc-modelpagina section.product .product-specifications tr + tr {
		border-top: 1px solid var(--h-rand, rgba(0, 57, 77, 0.1));
	}

	body.stc-modelpagina section.product .product-specifications td,
	body.stc-modelpagina section.product .product-specifications th {
		display: block;
		width: auto;
		padding: 0;
		border: 0;
		text-align: left;
	}

	body.stc-modelpagina section.product .product-specifications td {
		margin-bottom: 3px;
		font-size: 0.82rem;
		font-weight: 400;
		color: rgba(0, 57, 77, 0.55);
	}

	/* Lange labels als "Chamber dimensions" mogen niet afgebroken worden. */
	body.stc-modelpagina section.product .product-specifications td,
	body.stc-modelpagina section.product .product-specifications th {
		hyphens: none !important;
		-webkit-hyphens: none !important;
		overflow-wrap: normal;
		word-break: normal;
	}

	body.stc-modelpagina section.product .product-specifications th {
		font-size: 1rem;
		font-weight: 600;
		color: var(--h-navy, #00394d);
	}
}

/* === Opties en toebehoren bij een model === */

.stc-model__opties {
	margin-bottom: 26px;
	padding: 22px 24px;
	border: 1px solid var(--h-rand, rgba(0, 57, 77, 0.1));
	border-radius: 15px;
	background: #ffffff;
}

.stc-model__opties h4 {
	margin: 0 0 14px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(0, 57, 77, 0.55);
}

.stc-model__optielijst {
	margin: 0 0 14px;
	padding-left: 18px;
	column-gap: 34px;
}

.stc-model__optielijst li {
	margin-bottom: 7px;
	font-size: 0.92rem;
	line-height: 1.4;
	break-inside: avoid;
}

.stc-model__optienoot {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(0, 57, 77, 0.6);
}

@media (min-width: 768px) {
	.stc-model__optielijst {
		columns: 2;
	}
}

@media (min-width: 1200px) {
	.stc-model__optielijst {
		columns: 3;
	}
}
