/* whatsapp-float.css — floating WhatsApp contact button for static marketing
   pages. Relies on the page's own --green token; falls back to the WhatsApp
   brand green when a page doesn't define one. Markup is injected by postbuild
   (see scripts/postbuild.mjs), same mechanism as nav-mobile.css. */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green, #25d366);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 600px) {
  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}
