/* ============================================================
   wa-fire.css — FIRE Calculator page
   Depends on: theme.css, wa-app.css
   ============================================================ */

/* ── Page shell ─────────────────────────────────────────────── */
.fire-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--wa-space-md);
}

/* ── Hero (slim band) ───────────────────────────────────────── */
.fire-hero {
  text-align: center;
  padding: var(--wa-space-lg) 0 var(--wa-space-md);
}

.fire-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--wa-gold);
  text-transform: uppercase;
  margin-bottom: var(--wa-space-xs);
}

.fire-headline {
  font-family: var(--wa-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--wa-text);
  line-height: 1.1;
  margin-bottom: var(--wa-space-xs);
}

.fire-headline em {
  font-style: italic;
  color: var(--wa-gold);
}

.fire-sub {
  font-size: var(--wa-text-base);
  color: var(--wa-text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Two-column layout ──────────────────────────────────────── */
.fire-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--wa-space-3xl);
}

/* Right column holds preview + teaser, sticky together */
.fire-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(var(--wa-nav-height) + var(--wa-space-lg));
}

/* ── Progress bar ───────────────────────────────────────────── */
.fire-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.fire-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.fire-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wa-border-strong);
  transition: background var(--wa-duration-base) var(--wa-ease),
              box-shadow var(--wa-duration-base) var(--wa-ease);
}

.fire-progress-step.active .fire-progress-dot {
  background: var(--wa-gold);
  box-shadow: 0 0 0 4px var(--wa-gold-glow);
}

.fire-progress-step.done .fire-progress-dot {
  background: var(--wa-gold-dim);
}

.fire-progress-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-text-muted);
  transition: color var(--wa-duration-base);
}

.fire-progress-step.active .fire-progress-lbl { color: var(--wa-gold); }
.fire-progress-step.done  .fire-progress-lbl  { color: var(--wa-text-2); }

.fire-progress-line {
  flex: 1;
  height: 1px;
  background: var(--wa-border);
  margin: 0 10px 18px;
}

/* ── Step titles ────────────────────────────────────────────── */
.fire-step-title {
  font-family: var(--wa-font-display);
  font-size: var(--wa-text-2xl);
  font-weight: 300;
  color: var(--wa-text);
  margin-bottom: 6px;
}

.fire-step-sub {
  font-size: var(--wa-text-sm);
  color: var(--wa-text-muted);
  margin-bottom: var(--wa-space-xl);
  line-height: 1.65;
}

/* ── Fields ─────────────────────────────────────────────────── */
.fire-field {
  margin-bottom: var(--wa-space-xl);
}

.fire-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--wa-text-sm);
  font-weight: 500;
  color: var(--wa-text-2);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.fire-input {
  width: 100%;
  background: var(--wa-input-bg);
  border: 1px solid var(--wa-input-border);
  border-radius: var(--wa-radius-md);
  color: var(--wa-input-text);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-md);
  padding: 13px 16px;
  transition: border-color var(--wa-duration-base), box-shadow var(--wa-duration-base);
  -webkit-appearance: none;
  appearance: none;
}

.fire-input:focus {
  outline: none;
  border-color: var(--wa-input-border-focus);
  box-shadow: var(--wa-input-shadow-focus);
}

.fire-input::placeholder { color: var(--wa-input-placeholder); }

.fire-input[type="number"]::-webkit-outer-spin-button,
.fire-input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }
.fire-input[type="number"] { -moz-appearance: textfield; }

/* Currency prefix group */
.fire-input-group {
  display: flex;
  align-items: stretch;
  background: var(--wa-input-bg);
  border: 1px solid var(--wa-input-border);
  border-radius: var(--wa-radius-md);
  overflow: hidden;
  transition: border-color var(--wa-duration-base), box-shadow var(--wa-duration-base);
}

.fire-input-group:focus-within {
  border-color: var(--wa-input-border-focus);
  box-shadow: var(--wa-input-shadow-focus);
}

