.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px 13px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.48);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-float-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .wa-float-label {
    display: none;
  }
}

/* Avoid overlapping the cookie banner while it's still visible (home page only) */
.cookie-banner ~ .wa-float {
  bottom: 230px;
}

@media (min-width: 720px) {
  .cookie-banner ~ .wa-float {
    bottom: 20px;
  }
}
