.wcln-toast {
	position: fixed;
	z-index: 99999;
	display: flex !important;
	align-items: center;
	gap: 12px;
	max-width: 360px;
	padding: 14px;
	border-radius: 18px;
	background: #fff;
	color: #5b5b77;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	opacity: 0;
	animation: none !important;
	transition: opacity 0.35s ease, transform 0.35s ease, top 0.35s ease, bottom 0.35s ease;
}

/* Fallback default si no tiene clases específicas */
.wcln-toast:not([class*="pos-desk-"]):not([class*="pos-mob-"]) {
	left: 20px;
	bottom: 20px;
	transform: translateY(12px);
}

.wcln-visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Posiciones en Escritorio (Desktop: pantallas > 480px) */
@media (min-width: 481px) {
	.wcln-toast.pos-desk-top-left {
		top: 24px;
		left: 24px;
		right: auto;
		bottom: auto;
		transform: translateY(-12px);
	}

	.wcln-toast.pos-desk-top-right {
		top: 24px;
		right: 24px;
		left: auto;
		bottom: auto;
		transform: translateY(-12px);
	}

	.wcln-toast.pos-desk-bottom-left {
		bottom: 24px;
		left: 24px;
		top: auto;
		right: auto;
		transform: translateY(12px);
	}

	.wcln-toast.pos-desk-bottom-right {
		bottom: 24px;
		right: 24px;
		top: auto;
		left: auto;
		transform: translateY(12px);
	}

	.wcln-toast.pos-desk-top-left.wcln-visible,
	.wcln-toast.pos-desk-top-right.wcln-visible,
	.wcln-toast.pos-desk-bottom-left.wcln-visible,
	.wcln-toast.pos-desk-bottom-right.wcln-visible {
		transform: translateY(0);
	}
}

.wcln-thumb {
	display: block;
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	border-radius: 12px;
	object-fit: cover;
	background: #f1f5f9;
}

.wcln-body {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.wcln-title {
	margin: 2px 0 4px;
	color: #18a0c6;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.wcln-meta {
	margin-top: 2px;
	font-size: 12px;
	opacity: 0.85;
}

.wcln-close {
	position: absolute;
	top: 6px;
	right: 8px;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	opacity: 0.55;
}

@media (max-width: 480px) {
	.wcln-toast {
		left: 12px !important;
		right: 12px !important;
		max-width: calc(100vw - 24px) !important;
	}

	.wcln-toast.pos-mob-bottom {
		bottom: 20px;
		top: auto !important;
		transform: translateY(12px);
	}

	.wcln-toast.pos-mob-top {
		top: 20px;
		bottom: auto !important;
		transform: translateY(-12px);
	}

	.wcln-toast.pos-mob-bottom.wcln-visible,
	.wcln-toast.pos-mob-top.wcln-visible {
		transform: translateY(0) !important;
	}

	body.geekcel-bar-is-visible .wcln-toast.pos-mob-bottom {
		bottom: 105px !important;
	}
}
