/**
 * Supreme BC — mixed-cart popup and cart notice.
 * Overlay pattern follows the existing .supreme-bc-address-modal styling.
 */

.supreme-bc-mixed-cart-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999999;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.supreme-bc-mixed-cart-modal-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	max-width: 480px;
	width: 100%;
	padding: 28px;
	text-align: center;
}

.supreme-bc-mixed-cart-modal-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.3;
	color: #1f2933;
}

.supreme-bc-mixed-cart-modal-message {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.5;
	color: #3e4c59;
}

.supreme-bc-mixed-cart-modal-actions {
	display: flex;
	justify-content: center;
}

.supreme-bc-mixed-cart-modal-close {
	min-width: 120px;
	cursor: pointer;
}

/* Inline notice shown on the cart and checkout pages when the cart is mixed */
.supreme-bc-mixed-cart-notice {
	background: #fdf3f4;
	border: 1px solid #e8b4b8;
	border-radius: 4px;
	color: #a94442;
	padding: 12px 16px;
	margin: 12px 0;
}

.supreme-bc-mixed-cart-notice p {
	margin: 0;
}
