/**
 * GiantWP Discount Rules - Cart Badge Styles
 * Universal styles for Free and Save badges in all cart types
 */

/* FIRST: Hide ALL badges everywhere by default */
.gwpdr-free-badge,
.gwpdr-save-badge,
.wc-item-meta .gwpdr-free-badge,
.wc-block-components-product-metadata .gwpdr-free-badge,
dd .gwpdr-free-badge,
p .gwpdr-free-badge {
    display: none !important;
    visibility: hidden !important;
}

/* SECOND: Apply badge styling (won't show unless we override display below) */
.gwpdr-free-badge,
.gwpdr-save-badge {
    background: #000 !important;
    color: #fff !important;
    padding: 2px 8px !important;
    border-radius: 3px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-left: 5px !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

/* THIRD: ONLY show badges in total/subtotal columns - Traditional WooCommerce Cart */
td.product-subtotal .gwpdr-free-badge,
td.product-subtotal .gwpdr-save-badge,
.product-subtotal .gwpdr-free-badge,
.product-subtotal .gwpdr-save-badge {
    display: inline-block !important;
    visibility: visible !important;
}

/* FOURTH: ONLY show badges in total columns - WooCommerce Blocks Cart */
.wc-block-cart-item__total .gwpdr-free-badge,
.wc-block-cart-item__total .gwpdr-save-badge {
    display: inline-block !important;
    visibility: visible !important;
}

/* Mini cart support */
.woocommerce-mini-cart .gwpdr-free-badge,
.woocommerce-mini-cart .gwpdr-save-badge {
    display: inline-block !important;
    visibility: visible !important;
}

/* JavaScript-added badges in total column */
.gwpdr-total-badge {
    display: inline-block !important;
    visibility: visible !important;
}
