/**
 * ============================================================================
 * GORILLA NUTRITION SINALOA - WhatsApp Float CSS
 * ============================================================================
 * Botón flotante fijo de WhatsApp, siempre visible en esquina inferior derecha.
 * @package Gorilla_Nutrition
 * @since   1.0.0
 */

.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 32px;
  z-index: var(--z-float);
  width: 62px;
  height: 62px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition-base);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}
