/* ==========================================================================
   WhatsApp Button / Float Styles
   Loaded when #viterra-whatsapp-placeholder is used.
   ========================================================================== */

#viterra-whatsapp-placeholder {
  position: relative;
  z-index: 1090;
}

/* Optional: style a fixed WhatsApp CTA if injected by JS */
.viterra-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1090;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.viterra-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.viterra-whatsapp-float:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .viterra-whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
