/* quiz.css – only styling quiz sections */

#stepper {
  position: sticky;
  top: 0;
  background: #5e870d;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
#stepper .step {
  opacity: 0.6;
  font-weight: 500;
}
#stepper .step.active {
  opacity: 1;
  font-weight: 700;
}

main {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

.screen { display: block; }
.hidden { display: none; }

label {
  display: block;
  margin: 20px 0 8px;
  font-weight: 600;
}
input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #5e870d;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
}
button:disabled {
  background: #b5c59e;
  cursor: not-allowed;
}

.qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}
.qty button {
  background: #3d550c;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

fieldset {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
}
legend { font-weight: 600; }

#estimateLine {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 12px;
}

#submitStatus {
  margin-top: 20px;
  font-weight: 500;
  color: #5e870d;
}