/* GCH APF Field Inventory — sold-out option styling */

.gch-apfi-soldout {
	opacity: 0.35;
	pointer-events: none;
	position: relative;
	text-decoration: line-through;
}

/* APF swatch wrappers don't always strike-through cleanly; the diagonal slash reads better. */
.gch-apfi-soldout .wapf-swatch::after,
.gch-apfi-soldout .wapf-image-swatch::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top right,
		transparent calc(50% - 1px),
		#950000 calc(50% - 1px),
		#950000 calc(50% + 1px),
		transparent calc(50% + 1px)
	);
	pointer-events: none;
}
