/* ==========================================================================
   AURA LUXIFY — Floating WhatsApp widget
   Sitewide, custom-built (no plugin). Placed bottom-left to avoid any
   collision with the theme's own bottom-right scroll-to-top button.
   ========================================================================== */

.al-whatsapp-widget{
  position:fixed;
  bottom:90px;
  right:20px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#2C3A32;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 24px -6px rgba(44,58,50,.45);
  z-index:9999;
  text-decoration:none;
  transition:transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.al-whatsapp-widget:hover{
  background:#3A4B41;
  transform:translateY(-3px);
  box-shadow:0 12px 30px -6px rgba(44,58,50,.55);
}
.al-whatsapp-widget svg{
  width:28px;
  height:28px;
  fill:#ffffff;
  display:block;
}

@media (max-width:640px){
  .al-whatsapp-widget{
    width:50px;
    height:50px;
    bottom:82px;
    right:16px;
  }
  .al-whatsapp-widget svg{
    width:25px;
    height:25px;
  }
}
