@charset "UTF-8";
/* CSS Document */



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.quiz-page-wrapper {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #111;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}

.quiz-intro {
  text-align: center;
  background: #f4f4f4;
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.quiz-intro h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.quiz-intro p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1rem;
}

.start-quiz-btn {
  background: #007BFF;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

.start-quiz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
}

.quiz-section {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  margin-bottom: 3rem;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.progress-container {
  margin-top: 1rem;
}

.progress-bar {
  background: #e0e0e0;
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: #007BFF;
  transition: width 0.3s ease;
}

.progress-text {
  text-align: right;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.4rem;
}

.question {
  display: none;
  margin-bottom: 2rem;
}

.question h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.question label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
}

.question input[type="radio"] {
  position: absolute;
  left: 0;
  top: 3px;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-next {
  background: #007BFF;
  color: white;
}

.btn-back {
  background: #ddd;
  color: #111;
}

.btn:hover {
  transform: translateY(-2px);
}

#result {
  margin-top: 2rem;
  text-align: center;
}

.result-header h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.result-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.shop-now-btn {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.shop-now-btn:hover {
  background: #333;
}

.discount-code {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: #444;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #007BFF;
  color: white;
}

.quiz-closing {
  text-align: center;
  background: #f4f4f4;
  padding: 3rem 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.quiz-closing h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.closing-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.closing-link {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.closing-link:hover {
  background: #dfefff;
  transform: translateY(-3px);
}
