.quiz-wrap { max-width: 640px; margin: 0 auto; }
.quiz-progress {
  height: 6px;
  background: rgba(20,35,27,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 36px;
}
.quiz-progress-bar { height: 100%; background: var(--flag-600); transition: width 0.3s ease; width: 25%; }

.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-size: 1.4rem; margin-bottom: 22px; }

.quiz-options { display: grid; gap: 12px; }
.quiz-option {
  display: block;
  padding: 16px 20px;
  border: 1.5px solid rgba(20,35,27,0.15);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quiz-option:hover { border-color: var(--green-800); }
.quiz-option.selected { border-color: var(--flag-600); background: var(--sand-100); }

.quiz-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.quiz-nav button:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-result { text-align: center; }
.quiz-result .kicker { font-weight: 700; color: var(--flag-600); margin-bottom: 6px; display: block; }
.quiz-result-card {
  display: flex;
  gap: 24px;
  align-items: center;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(20,35,27,0.1);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  text-decoration: none;
  color: var(--green-900);
}
.quiz-result-card img { width: 110px; height: 110px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.quiz-result-card h4 { margin: 0 0 4px; font-size: 1.1rem; }
.quiz-result-card p { margin: 0; color: rgba(20,35,27,0.6); font-size: 0.9rem; }
.quiz-result-card .price { font-family: var(--font-serif); color: var(--green-800); font-weight: 700; margin-top: 6px; }
.quiz-alt-label { font-size: 0.85rem; color: rgba(20,35,27,0.55); margin: 20px 0 8px; text-align: left; }
.quiz-restart { background: none; border: none; text-decoration: underline; color: rgba(20,35,27,0.55); cursor: pointer; font-size: 0.88rem; margin-top: 10px; }
