/* ================================
   WHATSAPP FLOATING BUTTON
   (GLOBAL SHARED STYLESHEET)
   ================================ */

.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  text-align: center;
}

.whatsapp-float a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37,211,102,0.6);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float img{
  width: 32px;
  height: 32px;
}

.whatsapp-label{
  margin-top: 6px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
}

/* Pulse / Glow Animation */
@keyframes whatsapp-pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70%{
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}
