/* Brand Kit Wizard + Result styles */

/* ── Base ──────────────────────────────────────────────────────────────────── */
.wizard-body {
  margin: 0;
  padding: 0;
  background: #f7f8fa;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────────────────────────── */
.wiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wiz-logo {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.wiz-logo span { color: #6366f1; }

.wiz-btn-sm {
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  background: #eff2ff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.wiz-btn-sm:hover { background: #e0e7ff; }

/* ── Step indicators ─────────────────────────────────────────────────────────── */
.wiz-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.wiz-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.wiz-step.active {
  background: #6366f1;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(99,102,241,.2);
}
.wiz-step.done {
  background: #10b981;
  color: #fff;
}
.wiz-step-line {
  width: 24px;
  height: 2px;
  background: #e5e7eb;
  transition: background .2s;
}
.wiz-step-line.done { background: #10b981; }

/* ── Main layout ─────────────────────────────────────────────────────────────── */
.wiz-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px 60px;
}

/* ── Card ──────────────────────────────────────────────────────────────────── */
.wiz-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.06);
  padding: 40px 40px 32px;
  width: 100%;
  max-width: 540px;
}
.wiz-card-wide { max-width: 800px; }

.wiz-card-header {
  margin-bottom: 28px;
}
.wiz-step-label {
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 8px;
}
.wiz-card-header h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #0f172a;
}
.wiz-card-header p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ── Form ──────────────────────────────────────────────────────────────────── */
.wiz-form { display: flex; flex-direction: column; gap: 20px; }

.wiz-field { display: flex; flex-direction: column; gap: 6px; }
.wiz-field label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
.wiz-field input[type="text"] {
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
  color: #0f172a;
}
.wiz-field input[type="text"]:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.required { color: #ef4444; }
.optional { color: #94a3b8; font-weight: 400; font-size: 12px; }

.wiz-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 4px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.wiz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.wiz-btn-primary:hover { background: #4f46e5; }
.wiz-btn-primary:active { transform: scale(.98); }
.wiz-btn-primary:disabled { background: #c7d2fe; cursor: not-allowed; }
.wiz-btn-large { padding: 16px 36px; font-size: 16px; }

.wiz-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.wiz-btn-ghost:hover { background: #f8fafc; color: #374151; }

.wiz-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.wiz-footer {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: #94a3b8;
}
.wiz-footer a { color: #6366f1; text-decoration: none; }

/* ── Industry grid ──────────────────────────────────────────────────────────── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.industry-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
}
.industry-tile:hover {
  border-color: #6366f1;
  background: #f0f2ff;
  color: #4338ca;
}
.industry-tile.selected {
  border-color: #6366f1;
  background: #eff0ff;
  color: #4338ca;
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.industry-icon { font-size: 24px; }
.industry-label { line-height: 1.3; }

/* ── Personality sliders ────────────────────────────────────────────────────── */
.personality-form { gap: 8px; }

.quiz-row {
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}
.quiz-row:last-of-type { border-bottom: none; }

.quiz-poles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pole-left, .pole-right {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
}

.quiz-slider-wrap {
  position: relative;
  padding-bottom: 8px;
}

.quiz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #6366f1 calc(var(--thumb-pct, 50%)), #e5e7eb calc(var(--thumb-pct, 50%)));
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #6366f1;
  box-shadow: 0 1px 6px rgba(99,102,241,.3);
  cursor: grab;
  transition: transform .1s;
}
.quiz-slider::-webkit-slider-thumb:active { transform: scale(1.15); cursor: grabbing; }
.quiz-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #6366f1;
  cursor: grab;
}

.slider-dots {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: 4px;
}
.slider-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d1d5db;
  display: block;
}

.quiz-hint {
  font-size: 12px;
  color: #94a3b8;
  margin: 6px 0 0;
}

/* ── Preview sections ──────────────────────────────────────────────────────── */
.preview-main, .result-main { align-items: flex-start; }

.preview-sections, .result-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.preview-section, .result-section {
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}
.preview-section:first-child, .result-section:first-child { border-top: none; padding-top: 0; }

.preview-section h2, .result-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.preview-section-note, .result-section-note {
  font-size: 13px;
  color: #94a3b8;
  margin: -6px 0 16px;
}

/* ── Logos grid ─────────────────────────────────────────────────────────────── */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.logo-card {
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.logo-display svg { max-width: 100%; height: auto; }
.logo-display.large { min-height: 80px; }
.logo-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.logo-info strong { font-size: 13px; color: #374151; }
.logo-info span { font-size: 12px; color: #94a3b8; line-height: 1.4; }
.logo-dir-label { font-size: 12px; color: #6366f1; font-weight: 600; }

/* ── Refine button on logo cards ─────────────────────────────────────────── */
.refine-logo-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #4338ca;
  background: #eff2ff;
  border: 1px solid #c7d2fe;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  margin-top: 4px;
}
.refine-logo-btn:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

/* ── Refine hint on preview ─────────────────────────────────────────────── */
.preview-refine-hint {
  font-size: 13px;
  color: #6366f1;
  margin: 12px 0 0;
  padding: 10px 14px;
  background: #f5f3ff;
  border-radius: 8px;
  border-left: 3px solid #818cf8;
}

/* ── Palette ────────────────────────────────────────────────────────────────── */
.palette-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.palette-swatch {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 80px;
}
.swatch-box {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.swatch-box.large {
  width: 100px;
  height: 80px;
}
.swatch-info { display: flex; flex-direction: column; gap: 2px; }
.swatch-info strong { font-size: 12px; font-weight: 700; color: #374151; }
.swatch-info code {
  font-size: 12px;
  color: #6b7280;
  font-family: 'Fira Mono', 'Courier New', monospace;
  cursor: pointer;
}
.swatch-info code:hover { color: #6366f1; }
.hex-code { cursor: pointer; }
.swatch-label { font-size: 11px; color: #94a3b8; }

/* ── Fonts preview ──────────────────────────────────────────────────────────── */
.fonts-preview {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.font-sample { line-height: 1.4; }
.heading-sample {
  font-size: 32px;
  color: #0f172a;
}
.heading-sample.large { font-size: 40px; }
.tagline-sample {
  font-size: 16px;
  color: #6366f1;
  font-style: italic;
}
.body-sample {
  font-size: 15px;
  color: #64748b;
}
.fonts-names {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.fonts-names span {
  font-size: 13px;
  color: #374151;
}

.font-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.font-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  font-weight: 600;
}
.font-name { font-size: 15px; font-weight: 600; color: #0f172a; }
.font-link { font-size: 12px; color: #6366f1; text-decoration: none; }
.font-link:hover { text-decoration: underline; }

/* ── Voice quote ─────────────────────────────────────────────────────────────── */
.voice-quote {
  font-size: 18px;
  font-style: italic;
  color: #374151;
  border-left: 4px solid #6366f1;
  padding-left: 20px;
  margin: 0;
  line-height: 1.6;
}
.voice-quote.large { font-size: 22px; }

/* ── Preview actions ────────────────────────────────────────────────────────── */
.preview-actions { margin-top: 24px; padding-top: 24px; border-top: 1px solid #f1f5f9; }

/* ── Result page specific ────────────────────────────────────────────────────── */
.kit-result-body { background: #f7f8fa; }

.result-hero {
  width: 100%;
  padding: 60px 24px;
  display: flex;
  justify-content: center;
}
.result-hero-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  width: 100%;
}
.result-logo-display svg { width: 80px; height: 80px; }
.result-hero-text h1 { margin: 0 0 8px; font-size: 40px; }
.result-hero-text p { margin: 0; font-size: 18px; opacity: 0.85; }

.result-sections {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

/* Share bar */
.result-share-bar {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.share-url-wrap { display: flex; gap: 8px; }
.share-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-family: monospace;
  color: #374151;
  background: #f8fafc;
  outline: none;
}
.copy-btn {
  padding: 10px 18px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.copy-btn:hover { background: #4f46e5; }
.share-note { font-size: 12px; color: #94a3b8; }

.result-palette { flex-wrap: wrap; gap: 16px; }

.result-logo-card { align-items: center; }

.result-cta-block {
  background: #eff0ff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 8px 0 40px;
}
.result-cta-block h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #0f172a;
}
.result-cta-block p {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 20px;
}

.result-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 8px;
}
.result-footer a { color: #6366f1; text-decoration: none; }

/* ── Upgrade upsell block ───────────────────────────────────────────────────── */
.result-upgrade-block {
  margin: 0 0 24px;
  padding: 0 24px;
}
.result-upgrade-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #1a1040 0%, #0f172a 100%);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 14px;
  padding: 20px 24px;
}
.result-upgrade-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.result-upgrade-copy strong {
  font-size: 15px;
  font-weight: 700;
  color: #f0f6fc;
}
.result-upgrade-copy span {
  font-size: 13px;
  color: #8b949e;
  line-height: 1.5;
}
.result-upgrade-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #FF6B35;
  color: #fff;
  border-radius: 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}
.result-upgrade-cta:hover { background: #FF8050; transform: translateY(-1px); }

/* ── Social share buttons ────────────────────────────────────────────────────── */
.share-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.share-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
  color: #fff;
}
.share-social-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.share-twitter  { background: #000; }
.share-linkedin { background: #0a66c2; }

/* ── "Made with BrandSnap" CTA bar ─────────────────────────────────────────── */
.kit-made-with-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8fafc;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 20px;
  flex-wrap: wrap;
}
.kit-made-with-text {
  font-size: 14px;
  color: #64748b;
}
.kit-made-with-text strong { color: #0f172a; }
.kit-made-with-cta {
  font-size: 13px;
  font-weight: 700;
  color: #6366f1;
  background: #eff2ff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
.kit-made-with-cta:hover { background: #e0e7ff; }

/* ── Brand Book download bar ─────────────────────────────────────────────────── */
.brand-book-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbff 100%);
  border: 1.5px solid #c7d2fe;
  border-radius: 14px;
  padding: 16px 20px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.brand-book-bar-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: #4338ca;
}
.brand-book-bar-copy > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-book-bar-copy strong {
  font-size: 14px;
  font-weight: 700;
  color: #1e1b4b;
}
.brand-book-bar-copy span {
  font-size: 12px;
  color: #6366f1;
  line-height: 1.5;
}
.brand-book-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4f46e5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(79,70,229,0.25);
}
.brand-book-download-btn:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79,70,229,0.35);
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .wiz-card { padding: 28px 20px 24px; }
  .wiz-card-header h1 { font-size: 22px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .logos-grid { grid-template-columns: 1fr; }
  .palette-row { gap: 8px; }
  .swatch-box { width: 60px; height: 48px; }
  .result-hero-inner { flex-direction: column; text-align: center; }
  .result-hero-text h1 { font-size: 28px; }
  .heading-sample.large { font-size: 28px; }
  .voice-quote.large { font-size: 18px; }
  .wiz-steps { display: none; }
  .result-cta-block { padding: 28px 20px; }
  .domain-list { gap: 8px; }
  .domain-row { flex-wrap: wrap; gap: 6px; }
  .domain-fqdn { min-width: 0; flex: 1 1 100%; }
  .domain-register-btn { width: 100%; text-align: center; }
}

/* ── Domain check widget (wizard step 1) ─────────────────────────────────────── */
.domain-check-widget {
  min-height: 0;
  margin-top: 6px;
  font-size: 13px;
  transition: all .2s;
}

.dcw-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.dcw-checking {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #94a3b8;
}

.dcw-available {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.dcw-taken {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.dcw-badge {
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.dcw-badge-ok    { color: #166534; }
.dcw-badge-warn  { color: #92400e; }
.dcw-badge-taken { color: #991b1b; }

.dcw-domain {
  font-weight: 600;
  color: #374151;
  font-size: 13px;
}

.dcw-domain-taken {
  color: #94a3b8;
  text-decoration: line-through;
}

.dcw-text { color: #94a3b8; font-size: 12px; }

/* Spinner */
.dcw-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: dcw-spin .6s linear infinite;
  flex-shrink: 0;
}
.dcw-spinner-sm {
  width: 10px;
  height: 10px;
}
@keyframes dcw-spin { to { transform: rotate(360deg); } }

/* Suggestion sub-rows */
.dcw-suggestions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 4px;
}

.dcw-suggestion {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.dcw-checking-mini {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  color: #94a3b8;
}

.dcw-suggestion.dcw-available {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.dcw-suggestion.dcw-taken {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  opacity: .8;
}

/* ── Domain availability strip ───────────────────────────────────────────────── */
.domain-strip {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 20px;
}

.domain-strip-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.domain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.domain-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13.5px;
}

.domain-available {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.domain-taken {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  opacity: .75;
}

.domain-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.domain-taken .domain-badge {
  background: #f1f5f9;
  color: #94a3b8;
}

.domain-fqdn {
  font-weight: 600;
  color: #0f172a;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.domain-taken .domain-fqdn {
  color: #94a3b8;
  text-decoration: line-through;
}

.domain-price {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
}

.domain-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .15s, transform .1s;
}
.domain-register-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
