/*
 * WooDancer — frontend variation engine
 *
 * Minimal utility CSS. Visual styling lives in the BD element's css.twig
 * (Design tab controls). This file only provides hard utilities the engine
 * needs to behave correctly regardless of theme.
 */

/* Visually hidden, accessible to assistive tech */
.woodancer-vc__sr-status {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Honor the [hidden] attribute even when themes override display */
.woodancer-vc__dropdown-panel[hidden],
.woodancer-vc__selected-label[hidden],
.woodancer-vc__reset[hidden] {
	display: none !important;
}

/* Disabled / OOS swatches still receive pointer events for tooltips,
 * but the engine sets aria-disabled and ignores clicks. */
.woodancer-vc__swatch[data-state="disabled"],
.woodancer-vc__swatch[data-state="out-of-stock"],
.woodancer-vc__dropdown-option[data-state="disabled"],
.woodancer-vc__dropdown-option[data-state="out-of-stock"] {
	opacity: 0.45;
	cursor: not-allowed;
}

.woodancer-vc__add-to-cart[disabled],
.woodancer-vc__add-to-cart[aria-disabled="true"] {
	cursor: not-allowed;
}
