.ldr-code-promo-toasts {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 360px;
	pointer-events: none;
}

.ldr-code-promo-toast {
	pointer-events: auto;
	cursor: pointer;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	background: #333;
	box-shadow: 0 6px 24px rgba( 0, 0, 0, 0.18 );
	opacity: 0;
	transform: translateY( 16px );
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ldr-code-promo-toast.is-visible {
	opacity: 1;
	transform: translateY( 0 );
}

.ldr-code-promo-toast--success {
	background: #1e8e3e;
}

.ldr-code-promo-toast--error {
	background: #c0392b;
}

.ldr-code-promo-toast--info {
	background: #2c3e50;
}

.ldr-code-promo-applied,
.ldr-code-promo-applied:hover {
	opacity: 0.6;
	pointer-events: none;
	cursor: default;
}

@media ( max-width: 480px ) {
	.ldr-code-promo-toasts {
		right: 12px;
		left: 12px;
		bottom: 12px;
		max-width: none;
	}
}
