#fp-sp-toast-host {
	position: fixed;
	top: 54px;
	right: 24px;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 8px;
	pointer-events: none;
}

.fp-sp-toast {
	background: #111;
	color: #fff;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.35;
	max-width: 320px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	pointer-events: auto;
}

.fp-sp-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 640px) {
	#fp-sp-toast-host {
		top: 46px;
		right: 16px;
		left: 16px;
	}
	.fp-sp-toast {
		max-width: none;
	}
}
