.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: wa-bounce 1.2s ease infinite;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}