/* =============================================
   Custom_TaxHide - Hide Tax Display
   Supports both Hyvä and Luma/Blank themes
   Primary hiding is via PHP plugin (afterToHtml).
   CSS below is a safety net only.
   ============================================= */

/* === Universal Selectors === */
.totals-tax {
    display: none !important;
}

/* Target table rows with data-th="Tax" attribute */
tr[data-th="Tax"],
tr[data-th="tax"] {
    display: none !important;
}

/* Target elements with specific tax-related classes */
[class*="totals-tax"],
[class*="tax-amount"] {
    display: none !important;
}

/* === Luma/Blank Theme Selectors (backwards compatibility) === */
.opc-block-summary .table-totals tr.totals-tax,
.cart-totals .totals-tax,
.checkout-payment-method .totals-tax,
.order-details-items .totals-tax {
    display: none !important;
}

#shopping-cart-totals-table .totals-tax {
    display: none !important;
}

.order-details .totals-tax {
    display: none !important;
}

