/* ═══════════════════════════════════════════════════════════
 * OPEN-STALL WIZARD — seller onboarding multi-screen flow
 * Path: css/pages/open-stall.css
 * ═══════════════════════════════════════════════════════════ */

/* Local tokens not in tokens-baseline.css */
:root {
  --text-primary: #1C1C1A;
  --text-secondary: #5F5E5A;
  --text-tertiary: #9CA3A0;
  --border: #E8E8E4;
  --bg-page: #F4F5F1;
  --bg-card: #ffffff;
  --orange-subtle: #FFF1E1;
  --green-subtle: #EAF8EE;
  --red: #DC2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
 * TOPBAR
 * ═══════════════════════════════════════════════════════════ */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 52px;
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
}
.topbar-logo .bd   { color: var(--green); }
.topbar-logo .stall { color: var(--orange); }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-mobile-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--green-subtle);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}
.topbar-mobile-chip-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.topbar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s;
}
.topbar-close:hover { background: #F5F5F1; }


/* ═══════════════════════════════════════════════════════════
 * PROGRESS BAR
 * ═══════════════════════════════════════════════════════════ */
.progress {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
}

.progress-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 560px;
  margin: 0 auto;
}

.progress-step {
  height: 4px;
  flex: 1;
  background: var(--border);
  border-radius: 4px;
  transition: background 0.3s;
}
.progress-step.is-done   { background: var(--green); }
.progress-step.is-active { background: var(--green); opacity: 0.5; }

.progress-text {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-weight: 600;
  white-space: nowrap;
  margin-left: 6px;
}


/* ═══════════════════════════════════════════════════════════
 * MAIN + SCREEN
 * ═══════════════════════════════════════════════════════════ */
main {
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 16px 120px;
}

.screen { display: none; }
.screen.is-active { display: block; }

.screen-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
}
.screen-back:hover { color: var(--text-primary); }

.screen-slogan {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.screen-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.screen-lead {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════
 * MOBILE GATE
 * ═══════════════════════════════════════════════════════════ */
.mobile-gate-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.gate-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gate-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green-subtle);
  border-radius: 10px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.gate-status-icon.is-verified {
  background: #DCFCE7;
  color: #15803D;
}

.gate-status-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.gate-status-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════
 * CALLOUT
 * ═══════════════════════════════════════════════════════════ */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--green-subtle);
  border: 1px solid #B8E6C8;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.callout-info { background: #EFF6FF; border-color: #BFDBFE; }
.callout-icon {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.callout-info .callout-icon { color: #2563EB; }


/* ═══════════════════════════════════════════════════════════
 * CHOICE TILES (path picker)
 * ═══════════════════════════════════════════════════════════ */
.choice-tiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 20px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s;
}
.choice-tile:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.choice-tile:active { transform: translateY(0); }

.choice-tile-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-tertiary);
}

.choice-tile-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 2px;
}

.choice-tile-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.choice-tile-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
  padding-right: 24px;
}

.choice-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.choice-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #F5F5F1;
  color: var(--text-secondary);
}
.choice-tag-instant {
  background: var(--orange-subtle);
  color: var(--orange-dark);
}
.choice-tag-free {
  background: var(--green-subtle);
  color: var(--green-dark);
}

.tile-business:hover { border-color: var(--orange); }


/* ═══════════════════════════════════════════════════════════
 * STALL DETAILS FORM
 * ═══════════════════════════════════════════════════════════ */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.form-label span { color: var(--red); }

.form-input,
.form-select {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-primary);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20,154,73,0.1);
}
.form-input::placeholder { color: var(--text-tertiary); }

.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-tertiary);
  pointer-events: none;
}
.form-select-wrap .form-select { padding-right: 36px; }


/* ═══════════════════════════════════════════════════════════
 * PACKAGE PICKER
 * ═══════════════════════════════════════════════════════════ */
.pkg-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.pkg-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20,154,73,0.1);
}
.pkg-search-icon { color: var(--text-tertiary); flex-shrink: 0; }
.pkg-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-primary);
  background: transparent;
}
.pkg-search input::placeholder { color: var(--text-tertiary); }

.pkg-group { margin-bottom: 20px; }

