/* ===== Wizard Questions Panel ===== */
.wizard-panel {
  background: linear-gradient(120deg, rgba(35, 31, 27, 0.6) 90%, rgba(35, 32, 34, 0.6) 100%);
  border: 1px solid var(--primary);
  border-radius: 16px;
  padding: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.wizard-panel-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.3rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.wizard-panel-header:hover {
  background: rgba(199, 167, 125, 0.08);
}

.wizard-panel-icon {
  font-size: 1.3rem;
}

.wizard-panel-title {
  flex: 1;
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 500;
}

.wizard-toggle-icon {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.wizard-toggle-icon.open {
  transform: rotate(180deg);
}

.wizard-panel-content {
  padding: 0 1.3rem 1.3rem 1.3rem;
  display: none;
}

.wizard-panel-content.open {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.wizard-question {
  margin-bottom: 1.5rem;
}

.wizard-question:last-child {
  margin-bottom: 0;
}

.wizard-question-label {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.wizard-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}

.wizard-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: rgba(15, 13, 12, 0.7);
  border: 1px solid #3d2b1c;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.wizard-option:hover {
  border-color: var(--primary);
  background: rgba(199, 167, 125, 0.08);
}

.wizard-option input[type="radio"] {
  margin: 0;
  cursor: pointer;
}

.wizard-option input[type="radio"]:checked + span {
  color: var(--primary);
  font-weight: 500;
}

.wizard-option span {
  color: var(--primary-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .wizard-options {
    grid-template-columns: 1fr 1fr;
  }
  
  .wizard-panel-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .wizard-options {
    grid-template-columns: 1fr;
  }
}
