/* ── Wholesale pricing table (product page) ── */
.shq-pricing-table-wrap {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #fafafa;
  max-width: 480px;
}
.shq-pricing-table-title { margin: 0 0 10px; font-size: 15px; }
.shq-pricing-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.shq-pricing-table th, .shq-pricing-table td { padding: 7px 8px; text-align: left; border-bottom: 1px solid #ececec; }
.shq-pricing-table thead th { background: #2f2f2f; color: #fff; font-weight: 600; }
.shq-pricing-table tbody tr:last-child td { border-bottom: none; }
.shq-pricing-note { margin: 8px 0 0; font-size: 12px; color: #777; }
.shq-live-price {
  margin: 10px 0 0;
  padding: 8px 10px;
  background: #eaf7ee;
  border-left: 4px solid #2e9c3f;
  border-radius: 4px;
  font-size: 13.5px;
}

/* ── Request a Quote button (product page + shop loop) ── */
.shq-quote-btn {
  display: inline-block;
  margin: 10px 8px 0 0;
  padding: 11px 22px;
  background: #0b5cab;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.shq-quote-btn:hover { background: #094a8a; color: #fff; }
li.product .shq-quote-btn { width: 100%; box-sizing: border-box; margin-top: 8px; }

/* ── Quote request modal ── */
.shq-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.shq-modal-overlay.shq-open { display: flex; }
.shq-modal {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 22px 24px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.shq-modal h3 { margin: 0 0 4px; font-size: 18px; }
.shq-modal .shq-modal-product { color: #666; font-size: 13px; margin: 0 0 16px; }
.shq-modal-close {
  float: right;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #888;
  background: none;
  border: none;
}
.shq-field { margin-bottom: 12px; }
.shq-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.shq-field input, .shq-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.shq-field textarea { min-height: 70px; resize: vertical; }
.shq-modal-submit {
  width: 100%;
  padding: 12px;
  background: #0b5cab;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
}
.shq-modal-submit:disabled { opacity: .6; cursor: default; }
.shq-modal-status { margin-top: 10px; font-size: 13px; text-align: center; }
.shq-modal-status.shq-error { color: #c0392b; }
.shq-modal-status.shq-success { color: #1f7a4d; }
/* honeypot — hidden from real visitors, left in the tab order for bots that fill every field blindly */
.shq-field-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ── Name Your Price ── */
.shq-nyp-label { font-weight: 700; color: #0b5cab; font-size: 1.1em; }
.shq-nyp-min { color: #777; font-weight: 400; }
.shq-nyp-field {
  margin: 14px 0;
  padding: 14px 16px;
  background: #f0f6fc;
  border: 1px solid #cfe2f3;
  border-radius: 8px;
  max-width: 320px;
}
.shq-nyp-field label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; }
.shq-nyp-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #b7cfe6;
  border-radius: 5px;
  font-size: 15px;
}
.shq-nyp-hint { margin: 6px 0 0; font-size: 12px; color: #666; }
.shq-nyp-error { margin: 6px 0 0; font-size: 12px; color: #c0392b; font-weight: 600; }
a.shq-nyp-loop-link { display: block; text-align: center; }

/* ── Floating WhatsApp button ── */
.shq-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  z-index: 99999;
  text-decoration: none;
  animation: shq-pulse 2.4s infinite;
}
.shq-whatsapp-float svg { width: 30px; height: 30px; }
@keyframes shq-pulse {
  0%   { box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 480px) {
  .shq-whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .shq-whatsapp-float svg { width: 26px; height: 26px; }
}
