/* WhatsApp Floating Button CSS */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 10px;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #909290;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.whatsapp-float:hover {
  background: #128c7e;
}
.whatsapp-float img {
  width: 36px;
  height: 36px;
}