.fire-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px 0 16px;
  font-size: var(--wa-text-md);
  color: var(--wa-text-muted);
  background: var(--wa-bg-card-alt);
  border-right: 1px solid var(--wa-border);
  flex-shrink: 0;
  user-select: none;
}

.fire-input-group .fire-input {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  background: transparent;
}

.fire-hint {
  font-size: var(--wa-text-xs);
  color: var(--wa-text-muted);
  margin-top: 7px;
  line-height: 1.5;
}

/* ── Pill toggles ───────────────────────────────────────────── */
.fire-pills {
  display: flex;
  gap: var(--wa-space-sm);
  flex-wrap: wrap;
}

.fire-pill {
  padding: 9px 22px;
  border: 1px solid var(--wa-border-md);
  border-radius: 100px;
  background: transparent;
  color: var(--wa-text-2);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  cursor: pointer;
  transition: all var(--wa-duration-base) var(--wa-ease);
  white-space: nowrap;
}

.fire-pill:hover {
  border-color: var(--wa-border-strong);
  color: var(--wa-text);
}

.fire-pill.active {
  background: var(--wa-gold-pale);
  border-color: var(--wa-gold-dim);
  color: var(--wa-gold);
}

/* ── Slider ─────────────────────────────────────────────────── */
.fire-slider-val {
  font-family: var(--wa-font-display);
  font-size: 22px;
  color: var(--wa-gold);
}

.fire-slider-val:not(.chosen) {
  font-size: 15px;
  font-style: italic;
  color: var(--wa-text-muted);
}

.fire-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--wa-border-md);
  border-radius: 2px;
  outline: none;
  margin: 10px 0 6px;
  cursor: pointer;
}

.fire-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wa-gold);
  cursor: pointer;
  box-shadow: 0 0 0 3px var(--wa-gold-glow);
  transition: transform var(--wa-duration-fast);
}

.fire-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.fire-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wa-gold);
  border: none;
  cursor: pointer;
}

.fire-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--wa-text-muted);
}

/* ── Buttons ────────────────────────────────────────────────── */
.fire-btn-primary {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--wa-btn-bg);
  color: var(--wa-btn-text);
  border: none;
  border-radius: var(--wa-radius-md);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background var(--wa-duration-base);
  margin-top: var(--wa-space-sm);
  text-align: center;
}

.fire-btn-primary:hover { background: var(--wa-btn-bg-hover); }

.fire-btn-ghost {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--wa-btn-ghost-border);
  border-radius: var(--wa-radius-md);
  color: var(--wa-btn-ghost-text);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  cursor: pointer;
  transition: all var(--wa-duration-base);
}

.fire-btn-ghost:hover {
  border-color: var(--wa-btn-ghost-border-hover);
  color: var(--wa-btn-ghost-text-hover);
}

.fire-step-nav {
  display: flex;
  gap: var(--wa-space-sm);
  align-items: center;
}

.fire-step-nav .fire-btn-primary {
  flex: 1;
  margin-top: 0;
}

.fire-err {
  min-height: 20px;
  margin-top: 10px;
  font-size: var(--wa-text-sm);
  color: var(--wa-red);
}

/* ── Children rows ──────────────────────────────────────────── */
.fire-children-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: var(--wa-space-md);
  align-items: center;
  background: var(--wa-bg-card);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-md);
  padding: var(--wa-space-md);
  margin-bottom: var(--wa-space-sm);
}

