.nabtaty-quiz {
  max-width: 600px;
  margin: 40px auto;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.quiz-step.active {
  display: block;
}

.quiz-step h2,
.quiz-step h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-step p {
  text-align: center;
  font-size: 1rem;
  color: #666;
}

.quiz-answer {
  display: block;
  width: 100%;
  background: #f0f0f0;
  color: #333;
  padding: 14px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: 0.2s;
  cursor: pointer;
  text-align: center;
}

.quiz-answer:hover {
  background: #dff0d8;
}

.quiz-next {
  display: inline-block;
  margin: 20px auto;
  padding: 12px 20px;
  background: #4CAF50;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.quiz-next:hover {
  background: #45a049;
}

#quiz-results {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.quiz-product {
  text-align: center;
  max-width: 160px;
}

.quiz-product img {
  width: 100%;
  border-radius: 8px;
}

.quiz-product p {
  margin-top: 10px;
  font-weight: 600;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
