/* ── Footer Contact Form ─────────────────────────────────────────── */
.bd-contact-form {
  padding: 25px 20px;
}
.bd-contact-form h3 {
  color: #c5a55a;
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.bd-contact-form .bd-fields-row {
  display: flex;
  gap: 10px;
}
.bd-contact-form .bd-fields-row .bd-field {
  flex: 1;
}
.bd-contact-form .bd-field {
  margin-bottom: 10px;
}
.bd-contact-form input,
.bd-contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(197,165,90,0.3);
  border-radius: 3px;
  background: rgba(0,0,0,0.4);
  color: #f0e6d3;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 13px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.bd-contact-form input::placeholder,
.bd-contact-form textarea::placeholder {
  color: rgba(240,230,211,0.4);
}
.bd-contact-form input:focus,
.bd-contact-form textarea:focus {
  outline: none;
  border-color: #c5a55a;
  background: rgba(30,20,15,0.95);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(197,165,90,0.25);
}
.bd-contact-form textarea {
  height: 80px;
  resize: vertical;
}
.bd-contact-form button {
  width: 100%;
  background: #c5a55a;
  color: #2b1e1d;
  border: none;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s, transform 0.1s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.bd-contact-form button:hover {
  background: #d4b86a;
  transform: translateY(-1px);
}
.bd-contact-form button:active {
  transform: translateY(0);
}
.bd-contact-form button:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}
.bd-form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 3px;
  display: none;
  font-size: 13px;
  text-align: center;
}
.bd-form-status.success {
  display: block;
  background: rgba(46,125,50,0.25);
  color: #a5d6a7;
  border: 1px solid rgba(46,125,50,0.4);
}
.bd-form-status.error {
  display: block;
  background: rgba(198,40,40,0.25);
  color: #ef9a9a;
  border: 1px solid rgba(198,40,40,0.4);
}

/* ── Purchase Inquiry Form (Product Pages) ──────────────────────── */
.bd-purchase-form {
  margin: 30px 0 10px;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(43,30,29,0.6) 0%, rgba(64,47,38,0.5) 100%);
  border: 1px solid rgba(197,165,90,0.25);
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.bd-purchase-form h3 {
  color: #c5a55a;
  font-size: 20px;
  margin: 0 0 4px 0;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bd-purchase-form .bd-purchase-subtitle {
  color: rgba(240,230,211,0.5);
  font-size: 13px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.4;
}
.bd-purchase-form .bd-fields-row {
  display: flex;
  gap: 10px;
}
.bd-purchase-form .bd-fields-row .bd-field {
  flex: 1;
}
.bd-purchase-form .bd-field {
  margin-bottom: 10px;
}
.bd-purchase-form input,
.bd-purchase-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(197,165,90,0.25);
  border-radius: 3px;
  background: rgba(0,0,0,0.35);
  color: #f0e6d3;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.bd-purchase-form input::placeholder,
.bd-purchase-form textarea::placeholder {
  color: rgba(240,230,211,0.4);
}
.bd-purchase-form input:focus,
.bd-purchase-form textarea:focus {
  outline: none;
  border-color: #c5a55a;
  background: rgba(30,20,15,0.95);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(197,165,90,0.25);
}
.bd-purchase-form textarea {
  height: 70px;
  resize: vertical;
}
.bd-purchase-form button {
  width: 100%;
  background: #c5a55a;
  color: #2b1e1d;
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s, transform 0.1s;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-top: 5px;
}
.bd-purchase-form button:hover {
  background: #d4b86a;
  transform: translateY(-1px);
}
.bd-purchase-form button:active {
  transform: translateY(0);
}
.bd-purchase-form button:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}
.bd-purchase-form .bd-form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 3px;
  display: none;
  font-size: 13px;
  text-align: center;
}
.bd-purchase-form .bd-form-status.success {
  display: block;
  background: rgba(46,125,50,0.25);
  color: #a5d6a7;
  border: 1px solid rgba(46,125,50,0.4);
}
.bd-purchase-form .bd-form-status.error {
  display: block;
  background: rgba(198,40,40,0.25);
  color: #ef9a9a;
  border: 1px solid rgba(198,40,40,0.4);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .bd-contact-form .bd-fields-row,
  .bd-purchase-form .bd-fields-row {
    flex-direction: column;
    gap: 0;
  }
  .bd-purchase-form {
    padding: 20px 15px;
    margin: 20px 0 10px;
  }
}

/* ── Landscape phone: auto-hide sticky header on scroll ─────── */
@media only screen and (max-height: 500px) and (orientation: landscape) {
  .et-l--header .et_pb_section_0_tb_header {
    transition: transform 0.3s ease !important;
  }
  .et-l--header .et_pb_section_0_tb_header.bd-header-hidden {
    transform: translateY(-100%) !important;
  }
}

/* ── Global: kill white background, full-width on all devices ── */
html, body {
  background-color: #2b1e1d !important;
  background: #2b1e1d !important;
  overflow-x: hidden;
}
#page-container, #et-boc, .et-l, .et_builder_inner_content,
.et_pb_section, .et_pb_row, #main-content {
  max-width: 100% !important;
}
.et_pb_section {
  background-color: #2b1e1d;
}
