/* Modal overlay */
.boxnbond-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
}

/* Modal inner box */
.boxnbond-modal-inner {
  background: #fff;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: auto;
  border-radius: 8px;
  padding: 22px;
  position: relative;
  box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

/* Close button */
.boxnbond-modal-close {
  position: absolute;
  right: 12px; top: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Inputs */
.boxnbond-modal-inner input[type="text"],
.boxnbond-modal-inner input[type="email"],
.boxnbond-modal-inner input[type="number"],
.boxnbond-modal-inner textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Buttons */
.boxnbond-modal-inner .button {
  background: #cc9933;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Sticky footer style */
.boxnbond-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 10px;
  text-align: center;
  z-index: 19999;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.boxnbond-sticky-footer .button {
  padding: 12px 20px;
  font-weight: 600;
}

/* Ensure bulk-enquiry-btn in product area aligns nicely */
.bulk-enquiry-btn {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .boxnbond-modal-inner { max-width: 96%; padding: 18px; border-radius: 6px; }
  .boxnbond-sticky-footer { padding: 12px; }
}
