.brand-wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: #f1f5f9;
  overflow-y: auto;
  padding: 24px 16px 48px;
}
.brand-wizard-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.brand-wizard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.brand-wizard-sub {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.brand-wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
.brand-wizard-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}
.brand-wizard-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}
.brand-wizard-step .step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.brand-wizard-step.active .step-circle,
.brand-wizard-step.done .step-circle {
  background: #2563eb;
  color: #fff;
}
.brand-wizard-step .step-label {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}
.brand-wizard-step.active .step-label {
  color: #2563eb;
  font-weight: 600;
}
.brand-wizard-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  padding: 28px 32px;
}
.brand-wizard-card h5 {
  font-weight: 700;
  margin-bottom: 20px;
}
.domain-input-group .input-group-text {
  background: #f8fafc;
  color: #64748b;
  font-size: 0.9rem;
}
.brand-wizard-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
}
.brand-wizard-note {
  font-size: 0.8rem;
  color: #dc2626;
  margin-bottom: 8px;
}
.brand-info-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.brand-info-row span {
  color: #64748b;
}
.prompt-quota-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.prompt-quota-box strong {
  color: #1d4ed8;
}
.prompt-pill {
  display: inline-block;
  padding: 6px 14px;
  margin: 4px;
  border-radius: 20px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s;
}
.prompt-pill:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}
.prompt-pill.selected {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.platform-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.brand-wizard-loading {
  text-align: center;
  padding: 48px 24px;
  color: #2563eb;
}
.brand-wizard-loading p {
  margin-top: 16px;
  color: #64748b;
}
.brand-wizard-back {
  text-align: center;
  margin-top: 24px;
}
.init-progress {
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  overflow: hidden;
  margin: 24px 0 12px;
}
.init-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  transition: width 0.4s ease;
}
.brand-wizard-card-step2 {
  max-width: 100%;
}
.prompt-list-panel {
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  background: #fafbfc;
}
.prompt-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid #f1f5f9;
}
.prompt-list-row:last-child {
  border-bottom: none;
}
.prompt-list-row .form-check-input {
  flex-shrink: 0;
}