.pkg-group-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.pkg-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pkg-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.pkg-card:hover { border-color: var(--green-light); background: #FAFFFE; }
.pkg-card.is-selected {
  border-color: var(--green);
  background: var(--green-subtle);
}

.pkg-card-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.pkg-card-icon-placeholder {
  width: 36px;
  height: 36px;
  background: #F5F5F1;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pkg-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}

.pkg-card-items {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.pkg-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.15s;
}
.pkg-card.is-selected .pkg-check {
  background: var(--green);
  border-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.pkg-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--text-tertiary);
  font-size: 0.9375rem;
}


/* ═══════════════════════════════════════════════════════════
 * COMMISSION HERO
 * ═══════════════════════════════════════════════════════════ */
.commission-hero {
  background: linear-gradient(135deg, var(--green-subtle) 0%, white 100%);
  border: 1.5px solid #B8E6C8;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.commission-hero-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.commission-hero-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text-primary);
}

.commission-hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}

.commission-compare {
  display: flex;
  align-items: center;
  gap: 12px;
}

.commission-compare-other,
.commission-compare-bd {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: white;
  border: 1px solid var(--border);
}
.commission-compare-bd { border-color: var(--green); }

.commission-compare-vs {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.commission-compare-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.commission-compare-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.commission-compare-bd .commission-compare-value { color: var(--green-dark); }

.commission-compare-sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════
 * E-COM RULES CARD
 * ═══════════════════════════════════════════════════════════ */
.ecom-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.ecom-card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin: 0 0 14px;
}

.ecom-rule {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ecom-rule:last-child { border-bottom: none; padding-bottom: 0; }

.ecom-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green-subtle);
  border-radius: 50%;
  color: var(--green-dark);
  flex-shrink: 0;
}

.ecom-rule-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
}

.ecom-rule-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}


/* ═══════════════════════════════════════════════════════════
 * PRICE CARD
 * ═══════════════════════════════════════════════════════════ */
.price-card {
  background: var(--green-subtle);
  border: 1.5px solid #B8E6C8;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.price-card-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0;
  line-height: 1;
}

.price-card-amount-suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: 6px;
}

.price-card-detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 6px 0 0;
}


/* ═══════════════════════════════════════════════════════════
 * STALL EXPLAINER (accordion)
 * ═══════════════════════════════════════════════════════════ */
.stall-explainer {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.stall-explainer summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}
.stall-explainer summary::-webkit-details-marker { display: none; }

.stall-explainer-icon { color: var(--green-dark); flex-shrink: 0; }

.stall-explainer-title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stall-explainer-toggle {
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.stall-explainer[open] .stall-explainer-toggle { transform: rotate(180deg); }

.stall-explainer-body {
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}

.stall-explainer-steps {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.stall-explainer-steps li { margin-bottom: 8px; }

.stall-explainer-tip {
  font-size: 0.875rem;
  background: var(--orange-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-secondary);
  margin: 12px 0 0;
}


/* ═══════════════════════════════════════════════════════════
 * TIER GRID (stall size cards)
 * ═══════════════════════════════════════════════════════════ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
@media (min-width: 480px) {
  .tier-grid { grid-template-columns: repeat(4, 1fr); }
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
  gap: 4px;
}
.tier-card:hover { border-color: var(--green-light); }
.tier-card.is-selected {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(20,154,73,0.1);
  background: var(--green-subtle);
}

.tier-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.tier-card-size {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.tier-card.is-selected .tier-card-size { color: var(--green-dark); }

.tier-card-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-dark);
}

.tier-card-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}


/* ═══════════════════════════════════════════════════════════
 * BILLING PERIOD OPTIONS
 * ═══════════════════════════════════════════════════════════ */
.billing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.billing-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 4px;
  transition: border-color 0.15s;
  text-align: center;
}
.billing-opt:hover { border-color: var(--green-light); }
.billing-opt.is-selected {
  border-color: var(--green);
  background: var(--green-subtle);
}

.billing-opt-period {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}
.billing-opt.is-selected .billing-opt-period { color: var(--green-dark); }

.billing-opt-save {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-dark);
  background: white;
  padding: 1px 7px;
  border-radius: 8px;
}
.billing-opt-save.empty { visibility: hidden; }


/* ═══════════════════════════════════════════════════════════
 * PRICE SUMMARY
 * ═══════════════════════════════════════════════════════════ */
.summary {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.summary-row.is-total {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 4px;
}

.summary-value { font-weight: 600; }
.summary-row.is-total .summary-value { color: var(--green-dark); font-size: 1.125rem; }


/* ═══════════════════════════════════════════════════════════
 * PAYMENT METHODS
 * ═══════════════════════════════════════════════════════════ */
.pay-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 400px) {
  .pay-methods { grid-template-columns: repeat(4, 1fr); }
}

.pay-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s;
  font-family: inherit;
}
.pay-method:hover { border-color: var(--green-light); }
.pay-method.is-selected {
  border-color: var(--green);
  background: var(--green-subtle);
}

