.wa-float {
  position: fixed;
  right: 20px;
  bottom: 78px;
  z-index: 99990;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}

.wa-float-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 100px;
  background: #25d366;
  color: #fff !important;
  font-family: Manrope, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.wa-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #25d366;
  color: #fff !important;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: background 0.2s ease;
}

.wa-float:hover .wa-float-icon,
.wa-float:focus-visible .wa-float-icon {
  background: #1ebe57;
  color: #fff !important;
}

@media (max-width: 575.98px) {
  .wa-float {
    right: 12px;
    bottom: 12px;
  }

  .wa-float-label {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .wa-float-icon {
    width: 54px;
    height: 54px;
    font-size: 36px;
    border-radius: 100%;
  }
}
