.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px 10px 12px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Mobile — icon only, no label */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-label {
    display: none;
  }
}
