/**
 * NS Variation Swatches - Houthandel Jan Sok
 * Tekstknoppen voor productvariaties (maten).
 * Huisstijl: --maincolor #2C4329, --subcolor #ccdc46, accent #006f3b.
 */

.ns-swatches__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 4px 0;
}

.ns-swatch {
	display: inline-block;
	padding: 9px 16px;
	background: #fff;
	border: 2px solid #d4d4d4;
	border-radius: 6px;
	font-family: 'Urbanist', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #2C4329;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
	line-height: 1.2;
}

.ns-swatch:hover {
	border-color: #2C4329;
}

.ns-swatch--active {
	background: #2C4329;
	border-color: #2C4329;
	color: #fff;
}

.ns-swatch--disabled {
	opacity: 0.4;
	cursor: not-allowed;
	text-decoration: line-through;
}

.ns-swatch--disabled:hover {
	border-color: #d4d4d4;
}

/* De originele "Wis" reset-link netjes houden */
.ns-swatches + .reset_variations,
.reset_variations {
	display: inline-block;
	margin-top: 6px;
	font-size: 13px;
	color: #758470;
}
