/* =========================================
   ✅ WhatsApp Floating Button (Optimized)
   Premium + Lighthouse Safe
========================================= */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;

  width: 60px;
  height: 60px;

  background: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  z-index: 99999;

  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ✅ Icon */
.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ✅ Hover only (No infinite animation) */
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}
