/* ====================================
   QUIZ FENG SHUI - CSS KIOSKO OPTIMISÉ
   ==================================== */

.feng-shui-quiz-container {
  all: initial;
  display: block;
  width: 100%;
}

.feng-shui-quiz-container * {
  box-sizing: border-box;
}

/* Conteneur principal */
#feng-shui-quiz-root .fq-screen {
  min-height: auto;
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

#feng-shui-quiz-root .fq-box {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #fde68a;
}

/* Logo et header */
#feng-shui-quiz-root .fq-logo-section {
  text-align: center;
  margin-bottom: 2rem;
}

#feng-shui-quiz-root .fq-logo-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.15);
}

#feng-shui-quiz-root .fq-title-main {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  text-align: center;
}

#feng-shui-quiz-root .fq-subtitle-main {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  text-align: center;
}

/* Liste avantages */
#feng-shui-quiz-root .fq-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 0 2rem 0;
}

#feng-shui-quiz-root .fq-benefit-item {
  padding: 1rem 1.25rem;
  background: #fffbeb;
  border-radius: 8px;
  border-left: 4px solid #b45309;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

/* Boutons */
#feng-shui-quiz-root .fq-btn {
  width: 100%;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: inherit;
  margin-top: 1rem;
}

#feng-shui-quiz-root .fq-btn-primary {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.25);
}

#feng-shui-quiz-root .fq-btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35);
}

#feng-shui-quiz-root .fq-btn-primary:disabled {
  background: #d1d5db;
  cursor: not-allowed;
  opacity: 0.6;
}

#feng-shui-quiz-root .fq-footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 1.5rem 0 0 0;
}

/* Barre de progression */
#feng-shui-quiz-root .fq-progress-section {
  margin: 0 0 2.5rem 0;
}

#feng-shui-quiz-root .fq-progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: #78350f;
  margin: 0 0 0.75rem 0;
}

#feng-shui-quiz-root .fq-progress-bar {
  height: 8px;
  background: #fde68a;
  border-radius: 10px;
  overflow: hidden;
}

#feng-shui-quiz-root .fq-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #b45309 0%, #d97706 100%);
  transition: width 0.4s ease;
}

/* Questions */
#feng-shui-quiz-root .fq-question-box {
  margin: 0 0 1.5rem 0;
}

#feng-shui-quiz-root .fq-question-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

#feng-shui-quiz-root .fq-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#feng-shui-quiz-root .fq-option {
  padding: 1rem 1.25rem;
  border: 2px solid #fde68a;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  text-align: left;
  font-size: 0.95rem;
  color: #1f2937;
  display: block;
  width: 100%;
}

#feng-shui-quiz-root .fq-option:hover {
  border-color: #b45309;
  background: #fffbeb;
  transform: translateX(4px);
}

/* Pièces sélection */
#feng-shui-quiz-root .fq-rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 2rem 0;
}

#feng-shui-quiz-root .fq-room-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid #fde68a;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1f2937;
  width: 100%;
}

#feng-shui-quiz-root .fq-room-btn:hover {
  border-color: #b45309;
  background: #fffbeb;
}

#feng-shui-quiz-root .fq-room-btn.selected {
  border-color: #b45309;
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.1);
}

#feng-shui-quiz-root .fq-room-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

#feng-shui-quiz-root .fq-room-label {
  flex-grow: 1;
  color: #1f2937;
}

#feng-shui-quiz-root .fq-room-check {
  color: #b45309;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Email */
#feng-shui-quiz-root .fq-email-section {
  text-align: center;
  margin: 0 0 2rem 0;
}

#feng-shui-quiz-root .fq-email-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fed7aa 0%, #fde68a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 1.5rem;
}

#feng-shui-quiz-root .fq-email-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
}

#feng-shui-quiz-root .fq-email-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0 0 1.5rem 0;
}

#feng-shui-quiz-root .fq-input-field {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #fde68a;
  border-radius: 8px;
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  transition: all 0.2s ease;
  background: white;
  color: #1f2937;
}

#feng-shui-quiz-root .fq-input-field:focus {
  outline: none;
  border-color: #b45309;
  background: #fffbeb;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

/* Résultats */
#feng-shui-quiz-root .fq-score-card {
  background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 0 0 2.5rem 0;
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.2);
}

#feng-shui-quiz-root .fq-score-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
  margin: 0 0 0.75rem 0;
}

#feng-shui-quiz-root .fq-score-value {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 0.75rem 0;
}

#feng-shui-quiz-root .fq-score-detail {
  font-size: 0.95rem;
  opacity: 0.85;
}

#feng-shui-quiz-root .fq-recs-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 1.5rem 0;
}

#feng-shui-quiz-root .fq-recs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 0 2rem 0;
}

#feng-shui-quiz-root .fq-rec-card {
  border: 2px solid #fde68a;
  border-radius: 10px;
  padding: 1.5rem;
  background: #fffbeb;
}

#feng-shui-quiz-root .fq-rec-room {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
}

#feng-shui-quiz-root .fq-rec-advice {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

#feng-shui-quiz-root .fq-rec-products {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#feng-shui-quiz-root .fq-product-box {
  background: white;
  border-left: 4px solid #b45309;
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

#feng-shui-quiz-root .fq-product-title {
  font-weight: 700;
  color: #1f2937;
  display: block;
  margin: 0 0 0.25rem 0;
}

#feng-shui-quiz-root .fq-product-color {
  font-size: 0.85rem;
  color: #b45309;
}

/* Responsive */
@media (max-width: 768px) {
  #feng-shui-quiz-root .fq-box {
    padding: 1.75rem 1.5rem;
  }

  #feng-shui-quiz-root .fq-title-main {
    font-size: 1.5rem;
  }

  #feng-shui-quiz-root .fq-question-title {
    font-size: 1.25rem;
  }

  #feng-shui-quiz-root .fq-score-value {
    font-size: 2.5rem;
  }

  #feng-shui-quiz-root .fq-screen {
    padding: 1rem 0.5rem;
  }
}