/* ============================================================
   Ma Cave à Vin — Feuille de style principale
   Palette : bordeaux #6B1F2A | crème #F5EDD8 | or #C9A84C
   ============================================================ */

/* ----- Variables ----- */
:root {
  --bordeaux:       #6B1F2A;
  --bordeaux-fonce: #4A1018;
  --bordeaux-clair: #8B3040;
  --bordeaux-pale:  #F0DDE0;
  --or:             #C9A84C;
  --or-clair:       #E8D08A;
  --or-pale:        #FAF3DC;
  --creme:          #F5EDD8;
  --creme-fonce:    #EAE0C8;
  --blanc:          #FFFFFF;
  --gris-clair:     #F8F4EF;
  --gris:           #9E8C7A;
  --gris-fonce:     #5C4E3E;
  --texte:          #2C1F14;
  --ombre:          rgba(107,31,42,.15);
  --ombre-forte:    rgba(107,31,42,.3);
  --rayon:          8px;
  --rayon-lg:       16px;
  --transition:     .2s ease;
  --police:         'Georgia', 'Times New Roman', serif;
  --police-ui:      'Segoe UI', system-ui, sans-serif;
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--police-ui);
  background: var(--creme);
  color: var(--texte);
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--police);
  color: var(--bordeaux-fonce);
  line-height: 1.3;
}

a { color: var(--bordeaux); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--or); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */

