/* GROmagic Cart & Checkout Upsells — short message shown when an offer product
   is removed because the cart no longer qualifies. */

.gmup-toasts {
	position: fixed;
	top: 20px;
	left: 50%;
	z-index: 100001;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: calc(100% - 32px);
	max-width: 420px;
	transform: translateX(-50%);
	pointer-events: none;
}

.gmup-toast {
	box-sizing: border-box;
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	background: #1f2430;
	color: #fff;
	font-size: 14px;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.gmup-toast.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.gmup-toast {
		transition: none;
	}
}

@media (max-width: 480px) {
	.gmup-toasts {
		top: 12px;
	}

	.gmup-toast {
		font-size: 13px;
		padding: 11px 14px;
	}
}

/* Shown in place of the checkout button while the cart is blocked. */
.gmup-blocked {
	margin: 0;
	padding: 12px 14px;
	border-radius: 8px;
	background: #fff4f4;
	border: 1px solid #f0b4b4;
	color: #93262a;
	font-size: 14px;
	line-height: 1.45;
}

.gmup-disabled {
	opacity: 0.55;
	cursor: not-allowed;
}
