/* Floating WhatsApp CTA — sitewide */
#hb-wa-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Poppins, sans-serif;
}

#hb-wa-float .hb-wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#hb-wa-float:hover .hb-wa-btn {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.48);
}

#hb-wa-float .hb-wa-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

#hb-wa-float .hb-wa-label {
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

@media (max-width: 640px) {
  #hb-wa-float {
    right: 14px;
    bottom: 16px;
  }

  #hb-wa-float .hb-wa-label {
    display: none;
  }

  #hb-wa-float .hb-wa-btn {
    width: 52px;
    height: 52px;
  }
}
