/* Paela Product Enhancer - prueba social (popup discreto, abajo-izquierda) */
.paela-sp {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9998;
	max-width: 330px;
	background: #fff;
	border: 1px solid #ece9f1;
	border-radius: 14px;
	box-shadow: 0 12px 34px rgba(20, 20, 40, .16);
	padding: 10px 32px 10px 10px;
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}

.paela-sp.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.paela-sp__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #1f2430;
}

.paela-sp__img {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background-color: #f3f0f7;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.paela-sp__text {
	font-size: 12.5px;
	line-height: 1.35;
	color: #1f2430;
}

.paela-sp__text strong {
	font-weight: 700;
}

.paela-sp__close {
	position: absolute;
	top: 6px;
	right: 8px;
	border: 0;
	background: none;
	font-size: 18px;
	line-height: 1;
	color: #9aa0ab;
	cursor: pointer;
	padding: 2px 4px;
}

.paela-sp__close:hover {
	color: #1f2430;
}

@media (max-width: 480px) {
	.paela-sp {
		left: 10px;
		right: 88px; /* espacio para el botón flotante del carrito (abajo-derecha) */
		bottom: 10px;
		max-width: none;
	}
}
