/* Product-level out-of-stock badge */
.stock-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 999px;
	background: #c0392b;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stock-badge--out {
	background: #c0392b;
}

/* Variation-level indicator */
.is-out-of-stock {
	color: #c0392b !important;
	opacity: 0.8;
}

/* Swatch-style elements */
.is-out-of-stock .swatch-label,
.is-out-of-stock .wcva_attr_text,
.is-out-of-stock .button-variable-item {
	color: #c0392b !important;
	opacity: 0.8;
}

/* Fallback for select options (where supported) */
select option.is-out-of-stock {
	color: #c0392b !important;
}

/* Color swatch diagonal slash for OOS variations */
.swatch-out-of-stock {
	position: relative;
	opacity: 0.6;
	cursor: not-allowed !important;
}

.swatch-out-of-stock::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -10%;
	width: 120%;
	height: 3px;
	background: #c40000;
	transform: rotate(-45deg);
	z-index: 5;
	pointer-events: none;
}
