/**
 * Zeeya Geo Currency for Flutterwave — Frontend Styles
 *
 * Minimal, non-opinionated styles.
 * All price display is handled by WooCommerce's own HTML;
 * these rules only affect the currency badge helper class.
 */

/* Currency badge — optional use: <span class="zeeya-currency-badge">USD</span> */
.zeeya-currency-badge {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    background-color: #f0f4ff;
    color: #3a56e4;
    vertical-align: middle;
    margin-left: 4px;
}

/* Hide flash of un-converted prices in themes that rely on JS re-rendering.
   Not needed for this plugin (server-side), but provided for compatibility. */
.zeeya-price-loading {
    visibility: hidden;
}

.zeeya-price-ready {
    visibility: visible;
}
