/**
 * Veloura Vaak Samen Gekocht — frontend (design: veloura-vaak-samen-gekocht-v4-licht.html).
 * Strikt gescoped onder .vvsg zodat het theme en de widget elkaar niet raken.
 */
@font-face {
	font-family: 'Mageline';
	src: url('../fonts/Mageline_custom.ttf') format('truetype'),
		url('https://veloura.conceptdesign.website/wp-content/uploads/2026/03/Mageline_custom.ttf') format('truetype');
	font-weight: 300 600;
	font-style: normal;
	font-display: swap;
}

.vvsg.vs-fbt {
	/* Veloura huisstijl */
	--vs-primary: #7b123b;
	--vs-primary-2: #971a44;
	--vs-dark: #5e0e2d;
	--vs-hover: #9a2550;
	--vs-soft: #fdf5f8;
	--vs-accent: #f0d4de;
	--vs-text: #2b2b2b;
	--vs-muted: #8a8a8a;
	--vs-border: #eee3e8;
	--vs-white: #ffffff;

	position: relative;
	background: var(--vs-soft);
	padding: 76px 24px 68px;
	overflow: hidden;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--vs-text);

	/* Volle breedte, ook binnen een boxed thema-container */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.vvsg *,
.vvsg *::before,
.vvsg *::after { box-sizing: border-box; margin: 0; padding: 0; }

.vvsg .vs-blob {
	position: absolute;
	border-radius: 50%;
	background: rgba(240, 212, 222, 0.55);
	filter: blur(70px);
	pointer-events: none;
}
.vvsg .vs-blob--1 { width: 420px; height: 420px; top: -160px; right: -80px; }
.vvsg .vs-blob--2 { width: 360px; height: 360px; bottom: -180px; left: -100px; }

.vvsg .vs-fbt__inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	z-index: 1;
}

.vvsg .vs-fbt__header { text-align: center; margin-bottom: 44px; }
.vvsg .vs-fbt__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--vs-primary);
	margin-bottom: 16px;
}
.vvsg .vs-fbt__eyebrow svg { width: 13px; height: 13px; }
.vvsg .vs-fbt__title {
	font-family: 'Mageline', 'Cormorant Garamond', serif;
	font-size: 42px;
	font-weight: 500;
	color: var(--vs-dark);
	line-height: 1.12;
	margin-bottom: 12px;
	text-transform: none;
	letter-spacing: normal;
}
.vvsg .vs-fbt__title em { font-style: italic; color: var(--vs-primary); }
.vvsg .vs-fbt__subtitle { font-size: 15px; color: var(--vs-muted); }

.vvsg .vs-fbt__products {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}

.vvsg .vs-card {
	position: relative;
	flex: 1;
	max-width: 280px;
	background: var(--vs-white);
	border: 1px solid var(--vs-border);
	border-radius: 6px;
	padding: 16px 16px 22px;
	text-align: center;
	cursor: pointer;
	display: block;
	transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}
.vvsg .vs-card:hover { transform: translateY(-3px); border-color: var(--vs-accent); }
.vvsg .vs-card.is-uit { opacity: 0.45; transform: none; }
.vvsg .vs-card.is-vast { cursor: default; }
.vvsg .vs-card.is-vast:hover { transform: none; border-color: var(--vs-border); }

.vvsg .vs-card input[type='checkbox'] {
	position: absolute;
	top: 26px;
	right: 26px;
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--vs-accent);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	background: var(--vs-white);
	z-index: 2;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.vvsg .vs-card input[type='checkbox']:checked {
	background: var(--vs-primary);
	border-color: var(--vs-primary);
}
.vvsg .vs-card input[type='checkbox']:checked::after {
	content: '';
	width: 5px;
	height: 9px;
	border: solid var(--vs-white);
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg) translateY(-1px);
}
.vvsg .vs-card input[type='checkbox']:focus-visible {
	outline: 2px solid var(--vs-hover);
	outline-offset: 2px;
}
.vvsg .vs-card input[type='checkbox']:disabled {
	background: var(--vs-dark);
	border-color: var(--vs-dark);
	cursor: default;
}

.vvsg .vs-card__img {
	position: relative;
	background: var(--vs-soft);
	border-radius: 4px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	overflow: hidden;
}
.vvsg .vs-card__img img {
	width: 82%;
	height: 82%;
	object-fit: contain;
	mix-blend-mode: multiply;
	box-shadow: none;
	border: 0;
}
.vvsg .vs-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--vs-white);
	background: var(--vs-primary);
	border-radius: 999px;
	padding: 5px 11px;
	z-index: 1;
}
.vvsg .vs-card__role {
	display: block;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--vs-primary);
	margin-bottom: 6px;
}
.vvsg .vs-card__name {
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 6px;
	padding: 0 6px;
	color: var(--vs-text);
}
.vvsg .vs-card__price {
	font-family: 'Mageline', 'Cormorant Garamond', serif;
	font-size: 19px;
	font-weight: 600;
	color: var(--vs-dark);
}
.vvsg .vs-card__price del { opacity: 0.5; font-weight: 400; margin-right: 5px; }
.vvsg .vs-card__price .woocommerce-Price-amount { color: inherit; font-weight: inherit; }
/* Prijzen altijd in het heading-font, ook binnen de Woo-prijs-spans en tegen theme-styling in. */
.vvsg .vs-card__price,
.vvsg .vs-card__price *,
.vvsg .vs-total__price,
.vvsg .vs-total__price * {
	font-family: 'Mageline', 'Cormorant Garamond', serif !important;
}

