/* Single product — WCIGR toast when add-to-cart fails (AJAX / notices). */
.wcigr-sp-cart-toast {
	position: fixed;
	left: 50%;
	bottom: max(24px, env(safe-area-inset-bottom, 0px));
	transform: translateX(-50%) translateY(140%);
	z-index: 2147483000;
	background: rgba(15, 23, 42, 0.94);
	color: #fff;
	padding: 12px 18px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	box-shadow: 0 14px 44px rgba(2, 6, 23, 0.35);
	pointer-events: none;
	opacity: 0;
	transition: transform 0.24s ease, opacity 0.24s ease;
	max-width: min(92vw, 380px);
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.wcigr-sp-cart-toast.is-show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}
