/* Guest checkout — layout on top of dreamland-backstage payment styles */

.dlco-page {
  min-height: 100vh;
  color: var(--dlbs-text, #f4f0e8);
  font-family: "DM Sans", system-ui, sans-serif;
}

.dlco-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dlco-topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.dlco-topbar__link {
  color: var(--dlbs-gold-bright, #e8d4a8);
  text-decoration: none;
  font-size: 0.875rem;
}

.dlco-root {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}

.dlco-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 860px) {
  .dlco-layout {
    grid-template-columns: 1fr;
  }
}

.dlco-item,
.dlco-form-wrap,
.dlco-pay {
  background: rgba(18, 17, 19, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.dlco-item__cover {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.dlco-item__eyebrow,
.dlco-pay__badge {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dlbs-gold, #d4b87a);
  margin: 0 0 0.5rem;
}

.dlco-item__title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.75rem;
  margin: 0 0 0.35rem;
}

.dlco-item__sub {
  color: rgba(244, 240, 232, 0.65);
  margin: 0 0 1rem;
}

.dlco-item__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dlbs-gold-bright, #e8d4a8);
  margin: 0;
}

.dlco-form__title {
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}

.dlco-form__lead {
  color: rgba(244, 240, 232, 0.65);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.dlco-field {
  margin-bottom: 1rem;
}

.dlco-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: rgba(244, 240, 232, 0.75);
}

.dlco-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: inherit;
  font: inherit;
}

.dlco-error {
  color: #ff8a8a;
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}

.dlco-foot {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(244, 240, 232, 0.6);
  text-align: center;
}

.dlco-foot a {
  color: var(--dlbs-gold-bright, #e8d4a8);
}

.dlco-pay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dlco-back {
  color: rgba(244, 240, 232, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.dlco-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(244, 240, 232, 0.75);
}

.dlco-empty h1 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
}

.dlco-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  z-index: 99;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: rgba(20, 18, 16, 0.95);
  border: 1px solid rgba(212, 184, 122, 0.35);
  color: #f4f0e8;
  transition: transform 0.25s ease;
}

.dlco-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.dlco-pay .dlbs-pay-checkout {
  margin: 0;
}

.dlco-pay .dlbs-pay-checkout__qr img {
  max-width: min(100%, 420px);
  width: 100%;
  height: auto;
  border-radius: 12px;
}