.fire-children-row-lbl {
  font-size: 11px;
  color: var(--wa-text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.fire-child-college-pills {
  display: flex;
  gap: 6px;
}

.fire-child-edu {
  display: flex;
  gap: var(--wa-space-sm);
}

.fire-child-edu-col {
  flex: 1;
  min-width: 0;
}

.fire-child-select {
  width: 100%;
  padding: 8px 10px;
  background: var(--wa-bg-card);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius-md);
  color: var(--wa-text);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}

.fire-child-college-pills .fire-pill {
  padding: 6px 14px;
  font-size: 12px;
}

.fire-remove-child {
  background: none;
  border: none;
  color: var(--wa-text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color var(--wa-duration-fast);
  align-self: center;
}

.fire-remove-child:hover { color: var(--wa-red); }

.fire-add-child-btn {
  width: 100%;
  padding: 10px;
  background: none;
  border: 1px dashed var(--wa-border-md);
  border-radius: var(--wa-radius-md);
  color: var(--wa-text-muted);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  cursor: pointer;
  transition: all var(--wa-duration-base);
  margin-top: var(--wa-space-sm);
}

.fire-add-child-btn:hover {
  border-color: var(--wa-gold-dim);
  color: var(--wa-gold);
}

/* ── CTA card ───────────────────────────────────────────────── */
.fire-cta-card {
  background: var(--wa-bg-card);
  border: 1px solid var(--wa-border-md);
  border-radius: var(--wa-radius-lg);
  padding: var(--wa-space-xl);
}

.fire-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wa-gold);
  margin-bottom: var(--wa-space-sm);
}

.fire-cta-title {
  font-family: var(--wa-font-display);
  font-size: var(--wa-text-xl);
  font-weight: 300;
  color: var(--wa-text);
  margin-bottom: var(--wa-space-sm);
}

.fire-cta-body {
  font-size: var(--wa-text-sm);
  color: var(--wa-text-2);
  line-height: 1.75;
  margin-bottom: var(--wa-space-lg);
}

.fire-cta-btn {
  display: block;
  padding: 14px;
  background: var(--wa-btn-bg);
  color: var(--wa-btn-text);
  border-radius: var(--wa-radius-md);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  transition: background var(--wa-duration-base);
  margin-bottom: var(--wa-space-md);
}

.fire-cta-btn:hover { background: var(--wa-btn-bg-hover); color: var(--wa-btn-text); }

.fire-cta-trust {
  font-size: 11px;
  color: var(--wa-text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── Preview panel ──────────────────────────────────────────── */
.fire-preview {
  background: var(--wa-bg-card);
  border: 1px solid var(--wa-border-md);
  border-radius: var(--wa-radius-lg);
  padding: var(--wa-space-xl);
  box-shadow: var(--wa-shadow-md);
}

.fire-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--wa-space-md);
  min-height: 220px;
  text-align: center;
  color: var(--wa-text-muted);
  font-size: var(--wa-text-sm);
  line-height: 1.65;
}

.fire-preview-ring {
  width: 64px;
  height: 64px;
  color: var(--wa-text-muted);
}

.fire-preview-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wa-text-muted);
  margin-bottom: 8px;
}

.fire-preview-number {
  font-family: var(--wa-font-display);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 300;
  color: var(--wa-gold);
  line-height: 1;
  margin-bottom: 6px;
  transition: all var(--wa-duration-slow) var(--wa-ease);
}

.fire-preview-today-note {
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--wa-text-muted);
  margin-bottom: 6px;
}

.fire-preview-multiplier {
  font-size: 12px;
  color: var(--wa-text-muted);
  margin-bottom: var(--wa-space-lg);
}

.fire-preview-inflated {
  padding: 14px 16px;
  margin-bottom: var(--wa-space-lg);
  background: var(--wa-gold-tint, rgba(201, 168, 76, 0.08));
  border-left: 2px solid var(--wa-gold);
  border-radius: var(--wa-radius-sm, 6px);
}

.fire-inflated-cap {
  font-size: 13px;
  line-height: 1.5;
  color: var(--wa-text-2);
}

.fire-inflated-num {
  font-family: var(--wa-font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--wa-gold);
  line-height: 1.1;
  margin: 4px 0;
}

/* Progress bar */
.fire-preview-bar-wrap { margin-bottom: var(--wa-space-lg); }

.fire-preview-bar {
  height: 4px;
  background: var(--wa-border-md);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.fire-preview-bar-fill {
  height: 100%;
  background: var(--wa-gold);
  border-radius: 2px;
  transition: width 0.6s var(--wa-ease);
  min-width: 2px;
}

.fire-preview-bar-lbl {
  font-size: 12px;
  color: var(--wa-text-muted);
}

/* Stats */
.fire-preview-stats { margin-bottom: var(--wa-space-md); }

.fire-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--wa-border);
}

