/* WarmPatch RFQ closed-loop form v1 */
.rfq-form {
  border: 1px solid var(--sand-line-strong, #d7c5b5);
  background: #fffdf9;
}

.rfq-intro,
.rfq-fallback {
  color: var(--clay, #6b5549);
  line-height: 1.6;
}

.rfq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin: 20px 0 16px;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  background: #fff;
  color: #2f241f;
  border: 1px solid #cdbbaa;
  border-radius: 8px;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  outline: 3px solid rgba(82, 113, 86, 0.22);
  border-color: #527156;
}

.rfq-consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  line-height: 1.45;
}

.rfq-consent input {
  width: 18px !important;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.rfq-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.rfq-turnstile {
  min-height: 66px;
  margin: 14px 0;
}

.rfq-status {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 8px;
  line-height: 1.5;
  background: #f3eee8;
  color: #3f332c;
}

.rfq-status[data-type="success"] {
  background: #e8f4ea;
  color: #254b2b;
  border: 1px solid #9fc3a4;
}

.rfq-status[data-type="error"] {
  background: #fff0ed;
  color: #7a2e23;
  border: 1px solid #e0a99f;
}

.rfq-actions {
  display: flex;
  margin-top: 12px;
}

.rfq-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
}

.mpv21-rfq-section .rfq-form {
  margin-top: 16px;
  padding: 18px 14px !important;
}

.mpv21-rfq-section .rfq-grid {
  grid-template-columns: 1fr;
}

.mpv21-rfq-section .rfq-submit {
  width: 100%;
  justify-content: center;
}

@media (max-width: 760px) {
  .rfq-grid { grid-template-columns: 1fr; }
  .rfq-turnstile { overflow-x: auto; }
}
