/**
 * Dino Discounts — Block Checkout / Cart Styles
 *
 * Controls how auto-applied Dino Discounts virtual coupons appear in the
 * WooCommerce block-based cart and checkout.
 *
 * The JS companion (enqueued inline by Frontend.php) uses a MutationObserver
 * to classify each dino_dd_ chip as one of two modes based on the per-rule
 * `block_cart_chip` setting:
 *
 *   is-dino-virtual       — mode: hidden   — whole chip hidden (default)
 *   is-dino-virtual-named — mode: show_name — chip visible, label replaced
 *                           with cart_label, remove button always hidden
 */

/* ── mode: hidden — entire chip invisible ─────────────────────────────── */
.wc-block-components-chip.is-dino-virtual {
	display: none !important;
}

/* ── mode: show_name — chip visible, only remove button hidden ────────── */
.wc-block-components-chip.is-dino-virtual-named .wc-block-components-chip__remove-icon {
	display: none !important;
}

/* Also target the full remove button wrapper in case of theme overrides. */
.wc-block-components-chip.is-dino-virtual-named button.wc-block-components-chip__remove {
	display: none !important;
}
