/* Pre-order popup overlay and dialog - above FunnelKit side cart */
.sahara-preorder-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100%;
  z-index: 9876543211;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sahara-preorder-overlay[aria-hidden='false'] {
  display: flex !important;
}

.sahara-preorder-dialog {
  display: none;
  position: relative;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  width: 360px;
  padding: 24px;
  text-align: center;
  direction: rtl;
  box-sizing: border-box;
  flex-shrink: 0;
}

.sahara-preorder-overlay[aria-hidden='false'] .sahara-preorder-dialog {
  display: block !important;
}

.sahara-preorder-message {
  margin: 0 0 12px;
  font-size: 1.1em;
  line-height: 1.5;
}

.sahara-preorder-sub {
  margin: 0 0 20px;
  font-size: 0.95em;
  opacity: 0.9;
}

.sahara-preorder-ok {
  display: inline-block;
  padding: 10px 24px;
  font-size: 1em;
  cursor: pointer;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
}

.sahara-preorder-ok:hover {
  background: #555;
}

body.sahara-preorder-modal-open {
  overflow: hidden;
}

/* Checkout page: pre-order notice when cart has pre-order product */
.sahara-preorder-checkout-notice {
  direction: rtl;
  text-align: right;
  background: #f0f6fc;
  border: 1px solid #c5d9ed;
  border-radius: 6px;
  padding: 1em 1.25em;
}

.sahara-preorder-checkout-message {
  margin: 0 0 0.35em;
  font-size: 1em;
  line-height: 1.5;
}

.sahara-preorder-checkout-sub {
  margin: 0;
  font-size: 0.95em;
  opacity: 0.9;
}
