#wa-float-container {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99999;
}

.wa-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366; /* WhatsApp green */
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.wa-float-btn:hover,
.wa-float-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  background: #1DA851;
  outline: none;
}

.wa-icon {
  width: 22px;
  height: 22px;
  /* flex: 0 0 22px; */
  fill: currentColor;
}

.wa-label {
  font-size: 14px;
}

/* Riduci su schermi molto piccoli */
@media (max-width: 480px) {
  .wa-float-btn {
    padding: 10px 12px;
  }
  .wa-label {
    font-size: 13px;
  }
}

/* Mostra solo l'icona, senza testo */
.wa-label { 
  display: none !important; 
}

/* Trasforma il bottone in tondo */
#wa-float-container { left: 16px; bottom: 60px; }
.wa-float-btn {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
#wa-float-container .wa-icon {
  height: 45px !important;
  width: 45px !important;
}

