.qobc-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.qobc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.qobc-modal-content {
  position: relative;
  max-width: 420px;
  margin: 10% auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.qobc-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.qobc-field {
  margin-bottom: 12px;
}

.qobc-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.qobc-field input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.qobc-submit {
  background: #e53935; /* rouge */
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.qobc-status {
  margin-top: 10px;
  min-height: 20px;
}

/* Style the "Order Now" button on product page */
.qobc-order-now-button {
  background: #e53935; /* rouge */
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.qobc-order-now-button:hover,
.qobc-submit:hover {
  background: #c62828; /* rouge foncé */
}

.qobc-order-now-button:focus,
.qobc-submit:focus {
  outline: 2px solid #ffcdd2; /* rouge clair pour accessibilité */
  outline-offset: 2px;
}