/* Style 1 - Design minimaliste avec couleurs bleues */

/* Variables de couleurs */
:root {
  --primary-blue: #2563eb;
  --secondary-blue: #3b82f6;
  --light-blue: #dbeafe;
  --dark-blue: #1e40af;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --background: #ffffff;
  --card-bg: #f8fafc;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  padding-top: 60px;
}

/* Barre de navigation des thèmes */
.theme-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 12px 0;
}

.theme-navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
}

.theme-link {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--text-dark);
}

.theme-link:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
}

.theme-link.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* Bannière noire */
.banniere-noire {
  background: var(--primary-blue);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

/* Header et bannière */
.page-header {
  position: relative;
  margin-bottom: 40px;
}

.banniere-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.banniere-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.banniere-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(37, 99, 235, 0.3), rgba(30, 64, 175, 0.3));
}

.banniere-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.sous-titre {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 400;
}

.banniere-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-text {
  font-size: 16px;
  font-weight: 500;
}

.cta-arrow {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Sections générales */
.section-bienvenue,
.section-avantages,
.section-fonctionnement {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.titre-section {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

/* Liste des étapes avec icônes */
.liste-etapes {
  background: linear-gradient(135deg, var(--light-blue), #f0f9ff);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.liste-etapes::before {
  content: '📋';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  opacity: 0.3;
}

.liste-etapes li {
  margin-bottom: 20px;
  color: var(--text-dark);
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.liste-etapes li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-blue);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.liste-etapes li:nth-child(1)::after {
  content: '🎯';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.liste-etapes li:nth-child(2)::after {
  content: '📚';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.liste-etapes li:nth-child(3)::after {
  content: '🤝';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.liste-etapes li:nth-child(4)::after {
  content: '🌟';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.liste-etapes li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15);
  border-left-color: var(--accent-green);
}

/* Avantages avec couleurs et design amélioré */
.avantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.avantage-item {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.avantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
}

.avantage-item:nth-child(1) {
  border-top-color: var(--primary-blue);
}

.avantage-item:nth-child(1)::before {
  background: var(--primary-blue);
}

.avantage-item:nth-child(2) {
  border-top-color: var(--accent-green);
}

.avantage-item:nth-child(2)::before {
  background: var(--accent-green);
}

.avantage-item:nth-child(3) {
  border-top-color: var(--accent-orange);
}

.avantage-item:nth-child(3)::before {
  background: var(--accent-orange);
}

.avantage-item:nth-child(4) {
  border-top-color: var(--accent-purple);
}

.avantage-item:nth-child(4)::before {
  background: var(--accent-purple);
}

.avantage-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-blue);
}

.avantage-item h3 {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
}

.avantage-item h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.avantage-item:nth-child(1) h3::before {
  background: var(--primary-blue);
}

.avantage-item:nth-child(2) h3::before {
  background: var(--accent-green);
}

.avantage-item:nth-child(3) h3::before {
  background: var(--accent-orange);
}

.avantage-item:nth-child(4) h3::before {
  background: var(--accent-purple);
}

.avantage-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  margin-left: 35px;
}

/* Sections familles */
.section-famille {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin: 12px;
  display: inline-block;
  width: calc(25% - 24px);
  vertical-align: top;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
}

.section-famille:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.titre-famille {
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.description-famille {
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

/* Carrousel */
.carrousel-container {
  background: var(--primary-blue);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.carrousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px;
  background: white;
  border-radius: 8px;
}

.slide {
  min-width: 300px;
  height: 400px;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.slide:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.slide.selected {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px var(--light-blue);
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slide h4 {
  padding: 16px;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
}

.slide-desc {
  padding: 0 16px 16px;
  color: var(--text-light);
}

/* Styles pour les éléments JavaScript */
.slide-select-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slide-select-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.slide-select-btn.selected {
  background: var(--primary-blue);
  color: white;
}

/* États des slides */
.slide.selected {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px var(--light-blue);
}

.slide.selected .slide-select-btn {
  background: var(--primary-blue);
  color: white;
}

/* Éléments masqués par défaut */
.modal-panier {
  display: none;
}

.section-demande {
  display: none;
}

.fils-narratifs-valider-button {
  display: none;
}

/* États d'affichage dynamiques */
.modal-panier.visible {
  display: flex;
}

.section-demande.visible {
  display: block;
}

.fils-narratifs-valider-button.visible {
  display: block;
}

/* Interactions des slides */
.slide {
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

/* Boutons de destination */
.bouton-destination {
  transition: all 0.3s ease;
  cursor: pointer;
}

.bouton-destination:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.bouton-destination.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Interactions des flèches */
.fleche-gauche,
.fleche-droite {
  cursor: pointer;
  transition: all 0.3s ease;
}

.fleche-gauche:hover,
.fleche-droite:hover {
  transform: scale(1.1);
  background: var(--dark-blue);
}

.fleche-gauche:disabled,
.fleche-droite:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

/* Interactions des modals */
.modal-overlay {
  cursor: pointer;
}

.modal-content {
  cursor: default;
}

.modal-close {
  cursor: pointer;
}

.modal-selections-close {
  cursor: pointer;
}

.modal-selection-remove {
  cursor: pointer;
}

/* Interactions des paniers */
.modal-panier {
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-panier:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Interactions des sélections */
.modal-selections {
  cursor: default;
}

.modal-selection-item {
  cursor: default;
}

.modal-selection-item:hover {
  background: var(--light-blue);
}

/* Interactions des formulaires */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bouton-demande {
  cursor: pointer;
  transition: all 0.3s ease;
}

.bouton-demande:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Interactions des modals */
.modal-incontournable {
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-incontournable:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.modal-incontournable.selected {
  border-color: var(--primary-blue);
  background: var(--light-blue);
}

/* Interactions des fils narratifs */
.fil-narratif-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.fil-narratif-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.fil-narratif-card.selected {
  border-color: var(--primary-blue);
  background: var(--light-blue);
}

.fil-narratif-category {
  cursor: pointer;
  transition: all 0.3s ease;
}

.fil-narratif-category:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

/* Éléments manquants du JavaScript */
.highlights-list {
  width: 100%;
}

.carrousel-container {
  margin: 20px 0;
}

.carrousel {
  scroll-behavior: smooth;
}

/* États des éléments dynamiques */
.slide.active {
  transform: scale(1.05);
  border-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Gestion des images de fond */
.slide[data-background-image] {
  background-image: var(--background-image);
}

/* Classes pour les éléments vides */
.modal-incontournable-empty {
  grid-column: 1 / -1;
  text-align: center;
}

.modal-empty {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 16px;
}

/* Animations et transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Classes d'animation */
.fade-in {
  animation: fadeIn 0.3s ease-out;
}

.slide-in {
  animation: slideIn 0.3s ease-out;
}

.scale-in {
  animation: scaleIn 0.3s ease-out;
}

/* Sections manquantes pour les éléments JavaScript */
.etape-duree {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 20px;
  border: 2px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.etape-duree-content {
  max-width: 1200px;
  margin: 0 auto;
}

.etape-duree h3 {
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.etapes-container {
  margin-top: 30px;
}

.etape-ligne-unique {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.etape-groupe {
  background: white;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.etape-groupe h4 {
  color: var(--primary-blue);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* Compteur de durée */
.compteur-duree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.fleche-gauche,
.fleche-droite {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: white;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.valeur-duree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.valeur-duree span:first-child {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.unite {
  font-size: 14px;
  color: var(--text-light);
}

/* Boutons de destination */
.boutons-destination-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.bouton-destination {
  padding: 15px 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: white;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

/* Sections de destinations */
.section-destinations {
  margin: 40px 0;
}

.sections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#incontournables-container {
  display: none;
}

#message-selection {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

#message-selection h3 {
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 15px;
}

/* Section fils narratifs */
.section-fils-narratifs {
  margin: 40px 0;
}

.fils-narratifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.fil-narratif-category {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.fil-narratif-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.fil-narratif-icon svg {
  width: 30px;
  height: 30px;
}

.fil-narratif-category-title {
  color: var(--text-dark);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.fil-narratif-category-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

/* Section demande */
.demande-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.demande-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-blue);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.demande-title {
  color: var(--primary-blue);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.demande-subtitle {
  color: var(--text-light);
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}

.demande-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light-blue);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.summary-icon {
  font-size: 24px;
}

.summary-text {
  color: var(--text-dark);
  font-size: 16px;
}

.summary-text strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Formulaire de demande */
.formulaire-demande {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.bouton-demande {
  width: 100%;
  padding: 20px;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.bouton-text {
  font-size: 18px;
}

.bouton-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

.bouton-arrow {
  font-size: 20px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.modal-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
}

/* Modal incontournables */
.modal-incontournables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-incontournable {
  background: white;
  border: 2px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.modal-incontournable img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.modal-incontournable .content {
  padding: 20px;
}

.modal-incontournable h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-incontournable p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

/* Panier flottant */
.modal-panier {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-blue);
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.panier-count {
  background: white;
  color: var(--primary-blue);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
}

.panier-text {
  font-weight: 500;
  font-size: 14px;
}

/* Liste des sélections */
.modal-selections {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 350px;
  max-height: 400px;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1400;
}

.modal-selections.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.modal-selections-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--light-blue);
}

.modal-selections-header h4 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
}

.modal-selections-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-selections-close:hover {
  background: var(--primary-blue);
  color: white;
}

.modal-selections-list {
  max-height: 300px;
  overflow-y: auto;
  padding: 20px;
}

.modal-selection-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--light-blue);
  border: 1px solid var(--border);
}

.modal-selection-item img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.modal-selection-item-content {
  flex: 1;
}

.modal-selection-item-content h5 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.modal-selection-item-content p {
  color: var(--text-light);
  font-size: 14px;
}

.modal-selection-remove {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-selection-remove:hover {
  background: #ef4444;
  color: white;
}

.modal-selections-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.modal-selections-empty h5 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.modal-selections-empty p {
  font-size: 14px;
}

/* Modal fils narratifs */
.sous-famille-section {
  margin-bottom: 30px;
}

.sous-famille-header {
  background: var(--light-blue);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.sous-famille-header h4 {
  color: var(--primary-blue);
  font-size: 18px;
  font-weight: 600;
}

.sous-famille-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.fil-narratif-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.fil-narratif-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background: var(--light-blue);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  color: var(--primary-blue);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.fil-narratif-card.selected .fil-narratif-check {
  opacity: 1;
  background: var(--primary-blue);
  color: white;
}

.fil-narratif-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
}

.fil-narratif-title {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
}

.fils-narratifs-valider-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  z-index: 1500;
  transition: all 0.3s ease;
}

.fils-narratifs-valider-button:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* Fils narratifs sélectionnés */
.fil-narratif-icon-selectionne {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.fil-narratif-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Boutons */
button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  background: var(--dark-blue);
}

button.active {
  background: var(--dark-blue);
}

/* Section Prix et Facturation */
.section-prix {
  background: linear-gradient(135deg, #f8fafc, #e0f2fe);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 20px;
  border: 2px solid var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.section-prix::before {
  content: '💰';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  opacity: 0.2;
}

.section-prix .titre-section {
  color: var(--primary-blue);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-prix .titre-section::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  border-radius: 2px;
}

.liste-prix {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.liste-prix li {
  background: white;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.liste-prix li:nth-child(1) {
  border-left-color: var(--primary-blue);
  background: linear-gradient(135deg, white, #f0f9ff);
}

.liste-prix li:nth-child(2) {
  border-left-color: var(--accent-green);
  background: linear-gradient(135deg, white, #f0fdf4);
}

.liste-prix li:nth-child(3) {
  border-left-color: var(--accent-orange);
  background: linear-gradient(135deg, white, #fffbeb);
  font-weight: 700;
  color: var(--accent-orange);
  text-align: center;
  font-size: 18px;
}

.liste-prix li:nth-child(4) {
  border-left-color: var(--accent-purple);
  background: linear-gradient(135deg, white, #faf5ff);
  margin-left: 30px;
}

.liste-prix li:nth-child(5) {
  border-left-color: var(--accent-pink);
  background: linear-gradient(135deg, white, #fdf2f8);
  margin-left: 30px;
}

.liste-prix li strong {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 18px;
}

.liste-prix li:nth-child(1) strong {
  color: var(--primary-blue);
}

.liste-prix li:nth-child(2) strong {
  color: var(--accent-green);
}

.liste-prix li:nth-child(4) strong {
  color: var(--accent-purple);
}

.liste-prix li:nth-child(5) strong {
  color: var(--accent-pink);
}

.liste-prix li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.liste-prix li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.liste-prix li:nth-child(1)::before {
  background: var(--primary-blue);
  box-shadow: 0 0 0 2px var(--primary-blue);
}

.liste-prix li:nth-child(2)::before {
  background: var(--accent-green);
  box-shadow: 0 0 0 2px var(--accent-green);
}

.liste-prix li:nth-child(3)::before {
  background: var(--accent-orange);
  box-shadow: 0 0 0 2px var(--accent-orange);
}

.liste-prix li:nth-child(4)::before {
  background: var(--accent-purple);
  box-shadow: 0 0 0 2px var(--accent-purple);
}

.liste-prix li:nth-child(5)::before {
  background: var(--accent-pink);
  box-shadow: 0 0 0 2px var(--accent-pink);
}

/* Responsive */
@media (max-width: 768px) {
  .section-famille {
    width: calc(50% - 24px);
  }
  
  .avantages-container {
    grid-template-columns: 1fr;
  }
  
  .theme-navbar-content {
    gap: 8px;
  }
  
  .theme-link {
    padding: 6px 12px;
    font-size: 12px;
  }
} 