.fire-stat-row:last-child { border-bottom: none; }

.fire-stat-lbl {
  font-size: var(--wa-text-sm);
  color: var(--wa-text-2);
}

.fire-stat-val {
  font-size: var(--wa-text-sm);
  font-weight: 500;
  color: var(--wa-text);
}

.fire-stat-val.good { color: var(--wa-green); }
.fire-stat-val.warn { color: var(--wa-gold); }

/* Breakdown */
.fire-preview-breakdown {
  background: var(--wa-bg-card-alt);
  border-radius: var(--wa-radius-md);
  padding: var(--wa-space-md);
  margin-bottom: var(--wa-space-md);
}

.fire-bd-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--wa-text-2);
  padding: 3px 0;
}

.fire-bd-row.total {
  color: var(--wa-text);
  font-weight: 500;
  border-top: 1px solid var(--wa-border);
  margin-top: 8px;
  padding-top: 10px;
}

/* Assumption footnote */
.fire-preview-assumption {
  font-size: 11px;
  color: var(--wa-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--wa-border);
  padding-top: var(--wa-space-md);
  margin-top: var(--wa-space-md);
}

/* ── Teaser card ────────────────────────────────────────────── */
.fire-teaser {
  animation: fireTeaserIn 0.5s var(--wa-ease) both;
}

@keyframes fireTeaserIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fire-teaser-connector {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--wa-border-md), var(--wa-gold-dim));
  margin: 0 auto;
}

.fire-teaser-body {
  background: var(--wa-bg-card);
  border: 1px solid var(--wa-border-md);
  border-top: 2px solid var(--wa-gold-dim);
  border-radius: 0 0 var(--wa-radius-lg) var(--wa-radius-lg);
  padding: var(--wa-space-lg) var(--wa-space-xl) var(--wa-space-xl);
}

.fire-teaser-lead {
  font-family: var(--wa-font-display);
  font-size: var(--wa-text-xl);
  font-weight: 300;
  color: var(--wa-text);
  margin-bottom: var(--wa-space-md);
  line-height: 1.2;
}

.fire-teaser-copy {
  font-size: var(--wa-text-sm);
  color: var(--wa-text-2);
  line-height: 1.75;
  margin-bottom: var(--wa-space-sm);
}

.fire-teaser-invite {
  font-family: var(--wa-font-display);
  font-size: var(--wa-text-2xl);
  font-style: italic;
  font-weight: 600;
  color: var(--wa-gold);
  line-height: 1.2;
  text-align: center;
  margin: var(--wa-space-lg) 0;
  padding-top: var(--wa-space-lg);
  border-top: 1px solid var(--wa-gold-dim);
}

.fire-teaser-btn {
  display: block;
  padding: 13px;
  background: var(--wa-btn-bg);
  color: var(--wa-btn-text);
  border-radius: var(--wa-radius-md);
  font-family: var(--wa-font-body);
  font-size: var(--wa-text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  transition: background var(--wa-duration-base);
}

.fire-teaser-btn:hover { background: var(--wa-btn-bg-hover); color: var(--wa-btn-text); }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .fire-layout {
    grid-template-columns: 1fr;
    gap: var(--wa-space-xl);
  }

  /* Form is the whole screen; result lives in the sticky bar + sheet. */
  .fire-right-col {
    display: none;
  }

  .fire-right-col.is-sheet {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--wa-bg-card);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.30);
    padding: var(--wa-space-lg);
    animation: fireSheetUp 0.3s var(--wa-ease) both;
  }

  .fire-right-col.is-sheet::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--wa-border);
    margin: 0 auto var(--wa-space-md);
  }

  .fire-right-col.is-sheet .fire-sheet-close {
    display: block;
  }

  .fire-hero {
    padding: var(--wa-space-md) 0 var(--wa-space-sm);
  }

  .fire-sub {
    display: none;
  }

  /* room so the fixed result bar never covers content */
  .fire-page {
    padding-bottom: 84px;
  }
}

