/* ============================================================
   GoPass Terminal — Screen 24b: Awaiting Card Payment
   ============================================================ */

/* ── Light header (pen: bg-card fill, text-primary logo/time) ── */
/* Handled via body.light-header-mode + components.css.
   The header on this screen is the white/light variant per the .pen. */

/* ── Awaiting Content area ── */
.awaiting-content-24b {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 40px 40px;
  overflow: hidden;
}

/* ── Card Icon Ring: 172×172, bg-soft, full circle, shadow ── */
.card-icon-ring-24b {
  width: 172px;
  height: 172px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 14px 36px -8px rgba(27, 27, 92, 0.15);
}

.card-icon-ring-24b i[data-lucide],
.card-icon-ring-24b svg {
  width: 88px;
  height: 88px;
  color: var(--brand-navy);
  stroke: var(--brand-navy);
}

/* ── Title: "Priložte kartu" ── */
.awaiting-title-24b {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  text-align: center;
  margin: 0;
}

/* ── Subtitle block ── */
.awaiting-subtitle-24b {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.awaiting-sub-heading-24b {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.awaiting-sub-body-24b {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
  width: 100%;
}

/* ── Amount Card ── */
.amount-card-24b {
  background: var(--bg-card);
  border-radius: 22px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 8px 24px -8px rgba(27, 27, 92, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 32px 22px;
  flex-shrink: 0;
}

.amount-label-24b {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.amount-value-24b {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-price);
}

/* ── Methods row: "Bezkontaktne" + "Vložte kartu" pills ── */
.methods-row-24b {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.method-pill-24b {
  background: var(--bg-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  flex-shrink: 0;
}

.method-pill-24b i[data-lucide],
.method-pill-24b svg {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
  stroke: var(--text-primary);
}

.method-pill-24b span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Simulate button (demo control) ── */
.simulate-wrap-24b {
  width: 100%;
  padding: 8px 28px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

/* Failure variant — same dashed-pink shape, used side by side with success */
.btn-simulate-24b--fail {
  /* inherits all .btn-simulate-24b styles; visual distinction comes from the
     label itself ("Simulovať zlyhanie platby" vs "Simulovať úspešnú platbu"). */
}

.btn-simulate-24b {
  height: 52px;
  background: transparent;
  border: 2px dashed var(--brand-pink);
  border-radius: 26px;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-pink);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s, background 0.15s;
}

.btn-simulate-24b:hover {
  opacity: 1;
  background: var(--brand-pink-soft);
}

/* ── Service Footer: 54 px, white, top border, centred ── */
.service-footer-24b {
  width: 100%;
  height: 54px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  flex-shrink: 0;
}

.service-footer-24b i[data-lucide],
.service-footer-24b svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  stroke: var(--text-secondary);
  flex-shrink: 0;
}

.service-footer-24b span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  white-space: nowrap;
}
