/* ============================================================
   Custom Variation Swatches — swatches.css
   ============================================================ */

/* Hide the native WooCommerce select */
.cvs-native-select {
	display: none !important;
}

/* Verberg WooCommerce's variatie-prijs en stocktekst — die tonen we zelf
   op de swatch-kaarten. De HTML-structuur blijft intact zodat WooCommerce's
   JS en plugins zoals CWG correct blijven werken. */
.woocommerce-variation-price,
.woocommerce-variation-description,
.woocommerce-variation-availability .stock {
	display: none !important;
}



/* ── Beschikbaarheid indicator ────────────────────────────── */

.cvs-availability {
	display: none;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	font-size: 0.95rem;
	font-weight: 500;
	color: #00B67A;
}

.cvs-availability.is-visible {
	display: none;
}

.cvs-availability svg {
	flex-shrink: 0;
}

/* Geen extra padding links in de variaties tabel */
.variations td.value {
	padding-left: 0;
}

/* ── Grid ─────────────────────────────────────────────────── */

.cvs-wrapper {
	margin-bottom: 20px;
}

.cvs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

/* ── Single card ──────────────────────────────────────────── */

.cvs-swatch {
	border: 1.27px solid #e0e0e0;
	border-radius: 6px;
	background: #ffffff;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease;
	outline: none;
	-webkit-user-select: none;
	user-select: none;
	height: 95px;

	display: flex;
	flex-direction: column;
}

.cvs-swatch:focus-visible {
	box-shadow: 0 0 0 3px rgba(81, 179, 127, 0.35);
}