.vvsg .vs-plus {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
}
.vvsg .vs-plus span {
	width: 32px;
	height: 32px;
	border: 1px solid var(--vs-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--vs-primary);
	background: var(--vs-white);
}

.vvsg .vs-fbt__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 760px;
	margin: 0 auto;
	background: var(--vs-white);
	border: 1px solid var(--vs-border);
	border-radius: 6px;
	padding: 22px 28px;
	flex-wrap: wrap;
}
.vvsg .vs-total__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--vs-muted);
	margin-bottom: 5px;
}
.vvsg .vs-total__row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}
.vvsg .vs-total__price {
	font-family: 'Mageline', 'Cormorant Garamond', serif;
	font-size: 36px;
	font-weight: 600;
	color: var(--vs-dark);
	line-height: 1;
}
.vvsg .vs-total__price .woocommerce-Price-amount { color: inherit; font-weight: inherit; }
.vvsg .vs-total__was {
	font-size: 14px;
	color: var(--vs-muted);
	text-decoration: line-through;
}
.vvsg .vs-total__was .woocommerce-Price-amount { color: inherit; }
.vvsg .vs-total__save {
	font-size: 13px;
	font-weight: 600;
	color: var(--vs-primary);
}
.vvsg .vs-total__save .woocommerce-Price-amount { color: inherit; font-weight: inherit; }

.vvsg .vs-fbt__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--vs-white);
	background: var(--vs-primary);
	border: none;
	border-radius: 25px 50px 25px 50px;
	padding: 17px 36px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.15s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.vvsg .vs-btn-arrow {
	width: 15px;
	height: 15px;
	transition: transform 0.2s ease;
}
.vvsg .vs-fbt__btn:hover .vs-btn-arrow { transform: translateX(3px); }
.vvsg .vs-fbt__btn:hover { background: var(--vs-hover); }
.vvsg .vs-fbt__btn:active { transform: scale(0.985); }
.vvsg .vs-fbt__btn:disabled { opacity: 0.75; cursor: default; }
.vvsg .vs-fbt__btn:focus-visible { outline: 2px solid var(--vs-dark); outline-offset: 3px; }

.vvsg .vs-fbt__error {
	flex: 1 1 100%;
	font-size: 13px;
	color: var(--vs-primary);
	text-align: center;
}

@media (max-width: 860px) {
	/* Geen 100vw-breakout op mobiel: voorkomt horizontale overflow die o.a. de
	   sidecart van het theme visueel verschuift. */
	.vvsg.vs-fbt {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 48px 18px 44px;
	}
	.vvsg .vs-fbt__title { font-size: 31px; }
	.vvsg .vs-card__name { font-size: 12.5px; padding: 0; }
	.vvsg .vs-card__role { display: none; }
	.vvsg .vs-card { padding: 10px 10px 16px; }
	.vvsg .vs-card input[type='checkbox'] { top: 16px; right: 16px; width: 19px; height: 19px; }
	.vvsg .vs-plus { flex: 0 0 24px; }
	.vvsg .vs-plus span { width: 24px; height: 24px; font-size: 14px; }
	.vvsg .vs-fbt__foot { flex-direction: column; align-items: stretch; text-align: center; }
	.vvsg .vs-total__row { justify-content: center; }
	.vvsg .vs-fbt__btn { justify-content: center; }
}

/* Smalle telefoons: kaarten stapelen als leesbare rijen in plaats van 3 smalle kolommen */
@media (max-width: 560px) {
	.vvsg .vs-fbt__title { font-size: 26px; }
	.vvsg .vs-fbt__header { margin-bottom: 28px; }
	.vvsg .vs-fbt__products {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-bottom: 28px;
	}
	.vvsg .vs-card {
		max-width: none;
		display: grid;
		grid-template-columns: 76px minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
		text-align: left;
		padding: 12px 52px 12px 12px;
	}
	.vvsg .vs-card:hover { transform: none; }
	.vvsg .vs-card__img {
		width: 76px;
		margin-bottom: 0;
	}
	.vvsg .vs-card__badge { display: none; }
	.vvsg .vs-card input[type='checkbox'] {
		top: 50%;
		transform: translateY(-50%);
		right: 14px;
		width: 22px;
		height: 22px;
	}
	.vvsg .vs-card__name {
		font-size: 13px;
		line-height: 1.35;
		margin-bottom: 0;
		padding: 0;
	}
	.vvsg .vs-card__price {
		font-size: 17px;
		text-align: right;
		white-space: nowrap;
	}
	.vvsg .vs-plus { flex: none; height: 10px; }
	.vvsg .vs-plus span {
		width: 22px;
		height: 22px;
		font-size: 13px;
		margin: 0 auto;
	}
	.vvsg .vs-fbt__foot { padding: 18px 16px; }
	.vvsg .vs-total__price { font-size: 27px; }
	.vvsg .vs-fbt__btn { width: 100%; padding: 15px 24px; }
}

@media (prefers-reduced-motion: reduce) {
	.vvsg *, .vvsg *::before, .vvsg *::after { transition: none !important; }
	.vvsg .vs-card:hover { transform: none; }
}
