/**
 * Toast notification styles for WB Listora.
 *
 * @package WBListora
 */

.listora-toast-container {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 100001;
	display: flex;
	flex-direction: column-reverse;
	gap: 8px;
}

.listora-toast {
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--listora-fg-inverse, #ffffff);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s, transform 0.3s;
	max-width: 360px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.listora-toast--success {
	background: var(--listora-success, #2ea44f);
}

.listora-toast--error {
	background: var(--listora-danger, #d63638);
}

.listora-toast--info {
	background: var(--listora-primary, #2271b1);
}

.listora-toast--warning {
	background: var(--listora-warning, #d97706);
}
