/* Global floating WhatsApp button (bottom-left, above the CTA bar) */
.wa-float {
  position: fixed;
  left: 16px;
  bottom: 70px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  background: #25D366;
  color: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.42);
  text-decoration: none;
  font-family: var(--font-sans, "DM Sans", system-ui, sans-serif);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe5b;
  transform: translateY(-1px);
  color: #fff;
}
.wa-float-icon {
  display: inline-flex;
  flex: none;
}
.wa-float-label {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .wa-float {
    bottom: 72px;
    padding: 11px;
  }
  .wa-float-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
}