.pay-method-logo {
  font-size: 0.875rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1.2;
}
.pay-method-logo.bkash  { background: #E2136E; color: white; }
.pay-method-logo.nagad  { background: #F05122; color: white; }
.pay-method-logo.rocket { background: #8B0099; color: white; }
.pay-method-logo.card   { font-size: 1.25rem; background: none; padding: 0; }

.pay-method-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pay-terms {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.5;
  margin: 16px 0 0;
}
.pay-terms a { color: var(--green-dark); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
 * TERMS CHECKBOX
 * ═══════════════════════════════════════════════════════════ */
.terms-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.terms-check-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
}
.terms-check-row a { color: var(--green-dark); font-weight: 600; }


/* ═══════════════════════════════════════════════════════════
 * SUCCESS SCREEN
 * ═══════════════════════════════════════════════════════════ */
.success-block {
  text-align: center;
  padding: 20px 0;
}

.success-slogan {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  color: white;
  margin-bottom: 18px;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.success-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 0 20px;
  line-height: 1.5;
}

.success-stall-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-stall-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
}
.success-stall-label { color: var(--text-tertiary); }
.success-stall-value { font-weight: 700; color: var(--text-primary); }

.under-review {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 20px;
}

.under-review-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.under-review-icon { color: #D97706; flex-shrink: 0; margin-top: 1px; }
.under-review-title { font-size: 1rem; font-weight: 700; color: #92400E; margin: 0; }
.under-review-desc { font-size: 0.875rem; color: #78350F; margin: 0 0 12px; line-height: 1.5; }

.under-review-helpline-label {
  font-size: 0.8125rem;
  color: #92400E;
  font-weight: 600;
  margin: 0 0 6px;
}
.under-review-helpline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  color: #92400E;
  text-decoration: none;
}
.under-review-helpline-cta:hover { background: #FFFBEB; }

.verify-cta {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 16px;
}
.verify-cta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.verify-cta-icon { color: var(--green-dark); }
.verify-cta-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0; }
.verify-cta-desc { font-size: 0.875rem; color: var(--text-secondary); margin: 0 0 10px; line-height: 1.5; }
.verify-cta-benefits {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 18px;
  margin: 0 0 14px;
  line-height: 1.6;
}
.verify-cta-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.verify-cta-primary {
  padding: 9px 16px;
  background: var(--green);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
}
.verify-cta-primary:hover { background: var(--green-dark); }
.verify-cta-skip {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.verify-cta-skip:hover { color: var(--text-secondary); }


/* ═══════════════════════════════════════════════════════════
 * HELP FAB
 * ═══════════════════════════════════════════════════════════ */
.help-fab {
  position: fixed;
  bottom: 88px;
  right: 16px;
  z-index: 200;
}
@media (min-width: 600px) { .help-fab { bottom: 24px; } }

.help-fab-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.15s;
}
.help-fab-trigger:hover { background: #F5F5F1; }

.help-fab-menu {
  display: none;
  position: absolute;
  bottom: 56px;
  right: 0;
  width: 280px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.help-fab-menu.is-open { display: block; }

.help-fab-header {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.help-fab-header strong { font-size: 0.9375rem; color: var(--text-primary); }
.help-fab-header p { font-size: 0.8125rem; color: var(--text-secondary); margin: 2px 0 0; }

.help-fab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-family: inherit;
  background: white;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: background 0.15s;
}
.help-fab-item:last-child { border-bottom: none; }
.help-fab-item:hover { background: #FAFAF8; }

.help-fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.help-fab-text strong { display: block; font-size: 0.875rem; color: var(--text-primary); }
.help-fab-text small  { font-size: 0.75rem; color: var(--text-tertiary); }

.help-fab-soon {
  display: inline-block;
  background: var(--orange-subtle);
  color: var(--orange-dark);
  font-size: 0.625rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
}


/* ═══════════════════════════════════════════════════════════
 * STICKY CTA
 * ═══════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 150;
}
.sticky-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
 * BUTTONS
 * ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s;
  letter-spacing: 0.01em;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover:not(:disabled) { background: var(--green-dark); }

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover:not(:disabled) { border-color: var(--green); background: var(--green-subtle); }

.btn-large {
  padding: 13px 24px;
  font-size: 1rem;
  width: 100%;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════════════════════════
 * SECTION LABEL
 * ═══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin: 24px 0 10px;
}

/* Flash error inside the wizard */
.wizard-error {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 14px;
}
