/*
 * Dims non-color swatch options while WooCommerce is resolving a
 * temporarily-selected combination in the background (see
 * instant-color-gallery.js -> applyVariation). This mostly matters for
 * AJAX-loaded-variation products, where that resolution is a real network
 * round trip and not instant.
 *
 * The selector below assumes CartFlows renders each attribute's swatches in
 * a wrapper carrying a `data-attribute` (or similar) value - verify against
 * the actual markup and adjust if needed.
 */
.instant-color-gallery-resolving [data-attribute]:not([data-attribute="attribute_pa_color"]) {
	opacity: 0.6;
	pointer-events: none;
	transition: opacity 0.15s ease;
}
