/* WhatsApp widget */
.wa-widget{
  margin-top: 10px;
  display: inline-flex;
  align-items: flex-end; /* keep send button at bottom when textarea grows */
  gap: 10px;
}

.wa-input{
  width: min(520px, 70vw);
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 22px;
  background: #fff;
  color: #111;
  border: 1px solid rgba(255,255,255,0.25);
  outline: none;

  resize: none;
  overflow-y: hidden; /* JS toggles to auto after 6 lines */
  line-height: 1.2;
  font: inherit;
}

.wa-input::placeholder{
  color: rgb(87,88,90);
  opacity: 1;
}

.wa-send{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.wa-icon{
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain;
  display: block;
}