.app-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ----- Barre latérale ----- */
.sidebar {
  width: 240px;
  background: var(--bordeaux-fonce);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.sidebar-logo .logo-icon { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.sidebar-logo h2 {
  font-family: var(--police);
  color: var(--creme);
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: .5px;
}
.sidebar-logo span.version {
  font-size: .7rem;
  color: var(--gris);
  display: block;
  margin-top: 2px;
}

.sidebar-nav { flex: 1; padding: 16px 0; overflow-y: auto; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(245,237,216,.8);
  font-size: .9rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.actif {
  background: rgba(255,255,255,.08);
  color: var(--creme);
  border-left-color: var(--or);
}
.sidebar-nav a .nav-icone { font-size: 1.1rem; width: 20px; text-align: center; }

.sidebar-nav .nav-section {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.3);
  padding: 20px 20px 6px;
}

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.sidebar-footer a { color: rgba(255,255,255,.4); }
.sidebar-footer a:hover { color: var(--or); }

/* ----- Contenu principal ----- */
.main-content {
  margin-left: 240px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: var(--blanc);
  border-bottom: 1px solid var(--creme-fonce);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px var(--ombre);
}

.topbar-titre {
  font-family: var(--police);
  font-size: 1.25rem;
  color: var(--bordeaux-fonce);
}

.topbar-actions { display: flex; align-items: center; gap: 12px; }

.page-body { padding: 28px; flex: 1; }

/* ============================================================
   COMPOSANTS
   ============================================================ */

/* ----- Boutons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--rayon);
  font-size: .9rem;
  font-family: var(--police-ui);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
}
.btn:focus-visible { outline: 3px solid var(--or); outline-offset: 2px; }

.btn-primaire {
  background: var(--bordeaux);
  color: var(--creme);
}
.btn-primaire:hover { background: var(--bordeaux-fonce); color: var(--creme); }

.btn-or {
  background: var(--or);
  color: var(--bordeaux-fonce);
}
.btn-or:hover { background: var(--or-clair); }

.btn-secondaire {
  background: var(--creme-fonce);
  color: var(--bordeaux-fonce);
  border: 1px solid var(--creme-fonce);
}
.btn-secondaire:hover { background: var(--creme); border-color: var(--bordeaux-pale); }

.btn-fantome {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}
.btn-fantome:hover { background: var(--bordeaux-pale); }

.btn-danger {
  background: #c0392b;
  color: #fff;
}
.btn-danger:hover { background: #a93226; }

.btn-plein { width: 100%; justify-content: center; }
.btn-sm { padding: 6px 12px; font-size: .8rem; }
.btn-lg { padding: 12px 24px; font-size: 1rem; }

/* ----- Cartes ----- */
.carte {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  box-shadow: 0 2px 12px var(--ombre);
  padding: 24px;
  margin-bottom: 20px;
}

.carte-titre {
  font-family: var(--police);
  font-size: 1.1rem;
  color: var(--bordeaux-fonce);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--creme-fonce);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ----- Grille stat ----- */
.stats-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-carte {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 20px 24px;
  box-shadow: 0 2px 12px var(--ombre);
  border-left: 4px solid var(--or);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-carte.bordeaux { border-left-color: var(--bordeaux); }
.stat-carte.vert     { border-left-color: #27ae60; }
.stat-carte.orange   { border-left-color: #e67e22; }

.stat-label {
  font-size: .8rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.stat-valeur {
  font-family: var(--police);
  font-size: 1.8rem;
  color: var(--bordeaux-fonce);
  font-weight: bold;
}
.stat-sous { font-size: .8rem; color: var(--gris); }
.stat-positif { color: #27ae60; font-weight: 600; }
.stat-negatif { color: #c0392b; font-weight: 600; }

/* ----- Alertes ----- */
.alerte {
  padding: 12px 16px;
  border-radius: var(--rayon);
  margin-bottom: 16px;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alerte-erreur  { background: #fdeaea; border-left: 4px solid #c0392b; color: #7b1c14; }
.alerte-succes  { background: #eafaf1; border-left: 4px solid #27ae60; color: #1a5c34; }
.alerte-info    { background: var(--or-pale); border-left: 4px solid var(--or); color: var(--bordeaux-fonce); }
.alerte-bon-plan {
  background: linear-gradient(135deg, var(--or-pale), #fff9e6);
  border: 1px solid var(--or);
  border-radius: var(--rayon-lg);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(201,168,76,.2);
}
.alerte-bon-plan .bp-icone { font-size: 1.5rem; }
.alerte-bon-plan .bp-texte { flex: 1; }
.alerte-bon-plan .bp-titre { font-weight: 700; color: var(--bordeaux-fonce); }
.alerte-bon-plan .bp-detail { font-size: .85rem; color: var(--gris-fonce); }

/* ----- Bandeau bons plans ----- */
.bandeau-bons-plans {
  background: linear-gradient(90deg, var(--bordeaux-fonce), var(--bordeaux));
  color: var(--creme);
  padding: 10px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
}
.bandeau-bons-plans a { color: var(--or-clair); font-weight: 600; }

/* ----- Formulaires ----- */
.champ { margin-bottom: 16px; }
.champ label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bordeaux-fonce);
  margin-bottom: 6px;
}
.champ input,
.champ select,
.champ textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--creme-fonce);
  border-radius: var(--rayon);
  font-size: .9rem;
  font-family: var(--police-ui);
  background: var(--blanc);
  color: var(--texte);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.champ input:focus,
.champ select:focus,
.champ textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(107,31,42,.1);
}
.champ textarea { min-height: 100px; resize: vertical; }
.champ .aide { font-size: .78rem; color: var(--gris); margin-top: 4px; }

.grille-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.grille-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 20px; }

/* ----- Tags de type vin ----- */
.tag-type {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tag-rouge      { background: #f9e0e3; color: #6B1F2A; }
.tag-blanc      { background: #fdf8e0; color: #7a6b00; }
.tag-rose       { background: #fde8f0; color: #9c3060; }
.tag-champagne  { background: #fff9dc; color: #8a6800; border: 1px solid var(--or-clair); }
.tag-cremant    { background: #f0f8ff; color: #2c5f8a; }
.tag-mousseux   { background: #e8f5ff; color: #1a5c8a; }
.tag-liquoreux  { background: #fff0e0; color: #8a4400; }
.tag-porto      { background: #e8daf5; color: #5c1a8a; }
.tag-autre      { background: var(--gris-clair); color: var(--gris-fonce); }

/* ----- Statut apogée ----- */
.statut-apogee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.apogee-jeune    { background: #fdeaea; color: #c0392b; }
.apogee-ideal    { background: #eafaf1; color: #27ae60; }
.apogee-urgent   { background: #fef9e0; color: #d68910; }
.apogee-garde    { background: #eaf4fb; color: #2471a3; }

/* Barre de maturité */
.barre-maturite {
  width: 100%;
  height: 8px;
  background: var(--creme-fonce);
  border-radius: 4px;
  overflow: hidden;
  margin: 6px 0;
}
.barre-maturite-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .5s ease;
  background: linear-gradient(90deg, #2471a3, #27ae60, #d68910, #c0392b);
}

/* ----- Grille vins ----- */
.vins-grille {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.vin-carte {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  box-shadow: 0 2px 12px var(--ombre);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.vin-carte:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--ombre-forte);
}

.vin-carte-photo {
  height: 160px;
  background: linear-gradient(135deg, var(--creme-fonce), var(--bordeaux-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.vin-carte-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vin-carte-photo .quantite-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bordeaux);
  color: var(--creme);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: .8rem;
  font-weight: 700;
}

.vin-carte-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.vin-carte-domaine {
  font-family: var(--police);
  font-size: 1rem;
  color: var(--bordeaux-fonce);
  font-weight: bold;
}
.vin-carte-appellation { font-size: .82rem; color: var(--gris); }
.vin-carte-millesime   { font-size: .82rem; color: var(--gris-fonce); font-weight: 600; }
.vin-carte-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.vin-carte-prix { font-size: .85rem; color: var(--or); font-weight: 700; }

.vin-carte-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--gris-clair);
  display: flex;
  gap: 8px;
}

/* ----- Tableau inventaire ----- */
.tableau-inventaire {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.tableau-inventaire th {
  background: var(--bordeaux-fonce);
  color: var(--creme);
  padding: 11px 14px;
  text-align: left;
  font-family: var(--police-ui);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tableau-inventaire th a { color: var(--creme); }
.tableau-inventaire td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--creme-fonce);
  vertical-align: middle;
}
.tableau-inventaire tr:hover td { background: var(--gris-clair); }
.tableau-inventaire tr:last-child td { border-bottom: none; }

/* ----- Filtres ----- */
.filtres-barre {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--ombre);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.filtre-groupe { display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.filtre-groupe label { font-size: .78rem; font-weight: 600; color: var(--bordeaux-fonce); }
.filtre-groupe select,
.filtre-groupe input {
  padding: 7px 10px;
  border: 1.5px solid var(--creme-fonce);
  border-radius: var(--rayon);
  font-size: .85rem;
  background: var(--blanc);
  color: var(--texte);
}
.filtre-groupe select:focus,
.filtre-groupe input:focus {
  outline: none;
  border-color: var(--bordeaux);
}

.recherche-rapide {
  flex: 1;
  min-width: 200px;
}
.recherche-rapide input {
  padding: 9px 14px 9px 36px;
  border: 1.5px solid var(--creme-fonce);
  border-radius: 24px;
  font-size: .9rem;
  background: var(--gris-clair) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239E8C7A' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.156a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat 12px center;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.recherche-rapide input:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(107,31,42,.1);
}

/* ----- Vue switcher (grille/liste/tableau) ----- */
.vue-switcher { display: flex; gap: 4px; }
.vue-switcher button {
  padding: 7px 10px;
  border: 1.5px solid var(--creme-fonce);
  background: var(--blanc);
  border-radius: var(--rayon);
  cursor: pointer;
  font-size: .9rem;
  color: var(--gris);
  transition: all var(--transition);
}
.vue-switcher button.actif,
.vue-switcher button:hover {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}

/* ----- Graphiques (canvas) ----- */
.graphique-wrapper { position: relative; height: 220px; }

/* ----- Top 10 ----- */
.top-liste { list-style: none; }
.top-liste li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--creme-fonce);
}
.top-liste li:last-child { border-bottom: none; }
.top-rang {
  width: 26px;
  height: 26px;
  background: var(--bordeaux-pale);
  color: var(--bordeaux);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.top-rang.or { background: var(--or-pale); color: var(--or); border: 1px solid var(--or-clair); }
.top-vin-info { flex: 1; }
.top-vin-nom  { font-size: .9rem; font-weight: 600; color: var(--bordeaux-fonce); }
.top-vin-meta { font-size: .78rem; color: var(--gris); }
.top-prix     { font-weight: 700; color: var(--or); font-size: .9rem; }

/* ----- Fiche vin détaillée ----- */
.fiche-entete {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}
.fiche-photo {
  width: 160px;
  height: 220px;
  border-radius: var(--rayon-lg);
  object-fit: cover;
  background: linear-gradient(135deg, var(--creme-fonce), var(--bordeaux-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--ombre-forte);
}
.fiche-infos { flex: 1; }
.fiche-domaine {
  font-family: var(--police);
  font-size: 1.8rem;
  color: var(--bordeaux-fonce);
  margin-bottom: 4px;
}
.fiche-appellation { font-size: 1rem; color: var(--gris); margin-bottom: 12px; }
.fiche-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.fiche-meta-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fiche-meta-item .label { font-size: .75rem; color: var(--gris); text-transform: uppercase; letter-spacing: .5px; }
.fiche-meta-item .valeur { font-size: .95rem; font-weight: 600; color: var(--texte); }

/* ----- Lieux de stockage ----- */
.lieux-grille { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.lieu-carte {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 20px;
  box-shadow: 0 2px 12px var(--ombre);
  border-top: 4px solid var(--bordeaux);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lieu-nom { font-family: var(--police); font-size: 1.05rem; color: var(--bordeaux-fonce); }
.lieu-compteur {
  font-size: 2rem;
  font-weight: 700;
  color: var(--or);
  font-family: var(--police);
}
.lieu-detail { font-size: .82rem; color: var(--gris); }
.lieu-actions { display: flex; gap: 8px; margin-top: auto; }

/* ----- Page login ----- */
.page-login {
  background: linear-gradient(135deg, var(--bordeaux-fonce) 0%, var(--bordeaux) 60%, var(--bordeaux-clair) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-wrapper { width: 100%; max-width: 420px; padding: 20px; }
.login-box {
  background: var(--blanc);
  border-radius: var(--rayon-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo .logo-icon { font-size: 3rem; display: block; margin-bottom: 10px; }
.login-logo h1 { font-family: var(--police); color: var(--bordeaux-fonce); font-size: 1.8rem; margin-bottom: 4px; }
.login-subtitle { color: var(--gris); font-size: .9rem; }
.login-form { display: flex; flex-direction: column; gap: 4px; }
.login-hint {
  text-align: center;
  font-size: .78rem;
  color: var(--gris);
  margin-top: 20px;
  line-height: 1.5;
}
.login-hint code {
  background: var(--gris-clair);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--bordeaux);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 24px;
}
.pagination a, .pagination span {
  padding: 7px 12px;
  border-radius: var(--rayon);
  font-size: .85rem;
  border: 1px solid var(--creme-fonce);
  background: var(--blanc);
  color: var(--texte);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--bordeaux-pale); border-color: var(--bordeaux); }
.pagination .actif {
  background: var(--bordeaux);
  color: var(--creme);
  border-color: var(--bordeaux);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.ouverte { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .grille-2, .grille-3 { grid-template-columns: 1fr; }
  .fiche-entete { flex-direction: column; align-items: center; }
  .fiche-meta-grille { grid-template-columns: 1fr 1fr; }
  .filtres-barre { flex-direction: column; }
  .filtre-groupe { min-width: unset; }
  .page-body { padding: 16px; }
}

@media (max-width: 600px) {
  .stats-grille { grid-template-columns: 1fr 1fr; }
  .vins-grille  { grid-template-columns: 1fr 1fr; }
  .fiche-meta-grille { grid-template-columns: 1fr; }
  .topbar { padding: 0 16px; }
  .topbar-titre { font-size: 1rem; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.flex   { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-sm  { font-size: .85rem; }
.text-xs  { font-size: .75rem; }
.text-gris { color: var(--gris); }
.text-or   { color: var(--or); }
.text-bordeaux { color: var(--bordeaux); }
.fw-bold { font-weight: 700; }
.w-100  { width: 100%; }
.hidden { display: none !important; }
.separateur {
  border: none;
  border-top: 1px solid var(--creme-fonce);
  margin: 20px 0;
}
