/**
 * Dino Discounts — Block Checkout / Cart Styles
 *
 * Hides the remove (×) button on auto-applied Dino Discounts virtual coupons
 * in WooCommerce block-based cart and checkout.
 *
 * Block checkout renders each coupon as a "chip" component. The JS companion
 * (enqueued inline by Frontend.php) adds the `is-dino-virtual` class to chips
 * whose coupon code starts with `dino_dd_`. This CSS then hides the remove icon.
 */
.wc-block-components-chip.is-dino-virtual .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 button.wc-block-components-chip__remove {
	display: none !important;
}
