.order-modal[hidden] { display: none; }
.order-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
.order-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(14, 14, 16, 0.6);
}
.order-modal__body {
  position: relative;
  background: var(--light-surface, #fff);
  border-radius: var(--r-card, 12px);
  padding: 28px;
  width: 380px;
  max-width: calc(100vw - 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.order-modal__body h3 { margin: 0 0 8px; font-family: var(--headline, inherit); }
.order-modal__body p { margin: 0 0 16px; color: var(--light-muted, #6b6b6b); font-size: 14px; }
.order-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer;
}
.order-modal__body .field { display: block; margin-bottom: 12px; }
.order-modal__body .field__label { display: block; font-size: 12px; margin-bottom: 4px; color: var(--light-muted, #6b6b6b); }
.order-modal__body .field__input {
  width: 100%; box-sizing: border-box; padding: 10px 12px;
  border: 1px solid var(--light-border, #e5e5e5); border-radius: var(--r-btn, 8px); font: inherit;
}
.order-modal__body [data-order-modal-status] { margin-top: 10px; font-size: 13px; }