@keyframes fireSheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.fire-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 55;
}

.fire-sheet-close {
  display: none;
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--wa-text-muted);
  cursor: pointer;
}

@media (max-width: 520px) {
  .fire-children-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .fire-remove-child {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

/* ── Scenario toggle (Lean / Regular / Fat) ─────────────────── */
.fire-scenario-pills {
  display: flex;
  justify-content: center;
  gap: 6px;
  max-width: 300px;
  margin: 0 auto var(--wa-space-md);
}

/* ── One-off goal rows (reuse .fire-children-row layout) ─────── */
.fire-remove-goal {
  background: none;
  border: none;
  color: var(--wa-text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color var(--wa-duration-fast);
  align-self: center;
}

.fire-remove-goal:hover { color: var(--wa-red); }

/* ── Compliance disclaimer ──────────────────────────────────── */
.fire-disclaimer {
  font-size: 10px;
  color: var(--wa-text-muted);
  line-height: 1.6;
  opacity: 0.85;
  margin-top: var(--wa-space-sm);
}

@media (max-width: 640px) {
  /* Tighten vertical rhythm so a step fits without scrolling */
  .fire-hero {
    padding: var(--wa-space-sm) 0 var(--wa-space-xs);
  }

  .fire-progress {
    margin-bottom: var(--wa-space-md);
  }

  .fire-step-title {
    font-size: var(--wa-text-xl);
    margin-bottom: 4px;
  }

  .fire-step-sub {
    margin-bottom: var(--wa-space-md);
  }

  .fire-field {
    margin-bottom: var(--wa-space-md);
  }

  .fire-label {
    margin-bottom: 6px;
  }

  .fire-input {
    padding: 10px 14px;
  }

  .fire-slider {
    margin-top: 4px;
  }

  /* Compact child / goal rows — pin the × to the corner, no full-width row */
  .fire-children-row {
    position: relative;
    grid-template-rows: auto;
    align-items: end;
    gap: var(--wa-space-sm);
    padding: var(--wa-space-sm) 34px var(--wa-space-sm) var(--wa-space-md);
    margin-bottom: var(--wa-space-sm);
  }

  .fire-children-row:not(.fire-goal-row) {
    grid-template-columns: 58px 1fr;
  }

  .fire-goal-row {
    grid-template-columns: 1fr 1fr;
  }

  .fire-remove-child,
  .fire-remove-goal {
    position: absolute;
    top: 6px;
    right: 6px;
    grid-column: auto;
    justify-self: auto;
    align-self: auto;
    padding: 2px;
    font-size: 22px;
  }

  .fire-child-edu {
    gap: 6px;
  }

  .fire-child-select {
    padding: 8px 6px;
    font-size: 12px;
  }
}

/* ── Paged wizard step transitions ──────────────────────────── */
[hidden] { display: none !important; }

.fire-step--in-next {
  animation: fireStepInNext 0.35s var(--wa-ease) both;
}

.fire-step--in-back {
  animation: fireStepInBack 0.35s var(--wa-ease) both;
}

@keyframes fireStepInNext {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fireStepInBack {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Itemised breakdown — group headers + sub-lines ─────────── */
.fire-bd-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wa-text-muted);
  margin: 10px 0 2px;
}

.fire-bd-row.sub {
  padding-left: 12px;
  font-size: 12px;
  color: var(--wa-text-muted);
}

/* ── Mobile sticky result bar ───────────────────────────────── */
.fire-stickybar { display: none; }

.fire-stickybar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fire-stickybar-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wa-text-muted);
}

.fire-stickybar-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--wa-gold);
  font-family: var(--wa-font-display);
  line-height: 1.05;
}

.fire-stickybar-btn {
  background: var(--wa-btn-bg);
  color: var(--wa-btn-text);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .fire-stickybar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--wa-space-md);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 12px 16px;
    background: var(--wa-bg-card);
    border-top: 1px solid var(--wa-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }

  .fire-stickybar[hidden] { display: none !important; }
}
