/* ==========================================================================
   EVOX — Botón flotante de WhatsApp
   Verde oficial de la marca WhatsApp (#25D366): usar el verde EVOX aquí haría
   que el botón no se reconozca de inmediato, que es justamente su ventaja.
   ========================================================================== */

.evox-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9990; /* por debajo del offcanvas del carrito, encima del resto */
	display: inline-flex;
	align-items: center;
	gap: 0;
	height: 56px;
	padding: 0 16px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 6px 20px -6px rgba(10, 22, 40, 0.45);
	transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.25s ease;
	-webkit-tap-highlight-color: transparent;
}
.evox-wa:hover,
.evox-wa:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 26px -8px rgba(10, 22, 40, 0.55);
}

.evox-wa__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	background: currentColor;
	-webkit-mask: var(--evox-ico-whatsapp) center / contain no-repeat;
	mask: var(--evox-ico-whatsapp) center / contain no-repeat;
}

/* La etiqueta se despliega al pasar el mouse: en reposo el botón es un
   círculo limpio y no compite con el contenido. */
.evox-wa__label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	font-weight: 700;
	opacity: 0;
	transition: max-width 0.28s ease, opacity 0.2s ease;
}
.evox-wa:hover .evox-wa__label,
.evox-wa:focus-visible .evox-wa__label {
	max-width: 180px;
	opacity: 1;
	margin-left: 10px;
}

/* En táctil no hay hover: el botón queda siempre como círculo. Además se
   sube un poco para no chocar con las barras del navegador móvil. */
@media (hover: none) {
	.evox-wa__label {
		display: none;
	}
}
@media (max-width: 600px) {
	.evox-wa {
		right: 16px;
		bottom: 16px;
		height: 52px;
		padding: 0 13px;
	}
	.evox-wa__icon {
		width: 24px;
		height: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.evox-wa,
	.evox-wa__label {
		transition: none;
	}
}
