/* ============================================================
   BASSYAM VOYAGE EXPRESS — Bouton WhatsApp flottant
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-toast);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: pulse-gold 2.5s ease-in-out infinite;
  transition: transform var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .whatsapp-float { bottom: 80px; width: 52px; height: 52px; }
}