/* SHOUT Product Inquiry — WhatsApp channel (Variant B)
   Restrained styling; inherits the site's fonts (Manrope / Cormorant). */

.spi-wa { display: inline-block; }

.spi-wa__open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.spi-wa__open:hover { background: currentColor; }
.spi-wa__open:hover span,
.spi-wa__open:hover .spi-wa__icon { color: #fff; mix-blend-mode: difference; }
.spi-wa__icon { flex: 0 0 auto; }

/* Overlay + modal */
.spi-wa__overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 12, .55);
}
.spi-wa__overlay[hidden] { display: none; }
body.spi-wa-lock { overflow: hidden; }

.spi-wa__modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  font-family: inherit;
}

.spi-wa__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: #8a7c6c;
  cursor: pointer;
}
.spi-wa__close:hover { color: #2a2118; }

.spi-wa__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9a8d7c;
}
.spi-wa__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
}
.spi-wa__intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #5c4a38;
}
.spi-wa__product {
  margin: 0 0 18px;
  padding: 10px 12px;
  background: #f6f2ec;
  border-radius: 3px;
  font-size: 14px;
}

.spi-wa__field { margin-bottom: 14px; }
.spi-wa__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #3a2f22;
}
.spi-wa__field input,
.spi-wa__field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid #d9d0c4;
  border-radius: 2px;
  background: #fff;
  color: #2a2118;
}
.spi-wa__field input:focus,
.spi-wa__field textarea:focus {
  outline: none;
  border-color: #6f5a42;
}
.spi-wa__field textarea { resize: vertical; }

.spi-wa__error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 3px;
  background: #fcecec;
  color: #9a2b2b;
  font-size: 13px;
}
.spi-wa__error[hidden] { display: none; }

.spi-wa__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  border: 0;
  border-radius: 2px;
  background: #25d366;
  color: #0b2e16;
  cursor: pointer;
  transition: filter .2s ease;
}
.spi-wa__submit:hover { filter: brightness(.95); }
.spi-wa__submit:disabled { opacity: .6; cursor: default; }
.spi-wa__submit.is-loading span::after {
  content: '…';
}

.spi-wa__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #9a8d7c;
  text-align: center;
}
