/* Tier pricing shown as the customer's standing price, not as a sale.
 *
 * The Furnique theme colours discounted prices #BB2227 to signal a sale. Tier
 * pricing is a standing rate, not a promotion, so it renders in the normal
 * body text colour instead. Scoped to .sho-tier-price, which only ever appears
 * on catalog surfaces — cart and checkout keep the theme's sale styling.
 *
 * !important is needed to beat the theme's own `ins` colour rules.
 */

.sho-tier-price,
.sho-tier-price .woocommerce-Price-amount,
.sho-tier-price .woocommerce-Price-currencySymbol {
    color: var(--wp--preset--color--contrast, #141414) !important;
    text-decoration: none;
}
