/**
 * Steigro productdetailpagina — reproductie van de standaard Steigro-lay-out.
 * Accentgroen #008B3B, navy #0A2135. Pas de variabelen aan om te herskinnen.
 */

.stg-product {
	--stg-accent: #008B3B;
	--stg-accent-dark: #026e30;
	--stg-accent-soft: #e2f3e9;
	--stg-text: #0A2135;
	--stg-text-muted: #3a4d5d;
	--stg-border: #d7dce1;
	--stg-bg: #f4f6f5;
	--stg-sale: #d6391f;
	--stg-backorder: #c47c00;

	max-width: 1240px;
	margin: 0 auto;
	/* Extra ruimte bovenaan: de groene (overlay-)navbar valt over de content-top,
	   dus de kop moet eronder uitkomen i.p.v. erachter te verdwijnen. */
	padding: 64px 16px 48px;
	color: var(--stg-text);
	font-family: inherit;
}

/* ---------- KOP ---------- */
.stg-product__header { margin-bottom: 24px; }
.stg-product__eyebrow { display: block; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: normal; color: var(--stg-text); text-transform: none; margin-bottom: 4px; }
.stg-product .stg-product__title,
h1.stg-product__title {
	font-size: 30px !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;
	color: var(--stg-text) !important;
	text-transform: uppercase !important;
	margin: 0 !important;
	padding: 0 !important;
	letter-spacing: 0 !important;
}

/* ---------- LAYOUT ---------- */
.stg-product__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
	gap: 44px;
	align-items: start;
	/* Géén horizontale padding zodat de galerij en secties links uitlijnen met de
	   titel en de overige containers. Kleine top-marge zodat het blok net onder de
	   kop begint (niet de grote gok-ruimte van hiervoor). */
	padding: 8px 0 64px;
}
.stg-product__main { min-width: 0; display: flex; flex-direction: column; gap: 40px; }
/* Sticky rechterpaneel: iets meer ruimte aan de bovenkant terwijl het meescrollt. */
.stg-product__aside { min-width: 0; position: sticky; top: 40px; align-self: start; padding-top: 8px; }
/* De thema-wrapper .box-wrapper heeft overflow:hidden, wat position:sticky
   breekt (het paneel scrollt dan niet mee). overflow:clip clipt identiek
   (voorkomt horizontale overflow) maar maakt géén scroll-container, zodat het
   rechterpaneel weer netjes meescrollt langs de tekst. */
.box-wrapper { overflow: clip !important; }

/* ---------- GALERIJ ---------- */
.stg-product__gallery { display: flex; flex-direction: column; gap: 14px; }
.stg-product__main-image {
	position: relative; overflow: hidden;
	aspect-ratio: 1 / 1 !important; display: flex; align-items: center; justify-content: center;
}
.stg-product__main-image img,
.stg-product__main-img,
.stg-product .stg-product__main-image img {
	width: 100% !important; height: 100% !important; max-width: 100% !important; max-height: 100% !important;
	object-fit: contain !important; padding: 0 !important; box-sizing: border-box !important;
	position: static !important; inset: auto !important; transform: none !important;
}
.stg-product__main-nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0;
	border: 1px solid var(--stg-border); border-radius: 50%; background: rgba(255,255,255,.9);
	color: var(--stg-text); cursor: pointer; box-shadow: 0 2px 8px rgba(10,33,53,.12);
	opacity: 0; pointer-events: none;
	transition: opacity .15s, background-color .15s, box-shadow .15s; appearance: none; -webkit-appearance: none;
}
/* Pijltjes alleen tonen bij hover over de galerij (zoals native). */
.stg-product__main-image:hover .stg-product__main-nav { opacity: 1; pointer-events: auto; }
.stg-product__main-nav:hover { background: #fff; box-shadow: 0 4px 14px rgba(10,33,53,.2); }
.stg-product__main-nav--prev { left: 12px; }
.stg-product__main-nav--next { right: 12px; }

/* Thumbnail-strook: 4 op één rij, exact even breed als de hoofdafbeelding erboven
   (links én rechts uitgelijnd). De nav-pijlen liggen als overlay bínnen de
   carousel, verschijnen alleen bij hover én alleen als er genoeg foto's zijn om
   te bladeren (anders staan ze op disabled → display:none). */
.stg-product__thumbs-wrap { position: relative; }
.stg-product__thumbs-viewport { width: 100%; min-width: 0; overflow: hidden; }
.stg-product__thumbs { display: flex; gap: 10px; transition: transform .3s ease; will-change: transform; }
.stg-product__thumb {
	all: unset;
	flex: 0 0 calc((100% - 30px) / 4); max-width: calc((100% - 30px) / 4);
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; aspect-ratio: 1 / 1; overflow: hidden; box-sizing: border-box;
	border: 0; border-radius: 0; background: #fff;
}
/* Géén rand/afronding en géén 'geselecteerd'-rand (strakke tegels zoals native). */
.stg-product__thumb.is-active { border: 0; }
.stg-product__thumb img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
/* Nav-pijl = volle-hoogte groene balk aan de rand met witte chevron (exact
   zoals de native gallery-hover). Alleen zichtbaar bij hover én als er iets te
   bladeren valt (disabled → display:none). */
.stg-product__thumb-nav {
	position: absolute; top: 0; bottom: 0; z-index: 3;
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; padding: 0; border: 0;
	background: var(--stg-accent); color: #fff; cursor: pointer;
	opacity: 0; pointer-events: none; transition: opacity .15s, background .15s;
	appearance: none; -webkit-appearance: none;
}
.stg-product__thumbs-wrap:hover .stg-product__thumb-nav { opacity: 1; pointer-events: auto; }
.stg-product__thumb-nav:hover { background: var(--stg-accent-dark); }
.stg-product__thumb-nav:disabled { display: none; }
.stg-product__thumb-nav--prev { left: 0; border-radius: 0; }
.stg-product__thumb-nav--next { right: 0; border-radius: 0; }
/* Mobiel: geen hover-balken (touch kent geen hover) → de thumbnail-strook wordt
   horizontaal swipebaar zodat álle foto's bereikbaar zijn. */
@media (max-width: 768px) {
	.stg-product__thumbs-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; }
	.stg-product__thumbs-viewport::-webkit-scrollbar { display: none; width: 0; height: 0; }
	.stg-product__thumb { scroll-snap-align: start; }
	.stg-product__thumb-nav { display: none !important; }
}

