/**
 * Banner shown above the cart / checkout.
 * Kept neutral so it inherits the active theme rather than fighting it.
 */

.bogo-sc-messages {
	margin: 0 0 1.25em;
	display: grid;
	gap: 0.5em;
}

.bogo-sc-msg {
	padding: 0.85em 1.1em;
	border-radius: 6px;
	border-left: 4px solid currentColor;
	font-size: 0.95em;
	line-height: 1.45;
}

/* Rule reached. */
.bogo-sc-success {
	color: #0f6b46;
	background: #e8f6ef;
}

/* Rule within reach: tells the customer exactly what is missing. */
.bogo-sc-info {
	color: #8a5a00;
	background: #fdf3e0;
}

@media (prefers-color-scheme: dark) {
	.bogo-sc-success {
		color: #7fd6ab;
		background: rgba(15, 107, 70, 0.18);
	}
	.bogo-sc-info {
		color: #f0c070;
		background: rgba(138, 90, 0, 0.18);
	}
}
