
/* Botón flotante */
.wapp-float {
  position: fixed;
  bottom: 70px;
  right: 16px;
  background: #25d366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 999;
}
.wapp-float img {
  width: 70%;
}

/* Popup */
.wapp-popup {
  position: fixed;
  bottom: 120px;
  right: 18px;
  width: 260px;
  background: #e5ddd5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: none;
  z-index: 999;
  overflow: hidden;
  font-family: var(--default-font); /* ← YA USÁS LA FUENTE DEL SITIO */
}

/* Header del popup */
.popup-header {
  background: #96ba3e;
  padding: 10px 12px;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--heading-font); /* ↑ si querés otra, podés cambiarlo */
}
.popup-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

/* Mensaje inicial */
.popup-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Caja de input */
.popup-input-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  gap: 8px;
}

.popup-input-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 14px;
  font-family: var(--default-font);
}

.popup-input-box button {
  background: #96ba3e;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--default-font);
}
