/**
 * GeoPrice Pro — cache-prices loading state.
 *
 * Tiny visual cue so a placeholder that's about to be swapped doesn't
 * flash awkwardly. Pure presentational; the loader works without it.
 */

.wcgp-price-placeholder {
	transition: opacity 0.15s ease;
}

.wcgp-price-placeholder:not(.wcgp-price-loaded) {
	opacity: 0.7;
}

.wcgp-price-placeholder.wcgp-price-loaded {
	opacity: 1;
}
