/**
 * Tax Label Styles (HT/TTC next to prices)
 *
 * @copyright Copyright (c) 2024 Wimakeit
 * @license   OSL-3.0
 */

/* Tax label next to prices - base styles */
.wmi-tax-label {
    font-weight: normal;
    color: var(--wmi-tax-label-color, #666);
    margin-left: 0.25em;
    text-transform: uppercase;
    vertical-align: baseline;
    letter-spacing: 0.02em;
    /* Fallback size until JS calculates */
    font-size: 0.6em;
}

/* Label before price */
.wmi-tax-label--before {
    margin-left: 0;
    margin-right: 0.25em;
}

/* Ensure proper display in price boxes */
.price-box .wmi-tax-label,
.price-wrapper .wmi-tax-label {
    display: inline;
}

/* Slightly muted in old/special prices */
.old-price .wmi-tax-label,
.special-price .wmi-tax-label {
    opacity: 0.8;
}

/* Cart / Checkout adjustments */
.cart-price .wmi-tax-label,
.checkout-cart-index .wmi-tax-label {
    font-size: 0.65em;
}

/* Minicart */
.minicart-wrapper .wmi-tax-label {
    font-size: 0.6em;
}