.stg-product__badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; z-index: 3; }
.stg-product__badge { display: inline-block; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; padding: 2px 5px; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; border-radius: 2px; line-height: 1.5; }
.stg-product__badge--sale { background: #D3741C; }

/* ---------- SECTIES (omschrijving / specificaties / reviews) ---------- */
.stg-product__section { }
.stg-product .stg-product__section-title,
.stg-product__section-title {
	font-size: 22px !important; font-weight: 700 !important; text-transform: uppercase !important;
	color: var(--stg-text) !important; margin: 0 0 12px !important; padding: 0 !important;
	letter-spacing: 0 !important; line-height: 1.2 !important;
}
.stg-product__section-count { font-weight: 500; color: var(--stg-text-muted); }

.stg-product__description { font-size: 16px; line-height: 1.7; color: var(--stg-text); }
.stg-product .stg-product__description h2, .stg-product__description h2,
.stg-product .stg-product__description h3, .stg-product__description h3 {
	font-size: 17px !important; font-weight: 700 !important; text-transform: uppercase !important;
	margin: 22px 0 10px !important; color: var(--stg-text) !important; letter-spacing: 0 !important; line-height: 1.3 !important;
}
.stg-product__description p, .stg-product__description ul, .stg-product__description ol, .stg-product__description li {
	font-size: 16px !important; line-height: 1.7 !important; color: var(--stg-text) !important; margin: 0 0 10px !important;
}
.stg-product__description ul, .stg-product__description ol { padding-left: 20px !important; }
.stg-product__description img { max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0; }

/* Specificaties — standaard Steigro-tabelopmaak: twee kolommen, géén
   scheidingslijnen. Label donker/vet, waarde normaal (zoals de reguliere
   WooCommerce-attributentabel op de andere producten). */
.stg-product__specs { margin: 0; display: flex; flex-direction: column; }
.stg-product__specs-row {
	display: grid; grid-template-columns: minmax(160px, 42%) 1fr; gap: 12px;
	padding: 5px 0; border-bottom: 0;
}
.stg-product .stg-product__specs dt, .stg-product__specs dt { color: var(--stg-text) !important; font-weight: 600 !important; font-size: 16px !important; margin: 0 !important; padding: 0 !important; }
.stg-product .stg-product__specs dd, .stg-product__specs dd { color: var(--stg-text) !important; font-weight: 400 !important; font-size: 16px !important; margin: 0 !important; padding: 0 !important; word-break: break-word; }

/* ---------- BESTELKAART (rechts) ---------- */
/* Het HELE blok staat op één licht grijs vlak (zoals native). */
.stg-product__buybox {
	position: static;
	background: var(--stg-bg); border-radius: 12px; padding: 54px 36px;
	display: flex; flex-direction: column; gap: 22px;
}
/* Prijs-/bestelgroep binnen het grijze vlak (geen eigen achtergrond). */
.stg-buybox__panel {
	display: flex; flex-direction: column; gap: 12px;
}
.stg-buybox__price-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.stg-buybox__price-label { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--stg-text); }
.stg-buybox__price-main { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; text-align: right; }
.stg-buybox__price-main .amount, .stg-buybox__price-main .woocommerce-Price-amount { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 22px; font-weight: 700; color: var(--stg-text); }
.stg-buybox__price-vat { font-size: 12px; font-weight: 500; color: var(--stg-text-muted); margin-top: 2px; }
/* Aanbieding: oude (reguliere) prijs doorgestreept, inline vóór de actieprijs
   in de prijs-kop (PRIJS  €45  €40,00  excl. BTW). */
.stg-buybox__price-now { display: inline-flex; align-items: baseline; }
.stg-buybox__price-was { font-size: 16px !important; font-weight: 400 !important; color: var(--stg-text-muted) !important; text-decoration: line-through; margin-right: 5px; }
.stg-buybox__price-was .amount, .stg-buybox__price-was .woocommerce-Price-amount { font-family: inherit !important; font-size: inherit !important; font-weight: 400 !important; color: var(--stg-text-muted) !important; text-decoration: line-through; }

.stg-buybox__price-breakdown { margin: 0; display: flex; flex-direction: column; gap: 0; padding-top: 4px; }
.stg-buybox__price-breakdown > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 0; }
.stg-buybox__price-breakdown dt { margin: 0; font-size: 16px; color: var(--stg-text-muted); font-weight: 400; }
.stg-buybox__price-breakdown dd { margin: 0; font-size: 16px; color: var(--stg-text-muted); font-weight: 400; }
.stg-buybox__price-breakdown dd .amount, .stg-buybox__price-breakdown dd .woocommerce-Price-amount { font-weight: 400; color: var(--stg-text-muted); }
.stg-buybox__price-breakdown .is-total { margin-top: 0; padding-top: 0; }
.stg-buybox__price-breakdown .is-total dt { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 22px; font-weight: 700; line-height: 1.2; text-transform: uppercase; color: var(--stg-text); }
.stg-buybox__price-breakdown .is-total dd { font-size: 22px; font-weight: 700; line-height: 1.2; color: var(--stg-text); }
.stg-buybox__price-breakdown .is-total dd .amount, .stg-buybox__price-breakdown .is-total dd .woocommerce-Price-amount { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-weight: 700; line-height: 1.2; color: var(--stg-text); }

