/* ProFitness WhatsApp Button */
.pfw-wa-button{
  position:fixed;
  bottom:30px;
  right:30px;
  z-index:9999;
  text-decoration:none !important;
}
.pfw-wa-widget{
  width:60px;height:60px;
  background:#25D366; /* WhatsApp green */
  border-radius:50%;
  box-shadow:2px 2px 6px rgba(0,0,0,.4);
  display:flex;align-items:center;justify-content:center;
  transition:transform .25s ease;
}
.pfw-wa-widget svg{fill:#fff;width:48px;height:48px;display:block}
.pfw-wa-widget:hover{transform:translateY(-2px)}
@media(max-width:479px){
  .pfw-wa-button{bottom:15px;right:15px}
}
/* optional bounce animation */
@keyframes pfw-bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(-1px)}}
.pfw-bounce{animation:pfw-bounce 3s ease-in-out infinite}
