/**
 * Geo Content Tags Styles (Bulletproof Version)
 * No hiding needed - defaults always show, then upgrade
 */

/* Smooth transition when upgrading from default to country-specific */
.geo-tag {
    transition: opacity 0.2s ease-in;
}

/* Optional: subtle visual indicator during upgrade (very brief) */
.geo-tag[data-geo-country="default"] {
    /* These are showing defaults, might upgrade */
    opacity: 0.95;
}

.geo-tag[data-geo-country]:not([data-geo-country="default"]) {
    /* These are showing country-specific terms */
    opacity: 1;
}

/* Ensure content is always visible and readable */
.no-js .geo-tag {
    opacity: 1;
}