.stg-buybox__stock { font-size: 13px; font-weight: 400; }
.stg-buybox__stock.is-in { color: #008B3B; }
.stg-buybox__stock.is-backorder { color: var(--stg-backorder); }

/* Prijs op aanvraag — "OP AANVRAAG" in dezelfde stijl als de PRIJS-kop. */
.stg-buybox__price-request { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--stg-text); }

/* Levertijd-regel (boven de bestel-/offerteknop) */
/* Levertijd-regel — zelfde schone stijl als de verlanglijst-regel
   (icoon links + tekst, normale weight, donkere kleur). */
.stg-buybox__delivery { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--stg-text); }
.stg-buybox__delivery-icon { flex-shrink: 0; color: currentColor; }
.stg-buybox__delivery-text { line-height: 1.35; }
.stg-buybox__delivery-label { font-weight: 500; }

/* Variatie-dropdowns */
.stg-product__variation-fields { display: flex; flex-direction: column; gap: 10px; margin: 0 0 4px; }
.stg-product__variation-field { display: flex; flex-direction: column; gap: 4px; }
.stg-product__variation-label { font-size: 14px; font-weight: 600; color: var(--stg-text); }
.stg-product .stg-product__variation-select, .stg-product__variation-select {
	appearance: none; -webkit-appearance: none; -moz-appearance: none;
	width: 100%; height: 44px; padding: 0 40px 0 14px; border: 1px solid var(--stg-border); border-radius: 7px;
	background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M0 0l6 8 6-8z' fill='%230A2135'/></svg>") no-repeat right 14px center;
	background-size: 12px 8px; font-size: 14px; color: var(--stg-text); font-weight: 500; cursor: pointer; box-sizing: border-box;
}
.stg-product__variation-select:focus { outline: none; border-color: var(--stg-accent); box-shadow: 0 0 0 3px var(--stg-accent-soft); }

/* Bestelrij: aantal + in winkelwagen */
.stg-buybox__order, form.stg-buybox__order { display: flex !important; align-items: stretch; gap: 10px; margin: 0 !important; padding: 0 !important; width: 100% !important; box-sizing: border-box; flex-wrap: nowrap !important; }
.stg-buybox__order > * { margin: 0 !important; }
/* WooCommerce/thema zet een clearfix (::before/::after met content:" ";
   display:table) op .cart; in onze flex-rij worden dat fantoom-flex-items die
   een gap links vóór het aantal en rechts na de knop toevoegen. Uitschakelen. */
