/* ══════════════════════════════════════════════
   CGV — Genea Vostra
   Conditions Générales de Vente
   Réutilise le même style que mentions-legales.css
   ══════════════════════════════════════════════ */

/* ── BASE PAGE ── */
body {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── MAIN ── */
main {
  flex: 1;
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  width: 100%;
}

/* ── EN-TÊTE DE PAGE ── */
.page-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.page-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.page-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0 3rem;
}

/* ── TITRES H2 ── */
h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--blue-deep);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.3);
}
h2:first-of-type { margin-top: 0; }

/* ── CONTENU ÉDITORIAL ── */
p, ul, li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a5060;
}
p { margin-bottom: 1rem; }

ul { list-style: none; margin-bottom: 1rem; }
ul li { padding-left: 1.2rem; position: relative; margin-bottom: 0.3rem; }
ul li::before {
  content: '\2726';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.35rem;
}

a { color: var(--blue-mid); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }

strong { color: var(--blue-deep); font-weight: 600; }

/* ── BOUTON RETOUR (variante blue-deep) ── */
.btn-retour {
  background: var(--blue-deep);
  color: var(--white);
  margin-top: 2rem;
}
.btn-retour:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27,80,104,0.3);
}
