/* Bhold — product request popup */
.bh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 99998;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.bh-modal-overlay.bh-open {
  opacity: 1;
}
.bh-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: min(440px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  z-index: 99999;
  padding: 28px 26px 24px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.bh-modal.bh-open {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.bh-modal *,
.bh-modal *:before,
.bh-modal *:after {
  box-sizing: border-box;
}
.bh-modal h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.3;
  color: #111;
}
.bh-modal p.bh-sub {
  margin: 0 0 18px;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.bh-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 6px;
}
.bh-close:hover {
  color: #111;
}
.bh-field {
  margin-bottom: 12px;
}
.bh-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 4px;
}
.bh-field input,
.bh-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  background: #fff;
}
.bh-field input:focus,
.bh-field textarea:focus {
  outline: none;
  border-color: #111;
}
.bh-field textarea {
  min-height: 72px;
  resize: vertical;
}
.bh-row {
  display: flex;
  gap: 10px;
}
.bh-row .bh-field {
  flex: 1;
}
.bh-submit {
  width: 100%;
  padding: 13px 16px;
  margin-top: 4px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bh-submit:hover {
  background: #333;
}
.bh-submit[disabled] {
  background: #999;
  cursor: wait;
}
.bh-status {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.bh-status.bh-ok {
  color: #1a7f37;
}
.bh-status.bh-err {
  color: #b42318;
}
.bh-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
body.bh-modal-lock {
  overflow: hidden;
}