/* Hover */
.cvs-swatch:not(.is-unavailable):hover {
	border-color: var(--cvs-color-border, #51B37F) !important;
}

.cvs-swatch:not(.is-unavailable):hover .cvs-swatch__badge {
	background-color: var(--cvs-color-border, #51B37F) !important;
	color: #ffffff !important;
}

/* Selected */
.cvs-swatch.is-selected,
.cvs-swatch.is-selected:hover {
	border: 2px solid var(--cvs-color-border, #51B37F) !important;
	background-color: var(--cvs-color-bg, #F8FDFB) !important;
}

.cvs-swatch.is-selected .cvs-swatch__badge,
.cvs-swatch.is-selected:hover .cvs-swatch__badge {
	margin: -2px !important;
}

.cvs-swatch.is-selected .cvs-swatch__badge,
.cvs-swatch.is-selected:hover .cvs-swatch__badge {
	background-color: var(--cvs-color-border, #51B37F) !important;
	color: #ffffff !important;
}

/* Out of stock */
.cvs-swatch.is-unavailable {
	background-color: #F5F6F7;
	cursor: pointer;
}

/* Low stock — achtergrond */
.cvs-swatch.is-low-stock {
	background-color: #F5F6F7;
}


.cvs-swatch.is-unavailable .cvs-swatch__label,
.cvs-swatch.is-unavailable .cvs-swatch__divider,
.cvs-swatch.is-unavailable .cvs-swatch__price {
	opacity: 0.45;
}

/* ── Spacer (balances badge height so body stays centered) ── */

.cvs-swatch__spacer {
	height: 22px;
	flex-shrink: 0;
}

/* ── Badge ────────────────────────────────────────────────── */

.cvs-swatch__badge {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 4px 12px;
	line-height: 1.4;
	border-radius: 6px 6px 0 0;
	margin: -1.27px !important;
	flex-shrink: 0;
}

.cvs-swatch__badge--light {
	background-color: var(--cvs-badge-light-bg, #e8e8e8);
	color: var(--cvs-badge-light-text, #333333);
}

.cvs-swatch__badge--dark {
	background-color: var(--cvs-badge-dark-bg, #111111);
	color: var(--cvs-badge-dark-text, #ffffff);
}

.cvs-swatch__badge--green {
	background-color: var(--cvs-badge-green-bg, #51B37F);
	color: var(--cvs-badge-green-text, #ffffff);
}

/* ── Card body ────────────────────────────────────────────── */

.cvs-swatch__body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 6px 14px;
	flex-wrap: wrap;
	min-height: 0;
}

/* When a badge is present: shift the centering area down so content
   is centered between badge-bottom and card-bottom (not just badge to footer) */
.cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body {
	padding-top: 19px;
	padding-bottom: 0;
}

/* Badge + bijna uitverkocht: padding-top wordt nu via margin-top: auto geregeld */

.cvs-swatch__label {
	font-size: 1.3rem;
	color: #1a1a1a;
	font-weight: 400;
}

/* Divider: vertical 2px line instead of a "|" character */
.cvs-swatch__divider {
	display: inline-block;
	width: 2px;
	height: 18px;
	background-color: #cccccc;
	border-radius: 1px;
	vertical-align: middle;
	font-size: 0;        /* hides the "|" character */
	flex-shrink: 0;
}

.cvs-swatch__price {
	font-size: 1.3rem;
	font-weight: 700;
	color: #111111;
	white-space: nowrap;
}

/* WooCommerce wraps price in <span class="woocommerce-Price-amount"> */
.cvs-swatch__price .woocommerce-Price-amount,
.cvs-swatch__price bdi {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

/* ── Footer (always rendered for consistent card height) ──── */

.cvs-swatch__footer {
	height: 22px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 16px;
	line-height: 1;
	padding: 0 14px;
}

.cvs-swatch__oos {
	color: #7B7B7C;
}

.cvs-swatch__low-stock-dot {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #E8A44A;
	flex-shrink: 0;
}

.cvs-swatch__footer span:not(.cvs-swatch__low-stock-dot) {
	color: #555555;
}

/* ── Layout options: compact tiles + list cards ───────────── */

.cvs-grid--tiles {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.cvs-grid--list {
	grid-template-columns: 1fr;
	gap: 12px;
}

.cvs-wrapper--tiles .cvs-swatch,
.cvs-wrapper--list .cvs-swatch {
	position: relative;
	overflow: hidden;
	border: 1px solid #dedede;
	border-radius: 12px;
	background: #ffffff;
	transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cvs-wrapper--tiles .cvs-swatch:not(.is-unavailable):hover,
.cvs-wrapper--list .cvs-swatch:not(.is-unavailable):hover {
	border-color: #c9d8ce !important;
	box-shadow: 0 8px 22px rgba(20, 24, 32, 0.06);
	transform: translateY(-1px);
}

.cvs-wrapper--tiles .cvs-swatch.is-selected,
.cvs-wrapper--tiles .cvs-swatch.is-selected:hover,
.cvs-wrapper--list .cvs-swatch.is-selected,
.cvs-wrapper--list .cvs-swatch.is-selected:hover {
	border: 1px solid var(--cvs-color-border, #51B37F) !important;
	background-color: var(--cvs-color-bg, #F8FDFB) !important;
	box-shadow: 0 0 0 1px var(--cvs-color-border, #51B37F) inset;
}

.cvs-wrapper--tiles .cvs-swatch.is-unavailable,
.cvs-wrapper--tiles .cvs-swatch.is-low-stock,
.cvs-wrapper--list .cvs-swatch.is-unavailable,
.cvs-wrapper--list .cvs-swatch.is-low-stock {
	background-color: #f7f7f7;
}

.cvs-wrapper--tiles .cvs-swatch.is-unavailable,
.cvs-wrapper--list .cvs-swatch.is-unavailable {
	opacity: 0.62;
}

.cvs-wrapper--tiles .cvs-swatch__spacer,
.cvs-wrapper--list .cvs-swatch__spacer {
	display: none;
}

.cvs-wrapper--tiles .cvs-swatch__badge,
.cvs-wrapper--list .cvs-swatch__badge {
	position: absolute;
	right: 8px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100% - 16px);
	margin: 0 !important;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.cvs-wrapper--tiles .cvs-swatch__badge {
	top: -7px;
	right: auto;
	left: 10px;
	height: 16px;
	transform: none;
}

.cvs-wrapper--tiles .cvs-swatch__badge--light,
.cvs-wrapper--tiles .cvs-swatch__badge--dark,
.cvs-wrapper--tiles .cvs-swatch__badge--green {
	min-width: 0;
	max-width: calc(100% - 20px);
	padding: 0 7px;
	line-height: 16px;
}

.cvs-wrapper--list .cvs-swatch__badge {
	top: 14px;
}

.cvs-wrapper--tiles .cvs-swatch.is-selected .cvs-swatch__badge,
.cvs-wrapper--tiles .cvs-swatch.is-selected:hover .cvs-swatch__badge,
.cvs-wrapper--list .cvs-swatch.is-selected .cvs-swatch__badge,
.cvs-wrapper--list .cvs-swatch.is-selected:hover .cvs-swatch__badge {
	margin: 0 !important;
}

.cvs-wrapper--tiles .cvs-swatch__badge--light,
.cvs-wrapper--list .cvs-swatch__badge--light {
	background-color: var(--cvs-badge-light-bg, #e8e8e8);
	color: var(--cvs-badge-light-text, #333333);
}

.cvs-wrapper--tiles .cvs-swatch__badge--green,
.cvs-wrapper--list .cvs-swatch__badge--green {
	background-color: var(--cvs-badge-green-bg, #51B37F);
	color: var(--cvs-badge-green-text, #ffffff);
}

.cvs-wrapper--tiles .cvs-swatch__body,
.cvs-wrapper--list .cvs-swatch__body {
	flex: 1 1 auto;
	justify-content: flex-start;
	min-width: 0;
	padding: 0;
	gap: 8px;
}

.cvs-wrapper--tiles .cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body,
.cvs-wrapper--list .cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body {
	padding-top: 0;
}

.cvs-wrapper--tiles .cvs-swatch.is-low-stock .cvs-swatch__body,
.cvs-wrapper--tiles .cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__body,
.cvs-wrapper--list .cvs-swatch.is-low-stock .cvs-swatch__body,
.cvs-wrapper--list .cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__body {
	flex: initial;
	margin-top: 0;
}

.cvs-wrapper--tiles .cvs-swatch__label,
.cvs-wrapper--list .cvs-swatch__label {
	color: #1a1a1a;
	font-weight: 600;
}

.cvs-wrapper--tiles .cvs-swatch__price,
.cvs-wrapper--list .cvs-swatch__price {
	color: #111111;
	font-weight: 700;
	line-height: 1;
}

.cvs-wrapper--tiles .cvs-swatch__pricing,
.cvs-wrapper--list .cvs-swatch__pricing {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
}

.cvs-wrapper--tiles .cvs-swatch__footer,
.cvs-wrapper--list .cvs-swatch__footer {
	height: auto;
	padding: 0;
	font-size: 12px;
	justify-content: flex-start;
}

.cvs-wrapper--tiles .cvs-swatch.is-low-stock .cvs-swatch__footer,
.cvs-wrapper--tiles .cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__footer,
.cvs-wrapper--list .cvs-swatch.is-low-stock .cvs-swatch__footer,
.cvs-wrapper--list .cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__footer {
	margin-bottom: 0;
}

.cvs-swatch__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	max-width: 100%;
	min-height: 20px;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.cvs-swatch__status--low {
	background: #fff7e8;
	color: #9a5f08;
	box-shadow: inset 0 0 0 1px rgba(232, 164, 74, 0.22);
}

.cvs-swatch__status--available {
	background: #eefaf3;
	color: #2f8359;
	box-shadow: inset 0 0 0 1px rgba(47, 131, 89, 0.12);
}

.cvs-swatch__footer .cvs-swatch__status--low {
	color: #9a5f08;
}

.cvs-swatch__status--notify {
	background: #f0f1f2;
	color: #60646b;
	box-shadow: inset 0 0 0 1px rgba(31, 35, 40, 0.08);
}

.cvs-swatch__footer .cvs-swatch__status--notify {
	color: #60646b;
}

.cvs-swatch__status--notify::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #e05454;
	opacity: 1;
}

.cvs-swatch__low-stock-dot {
	display: inline-block;
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background-color: #E8A44A;
	box-shadow: 0 0 0 3px rgba(232, 164, 74, 0.18);
}

.cvs-swatch__available-dot {
	display: inline-block;
	flex: 0 0 auto;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background-color: #35a86b;
	box-shadow: 0 0 0 3px rgba(53, 168, 107, 0.14);
}

.cvs-wrapper--tiles .cvs-swatch__available-dot {
	display: inline-block !important;
	flex: 0 0 auto !important;
	width: 7px !important;
	height: 7px !important;
	min-width: 7px !important;
	border-radius: 999px !important;
	background: #35a86b !important;
	box-shadow: 0 0 0 3px rgba(53, 168, 107, 0.14) !important;
	opacity: 1 !important;
}

.cvs-wrapper--tiles .cvs-swatch {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: minmax(0, 1fr);
	align-content: stretch;
	min-height: 86px;
	height: auto;
	overflow: visible;
	padding: 15px 15px 5px 15px;
	row-gap: 0;
}

.cvs-wrapper--tiles .cvs-swatch__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-rows: auto auto;
	align-items: center;
	align-content: space-between;
	flex: 1;
	gap: 2px 8px;
	padding: 6px 0 10px;
}

.cvs-wrapper--tiles .cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body {
	padding: 6px 0 10px;
}

.cvs-wrapper--tiles .cvs-swatch__label {
	display: block;
	width: auto;
	max-width: 100%;
	font-size: 19px;
	line-height: 1.12;
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	align-self: center;
}

.cvs-wrapper--tiles .cvs-swatch__note {
	position: static;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	max-width: 100%;
	min-height: 16px;
	overflow: visible;
	color: #53545a;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
	grid-column: 1 / 3;
	grid-row: 2 / 3;
	width: 100%;
	margin-top: 0;
	padding-top: 8px;
	border-top: 1px solid #ebebeb;
}

.cvs-wrapper--tiles .cvs-swatch__note.cvs-swatch__status {
	padding-top: 10px;
}

.cvs-wrapper--tiles .cvs-swatch__status {
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-size: 10px;
	overflow: visible;
}

.cvs-wrapper--tiles .cvs-swatch__status--notify::before {
	width: 6px;
	height: 6px;
	margin-right: 0;
}

.cvs-wrapper--tiles .cvs-swatch__divider {
	display: none;
}

.cvs-wrapper--tiles .cvs-swatch__price {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	align-self: center;
	display: inline-flex;
	align-items: center;
	margin-left: auto;
	font-size: 19px;
	line-height: 1;
}

.cvs-wrapper--tiles .cvs-swatch__price .woocommerce-Price-amount,
.cvs-wrapper--tiles .cvs-swatch__price bdi {
	display: inline-flex;
	align-items: center;
	font: inherit;
	line-height: 1;
}

.cvs-wrapper--tiles .cvs-swatch__pricing {
	display: none;
}

.cvs-wrapper--tiles .cvs-swatch::after {
	content: none;
}

/* Keep status text above the decorative divider. */
.cvs-wrapper--tiles .cvs-swatch__note {
	z-index: 1;
}

.cvs-wrapper--tiles .cvs-swatch__footer {
	display: none;
}

.cvs-wrapper--tiles .cvs-swatch__footer:empty {
	display: none;
}

.cvs-wrapper--tiles .cvs-swatch__footer:not(:empty) {
	padding-right: 0;
}

.cvs-wrapper--list .cvs-swatch {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	min-height: 84px;
	height: auto;
	padding: 14px 16px;
}

.cvs-wrapper--list .cvs-swatch__body {
	grid-column: 1 / 2;
	padding-right: 96px;
}

.cvs-wrapper--list .cvs-swatch__footer {
	grid-column: 1 / 2;
	margin-top: 6px;
}

.cvs-wrapper--list .cvs-swatch__divider {
	display: none;
}

.cvs-wrapper--list .cvs-swatch__price {
	font-size: 1.45rem;
}

.cvs-wrapper--list .cvs-swatch__pricing {
	position: absolute;
	right: 16px;
	bottom: 16px;
}

.cvs-wrapper--list .cvs-swatch__label {
	font-size: 1.25rem;
}

/* ── Mobile ───────────────────────────────────────────────── */

@media (max-width: 480px) {
	.cvs-grid {
		gap: 8px;
	}

	.cvs-swatch {
		height: 80px;
	}

	.cvs-swatch__spacer {
		height: 18px;
	}

	.cvs-swatch__body {
		padding: 4px 10px;
		gap: 6px;
	}

	.cvs-swatch__label {
		font-size: 1.1rem;
	}

	.cvs-swatch__price {
		font-size: 1.1rem;
	}

	.cvs-swatch__badge {
		font-size: 0.72rem;
		padding: 3px 10px;
	}

	.cvs-swatch__footer {
		height: 20px;
		font-size: 13px;
	}

	/* Badge centering op mobiel: footer is 20px dus padding-top 20px */
	.cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body {
		padding-top: 20px;
		padding-bottom: 0;
	}

	/* Badge + bijna uitverkocht op mobiel: zelfde groep-logica, kleinere padding */
	.cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__body {
		padding-bottom: 3px;
	}

	.cvs-swatch:has(.cvs-swatch__badge).is-low-stock .cvs-swatch__footer {
		padding-bottom: 4px;
	}

	/* Dot iets kleiner op mobiel */
	.cvs-swatch__low-stock-dot {
		width: 7px;
		height: 7px;
	}

	.cvs-wrapper--tiles .cvs-swatch {
		min-height: 86px;
		height: auto;
		padding: 10px;
	}

	.cvs-wrapper--tiles .cvs-swatch__body {
		gap: 3px;
		padding: 12px 0 0px;
	}

	.cvs-wrapper--tiles .cvs-swatch:has(.cvs-swatch__badge) .cvs-swatch__body {
		padding: 12px 0 0px;
	}

	.cvs-wrapper--tiles .cvs-swatch__label {
		font-size: 15px;
	}

	.cvs-wrapper--tiles .cvs-swatch__note {
		font-size: 10px;
	}

	.cvs-wrapper--tiles .cvs-swatch__status {
		min-height: 18px;
		padding: 0;
		font-size: 9px;
	}

	.cvs-wrapper--tiles .cvs-swatch__price {
		font-size: 15px;
	}

	.cvs-wrapper--tiles .cvs-swatch__footer {
		display: none;
	}

	.cvs-wrapper--tiles .cvs-swatch__footer:not(:empty) {
		padding-right: 0;
	}

	.cvs-wrapper--tiles .cvs-swatch__badge,
	.cvs-wrapper--list .cvs-swatch__badge {
		padding: 3px 6px;
		font-size: 8px;
	}

	.cvs-wrapper--tiles .cvs-swatch__badge {
		top: -7px;
		right: auto;
		left: 10px;
		max-width: calc(100% - 16px);
		transform: none;
	}

	.cvs-wrapper--list .cvs-swatch {
		min-height: 76px;
		padding: 12px;
	}

	.cvs-wrapper--list .cvs-swatch__body {
		padding-right: 82px;
	}

	.cvs-wrapper--list .cvs-swatch__label {
		font-size: 1.05rem;
	}

	.cvs-wrapper--list .cvs-swatch__price {
		font-size: 1.15rem;
	}

	.cvs-wrapper--list .cvs-swatch__pricing {
		right: 12px;
		bottom: 14px;
	}

	.cvs-swatch__status {
		min-height: 18px;
		padding: 3px 6px;
		font-size: 9px;
	}
}

/* ── Sticky bar ───────────────────────────────────────────── */

#cvs-sticky {
	position: fixed;
	bottom: -160px;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #ffffff;
	box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.10);
	transition: bottom 0.3s ease;
	padding: 12px 20px;
}

#cvs-sticky.cvs-sticky--visible {
	bottom: 0;
}

.cvs-sticky__inner {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.cvs-sticky__attributes {
	flex: 1;
	min-width: 0;
}

.cvs-sticky__swatches {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.cvs-sticky__swatches::-webkit-scrollbar {
	display: none;
}

/* ── Sticky swatch card ───────────────────────────────────── */

.cvs-sticky-swatch {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 90px;
	height: 54px;
	padding: 6px 12px;
	border: 1.5px solid #e0e0e0;
	border-radius: 6px;
	background: #ffffff;
	cursor: pointer;
	transition: border-color 0.15s ease, background-color 0.15s ease;
	-webkit-user-select: none;
	user-select: none;
}

.cvs-sticky-swatch:hover:not(.is-unavailable) {
	border-color: var(--cvs-color-border, #51B37F);
}

.cvs-sticky-swatch.is-selected {
	border: 2px solid var(--cvs-color-border, #51B37F) !important;
	background-color: var(--cvs-color-bg, #F8FDFB);
}

.cvs-sticky-swatch.is-unavailable {
	background: #F5F6F7;
	opacity: 0.6;
	cursor: default;
}

.cvs-sticky-swatch__label {
	font-size: 0.95rem;
	font-weight: 400;
	color: #1a1a1a;
	white-space: nowrap;
}

.cvs-sticky-swatch__price {
	font-size: 0.85rem;
	font-weight: 700;
	color: #111111;
	white-space: nowrap;
}

/* ── Sticky knop ──────────────────────────────────────────── */

.cvs-sticky__btn {
	flex-shrink: 0;
	height: 54px;
	padding: 0 28px;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.15s ease;
}

.cvs-sticky__btn--choose {
	background-color: #1a1a1a;
	color: #ffffff;
}

.cvs-sticky__btn--choose:hover {
	background-color: #333333;
}

.cvs-sticky__btn--add {
	background-color: var(--cvs-color-border, #51B37F);
	color: #ffffff;
}

.cvs-sticky__btn--add:hover {
	filter: brightness(0.92);
}

/* ── Sticky mobiel ────────────────────────────────────────── */

@media (max-width: 480px) {
	#cvs-sticky {
		padding: 10px 12px;
	}

	.cvs-sticky__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.cvs-sticky__attributes {
		width: 100%;
	}

	.cvs-sticky-swatch {
		min-width: 76px;
		height: 48px;
		padding: 4px 10px;
	}

	.cvs-sticky-swatch__label {
		font-size: 0.85rem;
	}

	.cvs-sticky-swatch__price {
		font-size: 0.78rem;
	}

	.cvs-sticky__btn {
		width: 100%;
		height: 48px;
		padding: 0;
		font-size: 0.95rem;
	}
}
