
/* Inquiry modal (public) */
.inq-btn{
  display:inline-block;
  padding:10px 16px;
  border:0;
  border-radius:6px;
  background:#1f3b57;
  color:#fff;
  cursor:pointer;
  font-weight:bold;
}
.inq-btn:hover{opacity:.92;}
.inq-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.inq-overlay.open{display:flex;}
.inq-modal{
  width:min(760px, 92vw);
  max-height:88vh;
  overflow:auto;
  background:#fff;
  border-radius:10px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  padding:18px 18px 14px 18px;
  font-family: Arial, Helvetica, sans-serif;
}
.inq-top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px;}
.inq-top h2{margin:0; font-size:20px;}
.inq-close{border:0; background:transparent; font-size:22px; cursor:pointer; line-height:1;}
.inq-grid{display:grid; grid-template-columns: 1fr 1fr; gap:10px 14px;}
.inq-grid .full{grid-column:1 / -1;}
.inq-field label{display:block; font-size:12px; color:#333; margin-bottom:4px;}
.inq-field input, .inq-field select{
  width:100%;
  padding:9px 10px;
  border:1px solid #cfcfcf;
  border-radius:6px;
  font-size:14px;
  box-sizing:border-box;
}
.inq-mini{width:110px;}
.inq-counter{display:flex; align-items:center; gap:8px;}
.inq-counter button{
  width:28px; height:28px; border-radius:6px;
  border:1px solid #cfcfcf; background:#f7f7f7; cursor:pointer;
}
.inq-status{margin-top:10px; padding:10px; border-radius:6px; background:#f6f7f9; font-size:14px;}
.inq-status.ok{background:#eef8f0;}
.inq-status.bad{background:#fff1f1;}
.inq-actions{display:flex; justify-content:flex-end; gap:10px; margin-top:12px;}
.inq-primary{
  padding:10px 14px; border:0; border-radius:6px;
  background:#2a7b3f; color:#fff; cursor:pointer; font-weight:bold;
}
.inq-primary:disabled{opacity:.6; cursor:not-allowed;}
.inq-secondary{
  padding:10px 14px; border:1px solid #cfcfcf; border-radius:6px;
  background:#fff; cursor:pointer;
}
.inq-price{font-weight:bold; font-size:16px;}
.inq-small{font-size:12px; opacity:.8;}
.inq-details{margin-top:8px; font-size:12px; max-height:160px; overflow:auto; border-top:1px dashed #ddd; padding-top:8px;}
