/* ======================
   whatsapp.css – WhatsApp Floating Button
   Geladen auf: allen Seiten
====================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  flex-shrink: 0;
}

/* Admin-Bar Offset */
.admin-bar .whatsapp-float {
  bottom: 56px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-text {
    display: none;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .whatsapp-float {
    bottom: 66px;
  }
}
