/**
 * El botón «Comprar por WhatsApp» de la ficha.
 *
 * Copia el aspecto que tenía el del plugin OneClick para que nadie note el
 * cambio: verde de la marca, ancho completo, esquinas redondeadas, icono a
 * la izquierda.
 */

.fs-wa-boton {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	width: 100%;
	box-sizing: border-box;
	margin: .9em 0 0;
	padding: 1em 1.4em;
	border: 0;
	border-radius: 8px;
	background: #4CAF50;
	color: #fff !important;
	font-size: 1.05em;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .18s ease, transform .08s ease;
}

.fs-wa-boton:hover,
.fs-wa-boton:focus {
	background: #429a46;
	color: #fff !important;
}

.fs-wa-boton:active {
	transform: translateY(1px);
}

/* El icono, dibujado en SVG: ni una petición más. */
.fs-wa-boton__icono {
	flex: 0 0 auto;
	width: 1.25em;
	height: 1.25em;
	fill: currentColor;
}

/* En móvil el pulgar necesita 44px de alto como mínimo. El botón de
   «Añadir al carrito» del tema se queda en 32,6px; éste no repite ese
   error. */
@media (max-width: 767px) {
	.fs-wa-boton {
		min-height: 48px;
		font-size: 1em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fs-wa-boton { transition: none; }
}