.stg-buybox__order::before, .stg-buybox__order::after { content: none !important; display: none !important; }
.stg-product__qty { display: inline-flex; align-items: center; border-radius: 7px; overflow: hidden; height: 49px; background: #fff; flex: 0 0 auto; }
.stg-product__qty-btn { all: unset; width: 40px; height: 100%; display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 500; color: var(--stg-text); cursor: pointer; user-select: none; background: transparent; transition: background .15s; }
.stg-product__qty-btn:hover { background: #f0f2f4; }
.stg-product__qty-input { width: 46px; height: 100%; border: 0; outline: none; background: #fff; text-align: center; padding: 0; margin: 0; font-size: 15px; font-weight: 600; color: var(--stg-text); -moz-appearance: textfield; appearance: textfield; box-sizing: border-box; }
.stg-product__qty-input::-webkit-outer-spin-button, .stg-product__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stg-product__qty.is-locked .stg-product__qty-btn { color: #b8c5cd !important; cursor: not-allowed !important; pointer-events: none; opacity: .6; }

.stg-product__add-to-cart, .stg-product .stg-product__add-to-cart {
	flex: 1 1 auto; min-width: 0; display: block; text-align: center; box-sizing: border-box;
	background: var(--stg-accent) !important; color: #fff !important; border: 1px solid var(--stg-accent) !important;
	border-radius: 7px !important; height: 49px; padding: 15px 25px !important; font-weight: 600 !important; font-size: 10px !important;
	font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
	cursor: pointer; transition: background .15s, border-color .15s; text-transform: uppercase !important; letter-spacing: normal !important; line-height: 1.2 !important;
}
.stg-product__add-to-cart:hover, .stg-product .stg-product__add-to-cart:hover { background: var(--stg-accent-dark) !important; border-color: var(--stg-accent-dark) !important; }
/* WooCommerce zet na een AJAX-toevoeging een inline "Bekijk winkelwagen"-link
   (.added_to_cart) naast de knop; dat duwt in de flex-rij de knop weg. De
   thema-popup toont die actie al, dus we verbergen het inline-linkje. */
.stg-buybox__order .added_to_cart,
.stg-buybox__order a.wc-forward,
.stg-card__cart .added_to_cart,
.stg-card__cart a.wc-forward { display: none !important; }

/* Reset thema/WC form.cart marges binnen de kaart */
body .stg-product__buybox div.product form.cart,
.stg-product__buybox form.cart, .stg-product__buybox .stg-buybox__form { margin: 0 !important; padding: 0 !important; }
.stg-product__buybox .single_variation:empty, .stg-product__buybox .woocommerce-variation:empty { display: none !important; margin: 0 !important; padding: 0 !important; }
.stg-buybox__form .single_variation_wrap { margin: 0 !important; }

/* Betaaliconen */
.stg-buybox__payments { display: block; }
.stg-buybox__payments img { width: 100%; max-width: 315px; height: auto; display: block; }

/* Offerte (binnen het grijze vlak) */
.stg-buybox__offerte { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.stg-product .stg-buybox__offerte-heading, .stg-buybox__offerte-heading { font-size: 22px !important; font-weight: 700 !important; text-transform: uppercase !important; color: var(--stg-text) !important; margin: 0 !important; line-height: 1.2 !important; }
.stg-buybox__offerte-sub { font-size: 16px !important; font-weight: 400 !important; color: var(--stg-text-muted) !important; margin: 0 0 8px !important; }
.stg-buybox__offerte-sub strong { color: var(--stg-text) !important; font-weight: 700 !important; }
.stg-buybox__offerte-btn {
	all: unset; display: inline-flex; align-items: center; justify-content: center; text-align: center; box-sizing: border-box;
	background: var(--stg-accent); color: #fff; border: 1px solid var(--stg-accent);
	border-radius: 4px; padding: 11px 26px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: normal;
	font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	cursor: pointer; transition: background .15s, border-color .15s;
}
.stg-buybox__offerte-btn:hover { background: var(--stg-accent-dark); border-color: var(--stg-accent-dark); }

/* Maatwerk: aantal-selector + offerteknop op één rij (zoals de winkelwagen-rij) */
.stg-buybox__order--maatwerk { margin-top: 2px; }
.stg-buybox__offerte-btn--primary { flex: 1 1 auto; height: 49px; padding: 15px 25px; border-radius: 7px; }

/* Verlanglijst — YITH-wishlist (dezelfde als op reguliere productpagina's) */
.stg-buybox__wishlist { display: flex; }
.stg-buybox__wishlist .yith-wcwl-add-to-wishlist { margin: 0; }
.stg-buybox__wishlist a {
	display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
	font-size: 15px; font-weight: 500; color: var(--stg-text); transition: color .15s; cursor: pointer;
}
.stg-buybox__wishlist a:hover { color: var(--stg-sale); }
.stg-buybox__wishlist i, .stg-buybox__wishlist svg { color: currentColor; }

/* Leverbeloftes */
.stg-buybox__usps { padding-top: 4px; }
.stg-product .stg-buybox__usps-heading, .stg-buybox__usps-heading { font-size: 22px !important; font-weight: 700 !important; text-transform: uppercase !important; color: var(--stg-text) !important; margin: 0 0 14px !important; line-height: 1.2 !important; }
.stg-buybox__usps ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.stg-buybox__usps li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 400; color: var(--stg-text-muted); line-height: 1.4; margin: 0; }
.stg-buybox__usp-icon { flex-shrink: 0; color: var(--stg-accent); margin-top: 1px; }

/* ---------- REVIEWS ---------- */
.stg-product__reviews #reviews, .stg-product__reviews #respond { margin: 0; padding: 0; }
.stg-product__reviews .commentlist { list-style: none !important; margin: 0 0 24px !important; padding: 0 !important; }
.stg-product__reviews .commentlist li { background: transparent !important; border: 0 !important; border-radius: 0 !important; padding: 0 !important; margin: 0 0 28px !important; list-style: none !important; }
.stg-product__reviews .stg-review__container { display: flex; align-items: flex-start; gap: 18px; }
.stg-product__reviews .stg-review__avatar { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; overflow: hidden; background: #d3d8dc; }
.stg-product__reviews .stg-review__avatar img { width: 100%; height: 100%; display: block; border-radius: 50%; }
.stg-product__reviews .stg-review__body { flex: 1; min-width: 0; }
.stg-product__reviews .stg-review .star-rating { margin: 2px 0 8px; }
.stg-product__reviews .stg-review__author { display: block; font-size: 16px; font-weight: 400; color: var(--stg-text); font-style: normal; }
.stg-product__reviews .stg-review__date { display: block; font-size: 13px; color: var(--stg-text-muted); margin: 2px 0 10px; }
.stg-product__reviews .stg-review__text p { margin: 0; color: var(--stg-text); font-size: 15px; line-height: 1.6; }
.stg-product__reviews #reply-title, .stg-product__reviews .comment-reply-title { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--stg-text); margin: 0 0 16px; }
.stg-product__reviews .comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stg-product__reviews .comment-form > p { margin: 0; }
.stg-product__reviews .comment-form-rating, .stg-product__reviews .comment-form-comment, .stg-product__reviews .comment-notes, .stg-product__reviews .form-submit, .stg-product__reviews .comment-form-cookies-consent { grid-column: 1 / -1; }
.stg-product__reviews .comment-form label { display: block; font-size: 14px; font-weight: 600; color: var(--stg-text); margin: 0 0 6px; }
.stg-product__reviews .comment-form .required { color: var(--stg-sale); }
.stg-product__reviews .comment-form input[type="text"], .stg-product__reviews .comment-form input[type="email"], .stg-product__reviews .comment-form textarea {
	width: 100%; background: #fff; border: 1px solid #cfd3d8; border-radius: 6px; padding: 12px 14px; font-size: 15px; color: var(--stg-text); font-family: inherit; box-sizing: border-box;
}
.stg-product__reviews .comment-form textarea { min-height: 120px; resize: vertical; }
.stg-product__reviews .comment-form input:focus, .stg-product__reviews .comment-form textarea:focus { outline: none; border-color: var(--stg-accent); box-shadow: 0 0 0 3px var(--stg-accent-soft); }
.stg-product__reviews .form-submit input[type="submit"], .stg-product__reviews #submit {
	background: var(--stg-accent) !important; color: #fff !important; border: 0 !important; border-radius: 7px !important;
	padding: 12px 24px !important; font-size: 15px !important; font-weight: 700 !important; font-family: inherit !important; cursor: pointer; text-transform: none !important;
}
.stg-product__reviews .form-submit input[type="submit"]:hover, .stg-product__reviews #submit:hover { background: var(--stg-accent-dark) !important; }
@media (max-width: 640px) { .stg-product__reviews .comment-form { grid-template-columns: 1fr; } }

/* ---------- ANDEREN BEKEKEN OOK ---------- */
/* "Geselecteerd voor jou" op een volle-breedte grijze band (zoals native
   "Anderen bekeken ook"). De band staat als pseudo-element achter de sectie,
   zodat de content op de max-width blijft en er geen horizontale scroll komt. */
.stg-product__related { margin-top: 24px; position: relative; padding: 40px 0; }
.stg-product__related::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; margin-left: -50vw; width: 100vw; background: #f4f6f5; z-index: -1; }
/* Variant met witte achtergrond (bijv. "Passende onderdelen & accessoires"). */
.stg-product__related--plain::before { display: none; }
/* SET INHOUD: het externe-link-icoontje bij elk onderdeel zwart i.p.v. blauw. */
.stg-product__set-content .open-set-item-tab,
.stg-product__set-content .open-set-item-tab i { color: var(--stg-text) !important; }
.stg-product__related-head { margin-bottom: 10px; }
.stg-product .stg-product__related-head h2, .stg-product__related-head h2 { font-size: 24px !important; font-weight: 700 !important; text-transform: uppercase !important; margin: 0 !important; color: var(--stg-text) !important; text-align: left !important; letter-spacing: 0 !important; }
/* Introtekst onder de kop (zoals native "Anderen bekeken ook"). */
.stg-product__related-intro { margin: 0 0 28px; max-width: 760px; font-size: 16px; line-height: 1.6; color: var(--stg-text-muted); }
@media (max-width: 768px) { .stg-product__related-head h2 { font-size: 20px !important; } }
/* Pijlen aan de zijkanten van de slider (verticaal gecentreerd op de cards),
   bolletjes onderin — zoals native. */
.stg-product__related-viewport { position: relative; }
.stg-product__related-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: #fff; border: 1px solid var(--stg-border); border-radius: 999px; color: var(--stg-text); cursor: pointer; padding: 0; box-shadow: 0 2px 10px rgba(10,33,53,.10); transition: background .15s, color .15s, border-color .15s; }
.stg-product__related-arrow:hover { background: var(--stg-accent); border-color: var(--stg-accent); color: #fff; }
.stg-product__related-arrow--prev { left: -18px; }
.stg-product__related-arrow--next { right: -18px; }
.stg-product__related-arrow:hover { background: var(--stg-accent); border-color: var(--stg-accent); color: #fff; }
.stg-product__related-arrow:disabled { display: none; }
.stg-product__related-slider { overflow: hidden; width: 100%; position: relative; padding: 12px 0 20px; margin: -12px 0 -20px; }
.stg-product__related-track { display: flex; gap: 16px; transition: transform .35s ease; will-change: transform; }
.stg-product__related-item { flex: 0 0 calc((100% - 48px) / 4); max-width: calc((100% - 48px) / 4); display: flex; }
.stg-product__related-item > .stg-card { width: 100%; }
@media (max-width: 1024px) { .stg-product__related-item { flex-basis: calc((100% - 32px) / 3); max-width: calc((100% - 32px) / 3); } }
@media (max-width: 768px) {
	.stg-product__related-item { flex-basis: calc((100% - 16px) / 2); max-width: calc((100% - 16px) / 2); scroll-snap-align: start; }
	.stg-product__related-slider { overflow-x: auto; overflow-y: visible; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; width: auto !important; max-width: none !important; margin: 0 calc(50% - 50vw) 0 0 !important; }
	.stg-product__related-slider::-webkit-scrollbar { display: none; width: 0; height: 0; }
	.stg-product__related-track { transform: none !important; transition: none !important; }
	.stg-product__related-track::after { content: ''; flex: 0 0 0px; }
}
/* Telefoon: precies één volledige kaart in beeld (geen stukje van de volgende).
   Slider terug naar containerbreedte (niet full-bleed) zodat er geen peek is. */
@media (max-width: 600px) {
	.stg-product__related-item { flex-basis: 100%; max-width: 100%; }
	.stg-product__related-slider { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
}
.stg-product__related-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 22px 0 0; padding: 0; }
.stg-product__related-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(10,33,53,.18); cursor: pointer; transition: background-color .2s, width .2s; appearance: none; -webkit-appearance: none; }
.stg-product__related-dot.is-active { background: var(--stg-accent); }
/* Bolletjes op mobiel identiek aan desktop: rond en gecentreerd (geen streepjes). */

/* ---------- PRODUCTKAART ---------- */
.stg-card { position: relative; display: flex; flex-direction: column; width: 100%; background: #fff; border: 2px solid #f4f6f5; border-radius: 8px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.stg-card:hover { box-shadow: 0 8px 22px rgba(10,33,53,.10); transform: translateY(-2px); }
/* Quickview-"+" rechtsboven (zoals native). Link naar de productpagina zolang
   Steigro's eigen quickview-payload niet beschikbaar is. */
.stg-card__quickview { position: absolute; top: 12px; right: 12px; z-index: 3; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--stg-text); box-shadow: 0 2px 8px rgba(10,33,53,.15); text-decoration: none; transition: background .15s, color .15s; }
.stg-card__quickview:hover { background: var(--stg-accent); color: #fff; }
.stg-card__media { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; background: #fff; padding: 16px; box-sizing: border-box; }
.stg-card__media img, .stg-card__img { width: 100%; height: 100%; object-fit: contain; }
.stg-card__badge { position: absolute; top: 10px; left: 10px; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; padding: 2px 5px; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: #fff; border-radius: 2px; z-index: 2; }
.stg-card__badge--sale { background: #D3741C; }
.stg-card__price-was { font-weight: 400; color: var(--stg-text-muted); text-decoration: line-through; margin-right: 5px; }
.stg-card__body { display: flex; flex-direction: column; gap: 8px; padding: 14px 14px 16px; flex: 1; }
.stg-card__title { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--stg-text); text-decoration: none; text-transform: uppercase; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.stg-card__title:hover { color: var(--stg-accent); }

/* Prijs excl. / incl. — twee regels, label links, bedrag rechts (net als native) */
.stg-card__pricing { display: flex; flex-direction: column; gap: 2px; margin: 2px 0; }
.stg-card__price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.stg-card__price-label { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; color: var(--stg-text); }
.stg-card__price-excl { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 15px; font-weight: 700; color: var(--stg-text); }
.stg-card__price-excl .amount, .stg-card__price-incl .amount { font-weight: inherit; }
.stg-card__price-row--incl .stg-card__price-label { font-weight: 400; }
.stg-card__price-incl { font-size: 13px; font-weight: 400; color: var(--stg-text-muted); }

.stg-card__brand-line { color: var(--stg-text-muted); font-size: 12px; }
.stg-card__brand-line strong { color: var(--stg-text); font-weight: 700; }

.stg-card__cart { margin-top: auto; display: flex; align-items: stretch; gap: 8px; padding-top: 4px; }
/* Card-quantityselector: grijze achtergrond zodat 'ie op de witte kaart niet
   wegvalt (zoals gewenst). */
.stg-card__qty { height: 44px; flex: 0 0 auto; background: #eef1f3; border-radius: 7px; overflow: hidden; }
.stg-card__qty .stg-product__qty-btn { width: 30px; font-size: 16px; }
.stg-card__qty .stg-product__qty-btn:hover { background: #e3e7ea; }
.stg-card__qty .stg-product__qty-input, .stg-card__qty-input { width: 34px; font-size: 14px; background: transparent; }
.stg-card__button, .stg-card .stg-card__button.button {
	flex: 1 1 auto; min-width: 0; display: inline-flex; align-items: center; justify-content: center; text-align: center; box-sizing: border-box;
	background: var(--stg-accent) !important; color: #fff !important; border: 1px solid var(--stg-accent) !important;
	border-radius: 7px !important; padding: 8px 10px !important; font-size: 10px !important; font-weight: 600 !important;
	font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
	text-transform: uppercase !important; letter-spacing: .5px !important;
	text-decoration: none !important; cursor: pointer; transition: background .15s, border-color .15s; line-height: 1.1 !important;
}
.stg-card__button:hover { background: var(--stg-accent-dark) !important; border-color: var(--stg-accent-dark) !important; }
.stg-card__button.loading { opacity: .7; }
.stg-card__button.added::after { content: ' ✓'; }

/* ---------- MOBIEL ---------- */
@media (max-width: 900px) {
	/* Eén kolom. De buybox wordt met JS direct ná de gallery geplaatst (zie
	   initMobileOrder in product-page.js), zodat het prijsblok niet onderaan
	   belandt. Zelfde links/rechts-marges als de gallery (layout heeft geen
	   horizontale padding). */
	.stg-product__layout { display: flex; flex-direction: column; gap: 28px; padding: 12px 0 32px; }
	.stg-product__main { gap: 28px; }
	.stg-product__aside { position: static; top: auto; padding-top: 0; }
	.stg-product__buybox { position: static; }
	.stg-product .stg-product__title, .stg-product__title { font-size: 24px !important; }
}
@media (max-width: 768px) {
	.stg-product h4, .stg-product__description h4 { font-size: 16px !important; }
}
@media (max-width: 600px) {
	.stg-product { padding: 16px 16px 40px; }
	/* Specs op mobiel: label vet links, waarde rechts uitgelijnd op dezelfde regel. */
	.stg-product__specs-row { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: baseline; padding: 8px 0; }
	.stg-product .stg-product__specs dd, .stg-product__specs dd { text-align: right; }
	.stg-product__main-image { aspect-ratio: 1 / 1 !important; }
}

/* ============================================================
 * OFFERTE-MODAL (stukslijst)
 * ============================================================ */
.stg-offerte-modal { position: fixed; inset: 0; z-index: 1999999999; display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.stg-offerte-modal[hidden] { display: none; }
.stg-offerte-modal__overlay { position: fixed; inset: 0; background: rgba(10,33,53,.55); opacity: 0; transition: opacity .2s ease; }
.stg-offerte-modal.is-open .stg-offerte-modal__overlay { opacity: 1; }
.stg-offerte-modal__dialog {
	position: relative; z-index: 1; width: 100%; max-width: 720px; background: #fff; border-radius: 10px;
	padding: 34px 36px 32px; box-shadow: 0 24px 60px rgba(10,33,53,.28);
	opacity: 0; transform: translateY(14px); transition: opacity .2s ease, transform .2s ease;
}
.stg-offerte-modal.is-open .stg-offerte-modal__dialog { opacity: 1; transform: translateY(0); }
.stg-offerte-modal__close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; color: #6b7177; cursor: pointer; border-radius: 6px; }
.stg-offerte-modal__close:hover { background: #f2f5f7; color: var(--stg-text, #0A2135); }
.stg-offerte-modal__head { margin-bottom: 20px; }
.stg-offerte-modal__eyebrow { display: block; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: normal; color: var(--stg-text); text-transform: none; margin-bottom: 4px; }
.stg-offerte-modal__title { font-size: 30px !important; font-weight: 800 !important; text-transform: uppercase !important; color: var(--stg-text, #0A2135) !important; margin: 0 !important; line-height: 1.1 !important; letter-spacing: 0 !important; }
.stg-offerte-modal__intro { font-size: 14px; color: var(--stg-text-muted, #5c6b78); margin: 10px 0 0; line-height: 1.5; }

.stg-offerte-list { margin-bottom: 20px; }
.stg-offerte-list__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.stg-offerte-list__title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; color: var(--stg-text, #0A2135); }
.stg-offerte-list__add { all: unset; cursor: pointer; font-size: 13px; font-weight: 700; color: var(--stg-accent, #008B3B); }
.stg-offerte-list__add:hover { text-decoration: underline; }
.stg-offerte-list__rows { display: flex; flex-direction: column; gap: 8px; }
.stg-offerte-row { display: grid; grid-template-columns: 1fr 120px 84px 32px; gap: 8px; align-items: center; }
.stg-offerte-row--single { grid-template-columns: 1fr 120px 84px; }
.stg-offerte-row input { height: 42px; border: 1px solid #d7dce1; border-radius: 6px; padding: 0 12px; font: inherit; font-size: 14px; color: var(--stg-text, #0A2135); box-sizing: border-box; width: 100%; background: #fff; }
.stg-offerte-row input[readonly] { background: #f2f5f7; color: #47586a; }
.stg-offerte-row__qty { text-align: center; }
.stg-offerte-row input:focus { outline: none; border-color: var(--stg-accent, #008B3B); box-shadow: 0 0 0 3px rgba(0,139,59,.12); }
.stg-offerte-row__remove { all: unset; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; color: #9aa4b3; cursor: pointer; font-size: 22px; line-height: 1; }
.stg-offerte-row__remove:hover { background: #fdecea; color: #d6391f; }
.stg-offerte-row__remove--locked { cursor: default; }

.stg-offerte-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.stg-offerte-field { display: flex; flex-direction: column; gap: 6px; }
/* Labels staan nu ín het veld (placeholder), niet erboven — de span is enkel
   voor screenreaders. */
.stg-offerte-field > span.screen-reader-text,
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.stg-offerte-field em { color: #d6391f; font-style: normal; }
.stg-offerte-field input, .stg-offerte-field textarea { border: 1px solid #d7dce1; border-radius: 6px; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--stg-text, #0A2135); box-sizing: border-box; width: 100%; background: #fff; }
/* Placeholder = label in het veld: vetter en donkerder (zoals overzichtspagina). */
.stg-offerte-field input::placeholder, .stg-offerte-field textarea::placeholder { color: var(--stg-text, #0A2135); font-weight: 600; opacity: 1; }
.stg-offerte-field input:-ms-input-placeholder, .stg-offerte-field textarea:-ms-input-placeholder { color: var(--stg-text, #0A2135); font-weight: 600; }
.stg-offerte-field textarea { resize: vertical; min-height: 90px; }
.stg-offerte-field input:focus, .stg-offerte-field textarea:focus { outline: none; border-color: var(--stg-accent, #008B3B); box-shadow: 0 0 0 3px rgba(0,139,59,.12); }

.stg-offerte-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.stg-offerte-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stg-offerte-submit { all: unset; display: inline-flex; align-items: center; justify-content: center; background: #0d2b3a; color: #fff; border-radius: 6px; padding: 14px 30px; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; cursor: pointer; transition: background .15s; }
.stg-offerte-submit:hover { background: #0a2230; }
.stg-offerte-submit.is-loading { opacity: .65; cursor: wait; }
.stg-offerte-status { font-size: 14px; font-weight: 600; }
.stg-offerte-status.is-success { color: #2e8b3a; }
.stg-offerte-status.is-error { color: #d6391f; }

/* Contactregel onder het offerteformulier */
.stg-offerte-contact { margin: 14px 0 0; font-size: 14px; color: var(--stg-text-muted, #5c6b78); }
.stg-offerte-contact a { color: var(--stg-accent, #008B3B); text-decoration: underline; }

@media (max-width: 560px) {
	.stg-offerte-modal { padding: 16px 10px; }
	.stg-offerte-modal__dialog { padding: 24px 18px 22px; }
	.stg-offerte-modal__title { font-size: 24px !important; }
	.stg-offerte-row { grid-template-columns: 1fr 70px 28px; }
	.stg-offerte-row__sku { display: none; }
}

/* ---------- QUICKVIEW-MODAL (snel bekijken vanaf een kaart) ---------- */
.stg-qv-modal { position: fixed; inset: 0; z-index: 1999999999; display: flex; align-items: center; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.stg-qv-modal[hidden] { display: none; }
.stg-qv-modal__overlay { position: fixed; inset: 0; background: rgba(10,33,53,.55); opacity: 0; transition: opacity .2s ease; }
.stg-qv-modal.is-open .stg-qv-modal__overlay { opacity: 1; }
.stg-qv-modal__dialog { position: relative; z-index: 1; display: flex; gap: 32px; width: 100%; max-width: 980px; background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 24px 60px rgba(10,33,53,.25); opacity: 0; transform: translateY(12px); transition: opacity .2s ease, transform .2s ease; box-sizing: border-box; }
.stg-qv-modal.is-open .stg-qv-modal__dialog { opacity: 1; transform: translateY(0); }
.stg-qv-modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 0; background: transparent; color: #6b7177; cursor: pointer; border-radius: 8px; z-index: 2; }
.stg-qv-modal__close:hover { background: #f2f5f7; color: var(--stg-text); }
.stg-qv-modal__media { flex: 0 0 44%; max-width: 44%; display: flex; align-items: center; justify-content: center; }
.stg-qv-modal__media img { width: 100%; height: auto; max-height: 520px; object-fit: contain; }
.stg-qv-modal__body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.stg-qv-modal__title { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 28px; font-weight: 700; line-height: 1.15; text-transform: uppercase; color: var(--stg-text); margin: 0 0 26px; padding-right: 44px; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.stg-qv-modal__price { display: flex; flex-direction: column; gap: 2px; }
.stg-qv-modal__price-label { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--stg-text); }
.stg-qv-modal__price-excl { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 40px; font-weight: 700; line-height: 1.1; color: var(--stg-text); }
.stg-qv-modal__price-incl { font-size: 15px; color: var(--stg-text-muted); margin-top: 4px; }
.stg-qv-modal__sku { display: flex; gap: 16px; padding: 20px 0; margin: 22px 0 26px; border-top: 1px solid var(--stg-border); font-size: 15px; }
.stg-qv-modal__sku-label { font-weight: 600; color: var(--stg-text); }
.stg-qv-modal__sku-value { color: var(--stg-text-muted); }
.stg-qv-modal__actions { display: flex; align-items: stretch; gap: 12px; margin-top: auto; flex-wrap: wrap; }
.stg-qv-modal__qty { height: 52px; background: #eef1f3; flex: 0 0 auto; }
.stg-qv-modal__qty .stg-product__qty-input { background: transparent; }
.stg-qv-modal__view, .stg-qv-modal__cart { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 24px; border-radius: 8px; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; text-decoration: none; cursor: pointer; border: 0; transition: background .15s; white-space: nowrap; }
.stg-qv-modal__view { background: var(--stg-text); color: #fff; }
.stg-qv-modal__view:hover { background: #06182b; color: #fff; }
.stg-qv-modal__cart { background: var(--stg-accent); color: #fff; flex: 1 1 auto; }
.stg-qv-modal__cart:hover { background: var(--stg-accent-dark); color: #fff; }
/* Maatwerk (geen prijs) → prijs/winkelwagen verbergen. */
.stg-qv-modal--no-price .stg-qv-modal__price,
.stg-qv-modal--no-price .stg-qv-modal__qty,
.stg-qv-modal--no-price .stg-qv-modal__cart { display: none; }
.stg-qv-modal__cart .added_to_cart, .stg-qv-modal__cart.loading::after { display: none !important; }
@media (max-width: 768px) {
	.stg-qv-modal__dialog { flex-direction: column; gap: 18px; padding: 28px 20px; }
	.stg-qv-modal__media { flex-basis: auto; max-width: 100%; }
	.stg-qv-modal__media img { max-height: 300px; }
	.stg-qv-modal__title { font-size: 22px; margin-bottom: 18px; padding-right: 36px; }
	.stg-qv-modal__price-excl { font-size: 32px; }
	.stg-qv-modal__actions { flex-direction: column; }
	.stg-qv-modal__view, .stg-qv-modal__cart { width: 100%; }
}

/* ---------- EIGEN WINKELWAGEN-BEVESTIGING (correcte productnaam) ----------
   Staat in <body> buiten .stg-product, dus letterlijke kleuren i.p.v. vars. */
.stg-cart-toast { position: fixed; inset: 0; z-index: 2000000000; display: none; align-items: center; justify-content: center; padding: 20px; }
.stg-cart-toast.is-open { display: flex; }
.stg-cart-toast__overlay { position: fixed; inset: 0; background: rgba(10,33,53,.5); }
.stg-cart-toast__dialog { position: relative; z-index: 1; width: 100%; max-width: 440px; background: #fff; border-radius: 12px; padding: 28px 28px 24px; box-shadow: 0 24px 60px rgba(10,33,53,.25); box-sizing: border-box; }
.stg-cart-toast__close { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; font-size: 24px; line-height: 1; color: #6b7177; cursor: pointer; }
.stg-cart-toast__close:hover { color: #0A2135; }
.stg-cart-toast__head { font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; color: #0A2135; padding-bottom: 10px; margin-bottom: 14px; border-bottom: 3px solid #008B3B; display: inline-block; }
.stg-cart-toast__body { font-size: 15px; line-height: 1.5; color: #0A2135; margin-bottom: 22px; }
.stg-cart-toast__actions { display: flex; gap: 12px; }
.stg-cart-toast__cont, .stg-cart-toast__view { flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 16px; border-radius: 7px; font-family: 'Kanit', -apple-system, "system-ui", "Segoe UI", Roboto, sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; text-decoration: none; cursor: pointer; border: 1px solid #d7dce1; box-sizing: border-box; }
.stg-cart-toast__cont { background: #fff; color: #0A2135; }
.stg-cart-toast__cont:hover { background: #f2f5f7; }
.stg-cart-toast__view { background: #008B3B; border-color: #008B3B; color: #fff; }
.stg-cart-toast__view:hover { background: #026e30; color: #fff; }
