/**
 * LaShh Geo Restriction (front-end)
 *
 * Notice banner + disabled state for visitors outside Finland on the
 * block-based Cart and Checkout. Disabling is driven by the `lashh-geo-blocked`
 * class on <body>, which survives the checkout block's React re-renders.
 */

.lashh-geo-notice {
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	border: 1px solid #d6b656;
	border-left-width: 4px;
	border-radius: 4px;
	background: #fbf6e6;
	color: #5c4a12;
	font-size: 1rem;
	line-height: 1.5;
}

/* Grey out and disable shipping / pickup selection. */
body.lashh-geo-blocked .wc-block-checkout__shipping-method,
body.lashh-geo-blocked .wc-block-components-shipping-rates-control,
body.lashh-geo-blocked .wc-block-checkout__pickup-options {
	opacity: 0.5;
	pointer-events: none;
}

/* Disable order / checkout / express-payment buttons. */
body.lashh-geo-blocked .wc-block-components-checkout-place-order-button,
body.lashh-geo-blocked .wc-block-cart__submit-button,
body.lashh-geo-blocked .wc-block-components-express-payment {
	opacity: 0.5;
	pointer-events: none;
	cursor: not-allowed;
}
