.bsm-wc-toasts {
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 9999;
	max-width: 360px;
}

@media (max-width: 768px) {
	.bsm-wc-toasts {
		left: 50%;
		right: auto;
		bottom: 16px;
		transform: translateX(-50%);
		width: calc(100% - 32px);
		max-width: 420px;
	}
}

.bsm-wc-toast {
	position: relative;
	background: #ffffff;
	color: #111827;
	padding: 14px 44px 14px 14px;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
	border-left: 4px solid #0ea5e9;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.bsm-wc-toast__text {
	font-size: 15px;
	line-height: 1.4;
}

.bsm-wc-toast__text a {
	color: #0ea5e9;
	text-decoration: underline;
}

.bsm-wc-toast__text a:hover,
.bsm-wc-toast__text a:focus {
	color: #0284c7;
}

.bsm-wc-toast__close {
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	background: transparent;
	color: #475569;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
	padding: 4px;
}

.bsm-wc-toast__close:focus-visible {
	outline: 2px solid #0ea5e9;
	outline-offset: 4px;
}

.bsm-wc-toast--success {
	border-color: #16a34a;
}

.bsm-wc-toast--error {
	border-color: #dc2626;
}

.bsm-wc-toast--notice,
.bsm-wc-toast--info {
	border-color: #0ea5e9;
}
