.dlx-checkout-lock { overflow: hidden; }
.dlx-checkout-shell {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(23, 18, 14, .72);
  backdrop-filter: blur(8px);
}
.dlx-checkout-shell.is-open { display: grid; }
.dlx-checkout-panel {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid rgba(1, 113, 97, .28);
  border-radius: 26px;
  background: linear-gradient(155deg, #fffaf4 0%, #fff1df 58%, #fff 100%);
  box-shadow: 0 34px 100px rgba(23, 18, 14, .34);
  color: #17120e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.dlx-checkout-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(23, 18, 14, .1);
  background: linear-gradient(110deg, #017161, #075c51);
  color: white;
}
.dlx-checkout-band strong { display: block; font-size: 15px; }
.dlx-checkout-band span { display: block; margin-top: 3px; font-size: 12px; opacity: .88; }
.dlx-checkout-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: white;
  cursor: pointer;
  font: 700 22px/1 inherit;
}
.dlx-checkout-body { padding: 24px; }
.dlx-checkout-kicker {
  margin: 0 0 8px;
  color: #ce6901;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.dlx-checkout-body h2 { margin: 0; font-size: clamp(25px, 5vw, 36px); line-height: 1.05; }
.dlx-checkout-lede { margin: 12px 0 20px; color: #5f5a54; font-size: 15px; line-height: 1.55; }
.dlx-checkout-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(211, 42, 0, .16);
  border-radius: 16px;
  background: #fff;
}
.dlx-checkout-summary span { color: #5f5a54; font-size: 13px; }
.dlx-checkout-summary strong { color: #d32a00; font-size: 18px; white-space: nowrap; }
.dlx-checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dlx-checkout-field { margin-bottom: 14px; }
.dlx-checkout-field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.dlx-checkout-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 18, 14, .2);
  border-radius: 13px;
  background: white;
  padding: 11px 13px;
  color: #17120e;
  font: inherit;
  outline: none;
}
.dlx-checkout-field input:focus { border-color: #017161; box-shadow: 0 0 0 3px rgba(1, 113, 97, .12); }
.dlx-checkout-submit {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #d32a00, #b72200);
  box-shadow: 0 12px 28px rgba(211, 42, 0, .24);
  color: white;
  cursor: pointer;
  font: 850 15px/1.2 inherit;
}
.dlx-checkout-submit:disabled { cursor: wait; opacity: .62; }
.dlx-checkout-trust { margin: 13px 0 0; color: #5f5a54; font-size: 12px; line-height: 1.5; text-align: center; }
.dlx-checkout-status { min-height: 20px; margin: 12px 0 0; color: #b72200; font-size: 13px; font-weight: 750; text-align: center; }
.dlx-checkout-fallback { display: none; margin-top: 8px; color: #017161; font-size: 13px; font-weight: 800; text-align: center; }
.dlx-checkout-fallback.is-visible { display: block; }
@media (max-width: 600px) {
  .dlx-checkout-shell { align-items: end; padding: 0; }
  .dlx-checkout-panel { width: 100%; max-height: 94vh; border-radius: 24px 24px 0 0; }
  .dlx-checkout-body { padding: 21px 18px 24px; }
  .dlx-checkout-grid { grid-template-columns: 1fr; gap: 0; }
}
