/* Hide WooCommerce's tax suffix (<small class="tax_label">) inside the header mini cart.
 *
 * In B2B mode the cart subtotal renders in 'excl' display (see Tax_Display), which makes
 * WooCommerce append an "ex. tax" label next to the cart icon and in the mini-cart subtotal.
 * This is cosmetic-only: scoped to the header/offcanvas mini cart so the full cart page and
 * checkout keep their tax labels, and B2C is unaffected (it has no tax_label there). */
.ct-header-cart .tax_label,
#woo-cart-panel .tax_label {
	display: none;
}
