/* Braider Locator widget — self-contained, responsive application form.
   Visually aligned with the feedback widget. */
.braider-locator {
  width: 100%;
}

.braider-locator__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.braider-locator__row {
  display: flex;
  gap: 16px;
}

.braider-locator__row > .braider-locator__field {
  flex: 1 1 0;
  min-width: 0;
}

.braider-locator__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.braider-locator__label {
  font-weight: 600;
  font-size: 0.95rem;
}

.braider-locator__req {
  color: #d6336c;
  font-weight: 700;
}

.braider-locator__field input[type='text'],
.braider-locator__field input[type='email'],
.braider-locator__field input[type='tel'],
.braider-locator__field input[type='url'],
.braider-locator__field select,
.braider-locator__field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d0d0d8;
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: #131313;
}

.braider-locator__field textarea {
  resize: vertical;
  min-height: 96px;
}

.braider-locator__field input:focus,
.braider-locator__field select:focus,
.braider-locator__field textarea:focus {
  outline: none;
  border-color: #911a7a;
  box-shadow: 0 0 0 3px rgba(145, 26, 122, 0.15);
}

.braider-locator__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.braider-locator__consent input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.braider-locator__button {
  align-self: flex-start;
  padding: 12px 28px;
  border: 0;
  border-radius: var(--btn-radius, 8px);
  background: #911a7a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.braider-locator__button:hover {
  background: #7a1567;
}

.braider-locator__button:disabled {
  opacity: 0.6;
  cursor: default;
}

.braider-locator__status {
  margin: 0;
  padding: 11px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.braider-locator__status.is-ok {
  background: #e7f6ec;
  color: #1b7e3c;
}

.braider-locator__status.is-error {
  background: #fdecef;
  color: #c2255c;
}

.braider-locator__recaptcha-note {
  margin: 0;
  color: #131313;
  font-size: 0.75rem;
}

.braider-locator__recaptcha-note a {
  color: #131313;
  text-decoration: underline;
}

/* Honeypot — kept in the DOM + accessibility tree off, but visually gone and
   out of the tab order. Bots fill it; humans never see it. */
.braider-locator__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .braider-locator__row {
    flex-direction: column;
    gap: 16px;
  }

  .braider-locator__button {
    align-self: stretch;
    text-align: center;
  }
}
