/**
 * Checkout minimum notice on the cart and mini-cart.
 *
 * Structural only, and matched to the checkout warning banner
 * (.az-checkout__min-warning) so both read as the same message. Override the
 * --az-warning-* custom properties to restyle, or drop this file entirely:
 * add_filter( 'az_checkout_enqueue_styles', '__return_false' );
 */

.az-cart-min-notice {
	margin: 0 0 12px;
	padding: 10px 12px;
	border: 1px solid var(--az-warning-border, #f0b429);
	border-radius: 4px;
	background: var(--az-warning-bg, #fff8e1);
	font-size: 0.9em;
	line-height: 1.4;
	text-align: left;
}

.az-cart-min-notice[hidden] {
	display: none;
}

/* Checkout buttons while the cart is below the minimum. Links cannot be
   disabled, so they are dimmed and their clicks are cancelled in JS. */
.az-cart-min-blocked {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}
