/* ═══════════════════════════════════════════════════════════════
   MERKERT SOCIAL MEDIA — DESIGN QUIZ (neue Version)
   ═══════════════════════════════════════════════════════════════ */

/* ── Overlay ─────────────────────────────────────────────────── */
#quiz-overlay {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 9000 !important;
  background: rgba(44,36,32,0.95) !important;
  backdrop-filter: blur(6px) !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 16px !important;
  overflow-y: auto !important;
}
#quiz-overlay.qz-open {
  display: flex !important;
}

/* ── Panel ──────────────────────────────────────────────────── */
.quiz-panel {
  background: #fff;
  border-radius: 24px;
  width: 96vw;
  max-width: 860px;
  min-height: 520px;
  max-height: 92vh;
  margin: 16px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  overflow: hidden;
}

/* ── Header ─────────────────────────────────────────────────── */
.quiz-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 40px 0;
  flex-shrink: 0;
}
.quiz-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.quiz-progress-wrap { flex: 1; }
.quiz-progress-bar {
  height: 6px;
  background: #F0EBE4;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}
.quiz-progress-fill {
  height: 100%;
  background: #C67B5A;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.quiz-step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
}
.quiz-skip-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B6F5A;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.quiz-skip-btn:hover { color: #2C2420; background: #F5F0E8; }

/* ── Content wrap (step + preview) ────────────────────────────── */
.quiz-content-wrap {
  display: flex;
  gap: 32px;
  padding: 32px 40px 20px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.quiz-step-area {
  flex: 1;
  min-width: 0;
  padding-bottom: 80px;
}
.quiz-preview-area {
  width: 188px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.quiz-preview-area.qz-hidden { display: none; }

/* ── Step animations ─────────────────────────────────────────── */
.qz-enter      { animation: qzIn  0.26s ease both; }
.qz-enter-back { animation: qzInB 0.26s ease both; }
@keyframes qzIn  { from { opacity:0; transform:translateX(28px); } to { opacity:1; transform:translateX(0); } }
@keyframes qzInB { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }

/* ── Typography helpers ──────────────────────────────────────── */
.qz-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C67B5A;
  margin-bottom: .4rem;
}
.qz-h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: #2C2420;
  margin-bottom: .35rem;
  line-height: 1.25;
}
.qz-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B6F5A;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

/* ── Footer nav ──────────────────────────────────────────────── */
.quiz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px 22px;
  border-top: 1px solid #E8DDD0;
  flex-shrink: 0;
  background: #fff;
  z-index: 10;
}
.quiz-btn-back {
  background: none;
  border: 1.5px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2C2420;
  cursor: pointer;
  transition: border-color 0.15s;
}
.quiz-btn-back:hover { border-color: #C67B5A; }
.quiz-btn-next {
  background: #C67B5A;
  border: none;
  border-radius: 10px;
  padding: 11px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}
.quiz-btn-next:hover  { background: #B56A49; }
.quiz-btn-next:disabled { opacity: .4; cursor: not-allowed; background: #C67B5A; }

/* ══════════════════════════════════════════════
   SCHRITT 1 — WILLKOMMEN
══════════════════════════════════════════════ */
.qz-welcome-wrap {
  text-align: center;
  padding: 4px 8px 8px;
}
.qz-welcome-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
.qz-welcome-h1 {
  font-family: Georgia, serif;
  font-size: 28px;
  color: #2C2420;
  margin-bottom: .5rem;
  line-height: 1.25;
}
.qz-welcome-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B6F5A;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.qz-welcome-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.qz-welcome-checks {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 12px;
  padding: 14px 20px;
  flex-shrink: 0;
}
.qz-welcome-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2C2420;
}
.qz-welcome-check-icon {
  width: 24px;
  height: 24px;
  background: #C67B5A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.qz-start-btn {
  background: #C67B5A;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
  white-space: nowrap;
}
.qz-start-btn:hover { background: #B56A49; transform: translateY(-1px); }

/* Schritt 2 — Rechtstexte unten, dezent */
.qz-rights-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #B0A090;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.qz-rights-divider::before,
.qz-rights-divider::after { content: ''; flex: 1; height: 1px; background: #E8DDD0; }
.qz-rights-subtle {
  background: transparent;
  border: 1px solid #EDE5DC;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.qz-check-small {
  font-size: 11px !important;
  color: #9A8878 !important;
  margin-bottom: 8px !important;
}
.qz-check-small span { color: #9A8878; }

/* ══════════════════════════════════════════════
   SCHRITT 3 (NEU) — 4 FAMILIEN-KARTEN
══════════════════════════════════════════════ */
.qz-s3-family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.qz-family-card {
  position: relative;
  border: 2px solid #E8DDD0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  padding: 0;
  text-align: left;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.qz-family-card:hover {
  border-color: #C67B5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198,123,90,0.18);
}
.qz-family-card.qz-family-sel {
  border-color: #C67B5A;
  box-shadow: 0 0 0 3px rgba(198,123,90,.2);
}
.qz-family-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #C67B5A;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
.qz-family-mock { line-height: 0; }
.qz-family-label { padding: 10px 12px 12px; }
.qz-family-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 2px;
}
.qz-family-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #8B6F5A;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .qz-s3-family-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ══════════════════════════════════════════════
   SCHRITT 3 — DESIGN-KARTEN (Grid)
══════════════════════════════════════════════ */
.qz-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.qz-style-name   { font-family: Georgia, serif; font-size: 13px; color: #2C2420; margin-bottom: 3px; line-height: 1.3; }
.qz-style-desc   { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B6F5A; }

/* ══════════════════════════════════════════════
   SCHRITT 3 — PALETTE & EIGENE FARBEN
══════════════════════════════════════════════ */
.qz-pal-groups {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 18px;
}
.qz-pal-group-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #B0A090;
  margin-bottom: 8px;
}
.qz-pal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.qz-pal-card {
  border: 2px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 8px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.qz-pal-card:hover { border-color: #C67B5A; }
.qz-pal-card.qz-selected { border-color: #C67B5A; background: #fff; }
.qz-pal-card.qz-selected::after {
  content: '✓';
  position: absolute;
  top: -8px; right: -8px;
  width: 18px; height: 18px;
  background: #C67B5A;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
}
.qz-pal-dots { display: flex; gap: 5px; justify-content: center; }
.qz-pal-dot  { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); flex-shrink: 0; }
.qz-pal-name { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #2C2420; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%; }
.qz-pal-rotate-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #8B6F5A;
  background: #F5F0E8;
  border: 1px solid #E0D8CE;
  border-radius: 5px;
  padding: 3px 8px;
  cursor: pointer;
  margin-top: 5px;
  white-space: nowrap;
  width: 100%;
}
.qz-pal-rotate-btn:hover { background: #EDE5DA; border-color: #C67B5A; color: #C67B5A; }
.qz-pal-sort-mini {
  margin-top: 6px;
  padding: 6px 4px 4px;
  background: #FDFAF6;
  border: 1px solid #E8DDD0;
  border-radius: 7px;
  width: 100%;
}
.qz-psm-row { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: nowrap; }
.qz-psm-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.qz-psm-circle { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); flex-shrink: 0; }
.qz-psm-lbl { font-family: 'DM Sans', sans-serif; font-size: 8px; color: #8B6F5A; white-space: nowrap; }
.qz-psm-swap {
  font-size: 11px;
  color: #C67B5A;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 1px;
  line-height: 1;
  flex-shrink: 0;
}

/* Palette color reorder */
.qz-pal-reorder {
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.qz-pal-reorder-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #8B6F5A;
  margin-bottom: 10px;
  font-weight: 600;
}
.qz-reorder-circles {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.qz-reorder-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.qz-reorder-arrows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.qz-reorder-arrow {
  background: none;
  border: 1px solid #E0D8CE;
  border-radius: 4px;
  width: 20px;
  height: 18px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B6F5A;
  transition: border-color .15s, background .15s;
  padding: 0;
}
.qz-reorder-arrow:hover { border-color: #C67B5A; background: #fdf3ef; color: #C67B5A; }
.qz-reorder-arrow-ph { display: inline-block; width: 20px; height: 18px; }
.qz-reorder-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.14);
}
.qz-reorder-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: #8B6F5A;
  text-align: center;
}

/* Divider */
.qz-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8B6F5A;
}
.qz-divider::before, .qz-divider::after { content: ''; flex: 1; height: 1px; background: #E0D8CE; }

/* Custom color pickers */
.qz-custom-colors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.qz-color-field   { display: flex; flex-direction: column; gap: 6px; }
.qz-color-label   { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B6F5A; }
.qz-color-picker-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #E0D8CE;
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.qz-color-picker-wrap:hover { border-color: #C67B5A; }
.qz-color-swatch  { width: 24px; height: 24px; border-radius: 5px; border: 1px solid rgba(0,0,0,.1); flex-shrink: 0; }
.qz-color-input-native { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.qz-color-hex {
  font-family: 'DM Sans', monospace;
  font-size: 12px;
  color: #2C2420;
  border: none;
  outline: none;
  width: 60px;
  background: transparent;
}
.qz-color-hex.qz-invalid { color: #E63946; }

/* ══════════════════════════════════════════════
   SCHRITT 4 — FORMAT
══════════════════════════════════════════════ */
.qz-format-list { display: flex; flex-direction: column; gap: 10px; }
.qz-format-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid #E0D8CE;
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
}
.qz-format-card:hover { border-color: #C67B5A; }
.qz-format-card.qz-selected { border-color: #C67B5A; background: #fdf3ef; }
.qz-format-emoji { font-size: 1.4rem; flex-shrink: 0; }
.qz-format-info  { flex: 1; }
.qz-format-name  { font-family: Georgia, serif; font-size: 14px; color: #2C2420; margin-bottom: 2px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qz-format-badge { font-family: 'DM Sans', sans-serif; font-size: 10px; background: #C67B5A; color: #fff; padding: 2px 8px; border-radius: 20px; font-weight: 700; }
.qz-format-dims  { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B6F5A; margin-bottom: 2px; }
.qz-format-desc  { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8B6F5A; }
.qz-format-check {
  width: 22px; height: 22px;
  border: 2px solid #E0D8CE;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  transition: all 0.15s;
}
.qz-format-card.qz-selected .qz-format-check { background: #C67B5A; border-color: #C67B5A; }

/* ══════════════════════════════════════════════
   SCHRITT 5 — FOTO
══════════════════════════════════════════════ */
.qz-rights-box {
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.qz-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C2420;
  cursor: pointer;
  margin-bottom: 10px;
  line-height: 1.5;
}
.qz-check-label input[type="checkbox"] {
  margin-top: 2px;
  width: 16px; height: 16px;
  accent-color: #C67B5A;
  flex-shrink: 0;
  cursor: pointer;
}
.qz-rights-error {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #C0392B;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: #fdf0f0;
  border-radius: 6px;
}
.qz-dsgvo-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #4A6741;
  background: #f0f5ee;
  padding: 8px 10px;
  border-radius: 6px;
  line-height: 1.5;
}
.qz-foto-hint {
  background: #EFF6FA;
  border-left: 3px solid #7BA7BC;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #1A3A4A;
  line-height: 1.5;
  margin-bottom: 14px;
}
.qz-dropzone {
  border: 2px dashed #E0D8CE;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: #FDFAF6;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 10px;
}
.qz-dropzone:hover   { border-color: #C67B5A; }
.qz-dropzone.qz-has-photo { border-color: #4A6741; background: #f0f5ee; }
.qz-dropzone-icon    { font-size: 2.2rem; margin-bottom: 8px; }
.qz-dropzone-title   { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600; color: #2C2420; margin-bottom: 4px; }
.qz-dropzone-sub     { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8B6F5A; line-height: 1.5; }
.qz-dropzone-preview { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #C67B5A; display: block; margin: 0 auto 8px; }

/* Crop */
.qz-crop-area        { display: none; margin-top: 12px; }
.qz-crop-area.qz-visible { display: block; }
.qz-crop-wrap        { position: relative; height: 220px; background: #111; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.qz-crop-wrap img    { display: block; max-width: 100%; }
.qz-schablone        { position: absolute; inset: 0; pointer-events: none; z-index: 10; }
.qz-crop-hint        { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B6F5A; text-align: center; margin-bottom: 8px; line-height: 1.4; }
.qz-quality-warn     { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B4513; background: #FFF3CD; border: 1px solid #F0C040; border-radius: 6px; padding: 6px 10px; margin-bottom: 8px; text-align: center; }
.qz-crop-controls    { display: flex; gap: 8px; justify-content: center; margin-bottom: 10px; flex-wrap: wrap; }
.qz-crop-ctrl        { background: #fff; border: 1.5px solid #E0D8CE; border-radius: 8px; padding: 7px 14px; font-family: 'DM Sans', sans-serif; font-size: 12px; color: #2C2420; cursor: pointer; }
.qz-crop-ctrl:hover  { border-color: #C67B5A; }
.qz-crop-confirm     { width: 100%; background: #C67B5A; border: none; border-radius: 10px; padding: 11px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff; cursor: pointer; margin-bottom: 8px; transition: background 0.15s; }
.qz-crop-confirm:hover { background: #B56A49; }
.qz-change-photo     { display: block; text-align: center; font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8B6F5A; cursor: pointer; background: none; border: none; width: 100%; text-decoration: underline; margin-bottom: 4px; }
.qz-skip-photo       { display: block; text-align: right; font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8B6F5A; background: none; border: none; cursor: pointer; text-decoration: underline; margin-top: 6px; }

/* ══════════════════════════════════════════════
   SCHRITT 6 — FERTIG
══════════════════════════════════════════════ */
.qz-checkmark-wrap { text-align: center; margin-bottom: 16px; }
.qz-checkmark-svg  { width: 56px; height: 56px; }
.qz-summary-box    { background: #FDFAF6; border: 1.5px solid #E8DDD0; border-radius: 12px; padding: 16px 20px; margin-bottom: 22px; }
.qz-summary-title  { font-family: 'DM Sans', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #8B6F5A; margin-bottom: 12px; font-weight: 600; }
.qz-summary-row    { display: flex; align-items: center; gap: 10px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: #2C2420; margin-bottom: 8px; }
.qz-summary-label  { color: #8B6F5A; min-width: 70px; }
.qz-summary-colors { display: flex; gap: 5px; }
.qz-summary-color  { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); }
.qz-finish-btns    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.qz-btn-adjust     { background: none; border: 1.5px solid #E0D8CE; border-radius: 10px; padding: 11px 22px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: #2C2420; cursor: pointer; transition: border-color 0.15s; }
.qz-btn-adjust:hover { border-color: #C67B5A; }
.qz-btn-finish     { background: #C67B5A; border: none; border-radius: 10px; padding: 12px 36px; font-family: Georgia, serif; font-size: 15px; color: #fff; cursor: pointer; font-weight: 600; transition: background 0.15s; }
.qz-btn-finish:hover { background: #B56A49; }

/* ══════════════════════════════════════════════
   LIVE-VORSCHAU (rechts auf Desktop)
══════════════════════════════════════════════ */
.qz-preview-label  { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #8B6F5A; text-align: center; margin-bottom: 8px; }
.qz-post-mock-wrap { display: flex; align-items: flex-start; justify-content: center; }
.qz-post-mock      { border-radius: 10px; overflow: hidden; transition: width .3s, height .3s; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SCHRITT 3 — DESIGN-KARTEN (neue Größe)
══════════════════════════════════════════════ */
.qz-style-card {
  border: 2px solid #E0D8CE;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, transform 0.1s, background 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qz-style-card:hover       { border-color: #C67B5A; transform: translateY(-1px); }
.qz-style-card.qz-selected { border-color: #C67B5A; background: #fdf3ef; }

/* ══════════════════════════════════════════════
   SCHRITT 4 — DESIGN-ERINNERUNG
══════════════════════════════════════════════ */
.qz-design-reminder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.qz-reminder-mini  { flex-shrink: 0; }
.qz-reminder-text  { font-family: 'DM Sans', sans-serif; font-size: 13px; color: #2C2420; }
.qz-reminder-label { font-size: 10px; color: #8B6F5A; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }

/* ══════════════════════════════════════════════
   SCHRITT 6 — VARIATIONEN + INSTAFEED
══════════════════════════════════════════════ */
.qz-section-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #2C2420;
  margin: 20px 0 12px;
  text-align: center;
}
.qz-variations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
.qz-variation-btn {
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  padding: 4px;
  cursor: pointer;
  transition: border-color .15s, transform .1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.qz-variation-btn:hover         { border-color: #C67B5A; transform: translateY(-1px); }
.qz-variation-btn.qz-variation-active { border-color: #C67B5A; background: #fdf3ef; }
.qz-variation-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #8B6F5A;
  text-align: center;
}
.qz-insta-frame {
  background: #fff;
  border: 1.5px solid #E0D8CE;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.qz-insta-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #F0EBE4;
}
.qz-insta-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8DDD0;
  overflow: hidden;
  flex-shrink: 0;
}
.qz-insta-username {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
}
.qz-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: #F0EBE4;
}
.qz-feed-cell { overflow: hidden; line-height: 0; aspect-ratio: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   SCHRITT 4 — LOGO-UPLOAD
══════════════════════════════════════════════ */
.qz-logo-upload-wrap { margin-top: 4px; }
.qz-logo-dropzone {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px dashed #E0D8CE;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  background: #FDFAF6;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C2420;
  transition: border-color 0.15s, background 0.15s;
}
.qz-logo-dropzone:hover { border-color: #C67B5A; background: #fdf3ef; }
.qz-logo-drop-icon { font-size: 1.3rem; flex-shrink: 0; }
.qz-logo-drop-hint { font-size: 11px; color: #8B6F5A; margin-left: auto; }
.qz-logo-result { background: #FDFAF6; border: 1.5px solid #E8DDD0; border-radius: 10px; padding: 14px 16px; }
.qz-logo-result-label { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; color: #4A6741; margin-bottom: 10px; }
.qz-logo-colors { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.qz-logo-color-item { display: flex; align-items: center; gap: 6px; font-family: 'DM Sans', monospace; font-size: 11px; color: #2C2420; }
.qz-logo-color-circle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(0,0,0,.1); flex-shrink: 0; }
.qz-logo-color-hex { font-size: 11px; color: #8B6F5A; }
.qz-logo-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.qz-logo-use-btn {
  background: #C67B5A; border: none; border-radius: 8px;
  padding: 8px 16px; font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 700; color: #fff; cursor: pointer; transition: background 0.15s;
}
.qz-logo-use-btn:hover { background: #B56A49; }
.qz-logo-other-btn {
  background: none; border: 1.5px solid #E0D8CE; border-radius: 8px;
  padding: 8px 14px; font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: #2C2420; cursor: pointer; transition: border-color 0.15s;
}
.qz-logo-other-btn:hover { border-color: #C67B5A; }

/* ══════════════════════════════════════════════
   SCHRITT 5 — FORMAT (kompakt + eingebettete Vorschau)
══════════════════════════════════════════════ */
.qz-format-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.qz-format-left  { flex: 0 0 40%; min-width: 0; }
.qz-format-right { flex: 1; min-width: 0; }
.qz-format-preview-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  text-align: center;
  margin-bottom: 8px;
}
.qz-format-preview-wrap {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border: 1.5px solid #E0D8CE;
  overflow: hidden;
}
.qz-frow-list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.qz-frow {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
}
.qz-frow:hover  { border-color: #C67B5A; }
.qz-frow.qz-frow-sel { border-color: #C67B5A; background: #fdf3ef; }
.qz-frow-radio  { width: 16px; height: 16px; border: 2px solid #C0B0A0; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.15s; }
.qz-frow.qz-frow-sel .qz-frow-radio { border-color: #C67B5A; }
.qz-frow-dot    { width: 8px; height: 8px; border-radius: 50%; background: transparent; transition: background 0.15s; }
.qz-frow-dot.qz-frow-dot-on { background: #C67B5A; }
.qz-frow-check  { width: 18px; height: 18px; border: 2px solid #C0B0A0; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 700; color: #fff; background: transparent; transition: all 0.15s; }
.qz-frow.qz-frow-sel .qz-frow-check { border-color: #C67B5A; background: #C67B5A; }
.qz-frow-hint   { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #aaa; margin-top: 10px; }
.qz-frow-emoji  { font-size: 1.1rem; flex-shrink: 0; }
.qz-frow-info   { flex: 1; min-width: 0; }
.qz-frow-name   { font-family: Georgia, serif; font-size: 13px; color: #2C2420; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.qz-frow-dims   { font-family: 'DM Sans', sans-serif; font-size: 10px; color: #8B6F5A; margin-top: 1px; }
.qz-frow-badge  { font-family: 'DM Sans', sans-serif; font-size: 9px; background: #C67B5A; color: #fff; padding: 1px 6px; border-radius: 20px; font-weight: 700; }

/* ══════════════════════════════════════════════
   SCHRITT 6 — NEU
══════════════════════════════════════════════ */
.qz-s6-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}
.qz-s6-chip {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #2C2420;
  background: #F5F0E8;
  border: 1px solid #E0D8CE;
  border-radius: 20px;
  padding: 4px 12px;
}
.qz-s6-heading {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: #2C2420;
  margin-bottom: 6px;
  text-align: center;
}
.qz-s6-subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8B6F5A;
  text-align: center;
  margin-bottom: 14px;
  line-height: 1.5;
}
.qz-var-thumb-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.qz-var-check {
  position: absolute;
  top: 4px; right: 4px;
  width: 20px; height: 20px;
  background: #C67B5A;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.qz-insta-profile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #F0EBE4;
}
.qz-insta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8DDD0;
  overflow: hidden;
  flex-shrink: 0;
}
.qz-insta-profile-info { flex: 1; min-width: 0; }
.qz-insta-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 2px;
}
.qz-insta-bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #4A4A4A;
  margin-bottom: 6px;
}
.qz-insta-stats {
  display: flex;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #4A4A4A;
  margin-bottom: 0;
}
.qz-insta-follow-btn {
  background: #1B3A6B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: default;
}
.qz-s6-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.qz-link-later {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8B6F5A;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.qz-link-later:hover { color: #2C2420; }

/* ══════════════════════════════════════════════
   SCHRITT 6 — SPLIT-SCREEN LAYOUT
══════════════════════════════════════════════ */
.quiz-panel--wide { max-width: 900px; }
.quiz-panel--big-preview .quiz-preview-area {
  width: auto;
  flex: 0 0 55%;
  min-height: 360px;
}
.quiz-panel--big-preview .quiz-step-area {
  flex: 0 0 42%;
  min-width: 0;
}
.qz-s6-split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.qz-s6-left {
  flex: 0 0 45%;
  min-width: 0;
}
.qz-s6-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.qz-s6-right .qz-insta-frame {
  max-width: 320px;
  width: 100%;
  margin-bottom: 14px;
}
.qz-feed-thumb {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Schritt 5 — Format info label */
.qz-format-preview-info {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  text-align: center;
  margin-top: 8px;
}

.qz-frow-layout-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #aaa;
  background: #F5F0E8;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .quiz-header        { padding: 18px 24px 0; gap: 10px; }
  .quiz-logo          { width: 30px; height: 30px; }
  .quiz-content-wrap  { flex-direction: column-reverse; padding: 20px 24px 16px; gap: 16px; }
  .quiz-preview-area  { width: 100%; flex-direction: row; align-items: center; gap: 14px; }
  .quiz-preview-area.qz-hidden { display: none; }
  .qz-post-mock-wrap  { transform: scale(0.7); transform-origin: top center; }
  .quiz-footer        { padding: 12px 24px 18px; }
  .qz-style-grid      { grid-template-columns: 1fr 1fr; gap: 8px; }
  .qz-style-card      { padding: 12px; }
  .qz-style-name      { font-size: 13px; }
  .qz-pal-grid        { grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .qz-pal-groups      { gap: 16px; }
  .qz-custom-colors   { grid-template-columns: 1fr; gap: 8px; }
  .qz-h2              { font-size: 1.2rem; }
  .qz-welcome-h1      { font-size: 22px; }
  .qz-welcome-bottom  { flex-direction: column; gap: 12px; }
  .quiz-panel         { border-radius: 16px; max-height: 95vh; min-height: 0; }
  .qz-format-layout   { flex-direction: column; gap: 16px; }
  .qz-format-left     { flex: none; width: 100%; }
  .qz-format-preview-wrap { height: 220px; }
  .qz-logo-drop-hint  { display: none; }
  .qz-s6-split        { flex-direction: column; }
  .qz-s6-left, .qz-s6-right { flex: none; width: 100%; }
}

/* ── Schritt 1B — Erfahrungs-Fragen ──────────────────────────── */
.qz-xq-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 10px;
}
.qz-xq-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.qz-xq-card {
  background: white;
  border: 1.5px solid #E8DDD0;
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.qz-xq-card:hover  { border-color: #C67B5A; background: #fdf9f6; }
.qz-xq-card.qz-xq-sel { border-color: #C67B5A; background: #fdf3ef; }
.qz-xq-emoji { font-size: 20px; flex-shrink: 0; }
.qz-xq-name  { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: #2C2420; }
.qz-xq-sub   { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #888; margin-top: 2px; }
.qz-xq-plattformen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qz-plt-btn {
  background: white;
  border: 1.5px solid #E8DDD0;
  border-radius: 20px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #2C2420;
  transition: border-color .15s, background .15s, color .15s;
}
.qz-plt-btn:hover    { border-color: #C67B5A; background: #fdf9f6; }
.qz-plt-btn.qz-plt-sel { border-color: #C67B5A; background: #C67B5A; color: white; }
.qz-s1b-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.qz-s1b-back {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
  padding: 8px 0;
}

/* ══════════════════════════════════════════════
   SCHRITT 3 — WELT-AUSWAHL
══════════════════════════════════════════════ */
.qz-world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.qz-world-card {
  background: none;
  border: 2px solid #E8DDD0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.12s, box-shadow 0.15s;
  text-align: left;
  padding: 0;
}
.qz-world-card:hover {
  border-color: #C67B5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(198,123,90,0.18);
}
.qz-world-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #F5F0E8;
}
.qz-world-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.qz-world-card:hover .qz-world-img { transform: scale(1.03); }
.qz-world-label {
  padding: 10px 12px 11px;
}
.qz-world-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 2px;
}
.qz-world-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
}

/* ── Layout-Picker (Split) ────────────────────── */
.qz-s3-split {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.qz-s3-left {
  flex: 0 0 48%;
  min-width: 0;
}
.qz-s3-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 0;
}
.qz-s3-back-world {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8B6F5A;
  cursor: pointer;
  padding: 0 0 8px;
  display: block;
  text-decoration: underline;
}
.qz-s3-back-world:hover { color: #C67B5A; }
.qz-s3-world-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 2px;
}
.qz-s3-world-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  margin-bottom: 10px;
}
.qz-layout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}
.qz-layout-card {
  background: none;
  border: 2px solid #E8DDD0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.12s, box-shadow 0.12s;
  text-align: center;
}
.qz-layout-card:hover { border-color: #C67B5A; }
.qz-layout-sel { border-color: #C67B5A !important; box-shadow: 0 0 0 2px rgba(198,123,90,0.3); }
.qz-layout-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #F5F0E8;
}
.qz-layout-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.qz-layout-check {
  position: absolute;
  top: 4px;
  right: 5px;
  background: #C67B5A;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.qz-layout-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: #8B6F5A;
  padding: 3px 2px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qz-s3-preview-wrap {
  background: #F5F0E8;
  border-radius: 10px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qz-s3-preview-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  transition: opacity 0.2s;
}
.qz-s3-preview-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #A09080;
  padding: 24px;
  text-align: center;
}

/* ── Format-Tabs ──────────────────────────────── */
.qz-fmt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.qz-fmt-tab {
  background: #F5F0E8;
  border: 1.5px solid #E0D8CE;
  border-radius: 20px;
  padding: 5px 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #5C4A3A;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
  white-space: nowrap;
}
.qz-fmt-tab:hover { border-color: #C67B5A; color: #C67B5A; }
.qz-fmt-tab-sel {
  background: #C67B5A !important;
  border-color: #C67B5A !important;
  color: #fff !important;
}

/* ── Farbwechsel-Swatches ─────────────────────── */
.qz-farbwechsel {
  border-top: 1px solid #F0EBE4;
  padding-top: 8px;
}
.qz-fw-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #5C4A3A;
  margin-bottom: 6px;
}
.qz-fw-swatches { display: flex; gap: 7px; flex-wrap: wrap; }
.qz-fw-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
  outline: none;
  flex-shrink: 0;
}
.qz-fw-swatch:hover { transform: scale(1.18); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.qz-fw-swatch-sel { border-color: #2C2420 !important; transform: scale(1.12); box-shadow: 0 0 0 2px rgba(44,36,32,0.25); }
.qz-fw-swatch-disabled { background: #E0D8CE !important; cursor: not-allowed; opacity: 0.45; }
.qz-fw-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: #A09080;
  margin-top: 5px;
  font-style: italic;
}
.qz-fw-none {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #A09080;
  font-style: italic;
}

/* ── Name-Toggle ──────────────────────────────── */
.qz-name-toggle-wrap { margin-top: 6px; }
.qz-name-toggle-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #2C2420;
  cursor: pointer;
  user-select: none;
}
.qz-name-opt { color: #A09080; font-size: 11px; }
.qz-name-fields {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qz-name-input,
.qz-role-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  border: 1.5px solid #E0D8CE;
  border-radius: 8px;
  padding: 7px 10px;
  background: #fff;
  color: #2C2420;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.qz-name-input:focus,
.qz-role-select:focus { border-color: #C67B5A; }

/* ── Responsive Step 3 ───────────────────────── */
@media (max-width: 600px) {
  .qz-world-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .qz-s3-split { flex-direction: column; }
  .qz-s3-right { position: static; }
  .qz-layout-grid { grid-template-columns: repeat(4, 1fr); }
}
.qz-s1b-back:hover { color: #2C2420; }

/* ══════════════════════════════════════════════
   SCHRITT 2 — PROFIL EINRICHTEN
══════════════════════════════════════════════ */
.qz-s2-split {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.qz-s2-left  { flex: 1; min-width: 0; }
.qz-s2-right {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.qz-s2-preview-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.qz-s2-preview-card {
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 16px;
  padding: 22px 14px 16px;
  text-align: center;
  width: 100%;
}
.qz-s2-preview-photo {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #E8DDD0;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 3px solid #C67B5A;
}
.qz-s2-preview-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 4px;
  word-break: break-word;
}
.qz-s2-preview-beruf {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  word-break: break-word;
}
.qz-form-field { margin-bottom: 16px; }
.qz-form-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #5C4A3A;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.qz-text-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  border: 1.5px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 13px;
  background: #fff;
  color: #2C2420;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.qz-text-input:focus { border-color: #C67B5A; }
.qz-beruf-radios {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.qz-beruf-radio {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C2420;
  cursor: pointer;
  padding: 8px 12px;
  border: 1.5px solid #E0D8CE;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.12s, background 0.12s;
}
.qz-beruf-radio:has(input:checked) { border-color: #C67B5A; background: #fdf3ef; }
.qz-beruf-radio input[type="radio"] { accent-color: #C67B5A; flex-shrink: 0; }
.qz-freitext-wrap { margin-top: 6px; }
.qz-freitext-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
  font-style: italic;
}
@media (max-width: 600px) {
  .qz-s2-split { flex-direction: column; }
  .qz-s2-right { position: static; flex: none; width: 100%; }
}

/* ══════════════════════════════════════════════
   SCHRITT 3 — DUAL FOTO-UPLOAD
══════════════════════════════════════════════ */
.qz-dual-zones {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.qz-upload-zone {
  flex: 1;
  border: 2px dashed #E0D8CE;
  border-radius: 14px;
  padding: 22px 14px 16px;
  text-align: center;
  background: #FDFAF6;
  position: relative;
  transition: border-color 0.15s;
}
.qz-upload-zone:hover { border-color: #C67B5A; }
.qz-upload-done { border-style: solid; border-color: #4A6741; background: #f0f5ee; }
.qz-upload-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.qz-badge-emp { background: #C67B5A; color: #fff; }
.qz-badge-opt { background: #E8DDD0; color: #5C4A3A; }
.qz-upload-icon { font-size: 2rem; margin-bottom: 6px; }
.qz-upload-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2C2420;
  margin-bottom: 4px;
}
.qz-upload-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  margin-bottom: 12px;
  line-height: 1.5;
}
.qz-upload-btn {
  background: #C67B5A;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.qz-upload-btn:hover { background: #B56A49; }
.qz-upload-change-btn {
  background: none;
  border: 1.5px solid #4A6741;
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #4A6741;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s;
}
.qz-upload-change-btn:hover { background: #f0f5ee; }
.qz-upload-photo-preview {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 8px;
  border: 3px solid #4A6741;
}
.qz-upload-photo-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qz-upload-done-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #4A6741;
  margin-bottom: 4px;
}
.qz-crop-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #5C4A3A;
  margin-bottom: 8px;
  text-align: center;
}
@media (max-width: 600px) {
  .qz-dual-zones { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   SCHRITT 4 — DESIGN + FARBE + FEED (SPLIT)
══════════════════════════════════════════════ */
.quiz-panel--wide { max-width: 1100px; width: 96vw; }
.qz-s4-split {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 24px;
  align-items: start;
}
.qz-s4-left { min-width: 0; }
.qz-s4-right {
  min-width: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
}
.qz-s4-back-world {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8B6F5A;
  cursor: pointer;
  padding: 0 0 8px;
  display: block;
  text-decoration: underline;
}
.qz-s4-back-world:hover { color: #C67B5A; }
.qz-s4-world-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C2420;
  margin-bottom: 2px;
}
.qz-s4-world-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  margin-bottom: 12px;
}
.qz-s4-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2C2420;
  margin: 14px 0 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.qz-s4-layout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 6px;
}
.qz-s4-pal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.qz-pal-compact {
  border: 2px solid #E0D8CE;
  border-radius: 8px;
  padding: 7px 5px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qz-pal-compact:hover { border-color: #C67B5A; }
.qz-pal-compact.qz-selected { border-color: #C67B5A; background: #fdf3ef; }
.qz-pal-compact .qz-pal-dots { gap: 3px; }
.qz-pal-compact .qz-pal-dot  { width: 12px; height: 12px; }
.qz-s4-fmt-btns { display: flex; flex-direction: column; gap: 6px; }
.qz-fmt-group-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #E0D8CE;
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  background: #fff;
  text-align: left;
  width: 100%;
  transition: border-color 0.12s, background 0.12s;
}
.qz-fmt-group-btn:hover { border-color: #C67B5A; }
.qz-fmt-group-sel { border-color: #C67B5A !important; background: #fdf3ef !important; }
.qz-fmt-emoji { font-size: 1.3rem; flex-shrink: 0; }
.qz-fmt-info  { flex: 1; min-width: 0; }
.qz-fmt-label { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: #2C2420; }
.qz-fmt-sub   { font-family: 'DM Sans', sans-serif; font-size: 10px; color: #8B6F5A; margin-top: 1px; }
.qz-s4-preview-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.qz-layout-photo-overlay {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #C67B5A;
  background: #E8DDD0;
}
.qz-layout-photo-overlay img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Feed-Zellen quadratisch */
.qz-feed-cell { aspect-ratio: 1; }
.qz-feed-thumb { height: 100%; }

/* Story-Mock */
.qz-story-mock {
  background: #1A1A1A;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-width: 200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.qz-story-bar {
  display: flex;
  gap: 3px;
  padding: 8px 8px 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
}
.qz-story-seg {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}
.qz-story-seg.active { background: rgba(255,255,255,0.9); }
.qz-story-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 8px 6px;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
}
.qz-story-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E8DDD0;
  overflow: hidden;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.qz-story-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.qz-story-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* LinkedIn-Mock */
.qz-li-mock {
  background: #fff;
  border: 1.5px solid #E0D8CE;
  border-radius: 10px;
  overflow: hidden;
}
.qz-li-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #F0EBE4;
}
.qz-li-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8DDD0;
  overflow: hidden;
  flex-shrink: 0;
}
.qz-li-info  { flex: 1; min-width: 0; }
.qz-li-name  { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: #1A1A1A; margin-bottom: 2px; }
.qz-li-beruf { font-family: 'DM Sans', sans-serif; font-size: 11px; color: #555; }
.qz-li-post-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #2C2420;
  padding: 10px 14px;
  line-height: 1.5;
}
.qz-li-img { overflow: hidden; background: #F5F0E8; }

@media (max-width: 640px) {
  .qz-s4-split { flex-direction: column; }
  .qz-s4-left  { flex: none; width: 100%; }
  .qz-s4-right { position: static; }
  .qz-s4-layout-grid { grid-template-columns: repeat(4, 1fr); }
  .quiz-panel--wide { max-width: 820px; }
}

/* ══════════════════════════════════════════════
   SCHRITT 4 (NEU) — DESIGN-VORSCHAU + PALETTEN
══════════════════════════════════════════════ */
.qz-s4-new-split {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.qz-s4-preview-col {
  flex: 0 0 42%;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.qz-s4-palettes-col {
  flex: 1;
  min-width: 0;
}
.qz-s4-preview-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.qz-s4p-groups {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qz-s4p-group-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #B0A090;
  margin-bottom: 8px;
}
.qz-s4p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.qz-s4p-card {
  border: 2px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 7px 8px;
  cursor: pointer;
  background: #fff;
  text-align: center;
  transition: border-color 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.qz-s4p-card:hover { border-color: #C67B5A; }
.qz-s4p-card.qz-s4p-sel { border-color: #C67B5A; background: #fdf9f6; }
.qz-s4p-check {
  position: absolute;
  top: -7px; right: -7px;
  width: 16px; height: 16px;
  background: #C67B5A; color: #fff;
  border-radius: 50%;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.qz-s4p-rotate-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: #8B6F5A;
  background: #F5F0E8;
  border: 1px solid #E0D8CE;
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  line-height: 1.5;
}
.qz-s4p-rotate-btn:hover { background: #EDE5DA; border-color: #C67B5A; color: #C67B5A; }
@media (max-width: 768px) {
  .qz-s4-new-split  { flex-direction: column; gap: 0; }
  .qz-s4-preview-col {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    padding: 8px 0 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,.09);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    width: 100%;
  }
  #qz-s4-big-preview {
    width: calc(38vh * 0.8);
    max-width: calc(100% - 32px);
  }
  .qz-s4-palettes-col { margin-top: 14px; }
  .qz-s4p-groups      { gap: 12px; }
  .qz-s4p-group-title { font-size: 9px; margin-bottom: 5px; }
  .qz-s4p-grid        { grid-template-columns: repeat(4, 1fr); gap: 5px; }
  .qz-s4p-card        { padding: 6px 4px 5px; gap: 3px; }
  .qz-pal-dots        { gap: 3px; }
  .qz-pal-dot         { width: 14px; height: 14px; }
  .qz-s4p-rotate-btn  { font-size: 8px; padding: 2px 4px; line-height: 1.4; }
}

/* ══════════════════════════════════════════════
   SCHRITT 5 — FERTIG
══════════════════════════════════════════════ */
.qz-s5-wrap { text-align: center; padding: 8px 0; }
.qz-s5-check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4A6741;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.qz-s5-headline {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: #2C2420;
  margin-bottom: .35rem;
  line-height: 1.25;
}
.qz-s5-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #8B6F5A;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}
.qz-s5-summary {
  background: #FDFAF6;
  border: 1.5px solid #E8DDD0;
  border-radius: 14px;
  padding: 6px 20px;
  margin-bottom: 22px;
  text-align: left;
}
.qz-s5-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EBE4;
}
.qz-s5-row:last-child { border-bottom: none; }
.qz-s5-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.qz-s5-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #2C2420;
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}
.qz-s5-pal-dots { display: flex; gap: 5px; margin-top: 5px; }
.qz-s5-pal-dot  { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.qz-s5-thumb {
  width: 36px;
  height: 45px;
  border-radius: 4px;
  object-fit: cover;
  vertical-align: middle;
  margin-left: 8px;
  border: 1.5px solid #E8DDD0;
}
.qz-s5-cta {
  background: #C67B5A;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.qz-s5-cta:hover { background: #B56A49; transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   SCHRITT 5 (NEU) — VARIANTEN + FEED
══════════════════════════════════════════════ */
.qz-s5-new-split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.qz-s5-variants-col {
  flex: 0 0 55%;
  min-width: 0;
}
.qz-s5-feed-col {
  flex: 1;
  min-width: 0;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.qz-s5-preview-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.qz-s5-fmt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.qz-s5-fmt-btn {
  background: #F5F0E8;
  border: 1.5px solid #E0D8CE;
  border-radius: 20px;
  padding: 5px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #5C4A3A;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
  white-space: nowrap;
}
.qz-s5-fmt-btn:hover { border-color: #C67B5A; color: #C67B5A; }
.qz-s5-fmt-btn.qz-s5-fmt-sel {
  background: #C67B5A;
  border-color: #C67B5A;
  color: #fff;
}
.qz-s5-variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.qz-s5-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #B0A090;
  text-align: center;
  padding: 8px 0;
  font-style: italic;
}
.qz-s5-finish-btn {
  width: 100%;
  background: #C67B5A;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}
.qz-s5-finish-btn:hover { background: #B56A49; transform: translateY(-1px); }
@media (max-width: 640px) {
  .qz-s5-new-split { flex-direction: column; }
  .qz-s5-variants-col { flex: none; width: 100%; }
  .qz-s5-feed-col { position: static; flex: none; width: 100%; }
  .qz-s5-variants-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════
   SCHRITT 5 — FARBPALETTE (Split-Layout)
══════════════════════════════════════════════ */
.qz-s5-palette-wrap { width: 100%; }
.qz-s5p-split {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.qz-s5p-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qz-s5p-right {
  flex: 0 0 280px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.qz-s5p-preview-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #8B6F5A;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.qz-s5p-no-design {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #B0A090;
  text-align: center;
  padding: 60px 20px;
  border: 2px dashed #E8DDD0;
  border-radius: 12px;
}
.qz-s5p-group {}
.qz-s5p-group-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #8B6F5A;
  margin-bottom: 8px;
}
.qz-s5p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.qz-s5p-card {
  border: 2px solid #E0D8CE;
  border-radius: 10px;
  padding: 10px 6px;
  cursor: pointer;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.qz-s5p-card:hover { border-color: #C67B5A; }
.qz-s5p-card.qz-s5p-sel { border-color: #C67B5A; background: #fdf3ef; }
.qz-s5p-dots { display: flex; gap: 4px; justify-content: center; }
.qz-s5p-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.qz-s5p-check {
  position: absolute;
  top: -7px; right: -7px;
  width: 16px; height: 16px;
  background: #C67B5A; color: #fff;
  border-radius: 50%;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
@media (max-width: 640px) {
  .qz-s5p-split { flex-direction: column; }
  .qz-s5p-right { position: static; flex: none; width: 100%; }
  .qz-s5p-grid { grid-template-columns: repeat(4, 1fr); }
}
