/* ══════════════════════════════════════════════════════════
   SWYO.EU — Feuille de style principale
   Palette : navy #0F2044 / gold #C9A84C
   Mobile-first — system-ui
   ══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:        #0F2044;
  --navy-dark:   #091530;
  --navy-light:  #1a3566;
  --gold:        #C9A84C;
  --gold-light:  #e0c47a;
  --white:       #ffffff;
  --grey-50:     #f7f8fa;
  --grey-100:    #eef0f3;
  --grey-300:    #c8cdd6;
  --grey-500:    #7a8190;
  --grey-700:    #444c5a;
  --grey-900:    #1a1f2b;
  --red:         #d92b2b;
  --green:       #217a3c;
  --orange:      #c96b1c;

  --font:        system-ui, -apple-system, sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 2px 8px rgba(0,0,0,.12);
  --shadow-lg:   0 4px 20px rgba(0,0,0,.18);
  --transition:  .2s ease;

  --max-w:       1100px;
  --header-h:    56px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-900);
  background: var(--grey-50);
}
img { border: 0; display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utilitaires ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-swyo { color: var(--white); }
.logo-point { color: var(--gold); }
.logo-eu    { color: var(--gold); }

/* Search */
.search-form {
  flex: 1;
  display: flex;
  min-width: 0;
}
.search-input {
  flex: 1;
  padding: 7px 12px;
  border: 1px solid var(--navy-light);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--navy-light);
  color: var(--white);
  font-size: 14px;
  min-width: 0;
}
.search-input::placeholder { color: var(--grey-300); }
.search-input:focus { outline: none; border-color: var(--gold); background: var(--navy-dark); }
.search-btn {
  padding: 7px 13px;
  background: var(--gold);
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--navy);
  font-size: 16px;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--gold-light); }

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 5px 10px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 11px;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-header:hover { background: var(--navy-light); text-decoration: none; }
.btn-header .icon-compte,
.btn-header .icon-panier { font-size: 18px; line-height: 1; }
.btn-compte { color: var(--grey-300); }
.btn-label { display: none; }

/* Nav consoles */
.nav-consoles {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-consoles::-webkit-scrollbar { display: none; }
.nav-consoles-list {
  display: flex;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
}
.nav-console-item a {
  display: block;
  padding: 9px 14px;
  color: var(--grey-300);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-console-item a:hover,
.nav-console-item.active a {
  color: var(--gold);
  text-decoration: none;
}
.nav-console-item.active {
  border-bottom: 2px solid var(--gold);
}

/* ══════════════════════════════════════════════════════════
   MAIN
══════════════════════════════════════════════════════════ */
.site-main {
  min-height: calc(100vh - var(--header-h) - 280px);
  padding-bottom: 40px;
}

/* ══════════════════════════════════════════════════════════
   HERO (page d'accueil)
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('/img/europe-map-bg.svg') 55% center / cover no-repeat, var(--navy-dark);
  color: var(--white);
  padding: 40px 16px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,21,48,0.80) 0%, rgba(15,32,68,0.72) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-titre {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-titre em {
  color: var(--gold);
  font-style: normal;
}
.hero-sous-titre {
  font-size: 15px;
  color: var(--grey-300);
  margin-bottom: 20px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   SECTION TITRE (catalogue, espace client…)
══════════════════════════════════════════════════════════ */
.section-heading {
  padding: 24px 0 8px;
}
.section-heading h1, .section-heading h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.section-heading p {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   CATALOGUE
══════════════════════════════════════════════════════════ */
.catalogue-container { padding-top: 16px; }

.catalogue-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0 8px;
}
.catalogue-titre { font-size: 20px; font-weight: 700; color: var(--navy); }
.catalogue-count { font-size: 13px; color: var(--grey-500); }

.filtres-actifs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}
.filtre-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
}
.filtre-suppr { color: var(--gold); font-size: 14px; text-decoration: none; }
.filtre-suppr:hover { color: var(--gold-light); }
.filtres-reset { font-size: 13px; color: var(--grey-500); text-decoration: underline; }

/* Grille jeux */
.catalogue-grille {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 4px 0 24px;
}

.jeu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.jeu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.jeu-card-link { display: flex; flex-direction: column; flex: 1; text-decoration: none; color: inherit; }
.jeu-card-link:hover { text-decoration: none; }

.jeu-card-img-wrap {
  position: relative;
  background: var(--grey-100);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.jeu-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.badge-reduc, .badge-note {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  line-height: 1;
}
.badge-reduc { top: 6px; left: 6px; background: var(--red); color: var(--white); }
.badge-note  { top: 6px; right: 6px; color: var(--white); }
.note-vert   { background: var(--green); }
.note-orange { background: var(--orange); }
.note-rouge  { background: var(--red); }

.jeu-card-body { padding: 10px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.jeu-card-support { font-size: 11px; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.jeu-card-titre   { font-size: 13px; font-weight: 600; line-height: 1.3; flex: 1; }
.jeu-card-prix-wrap { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.prix-barre    { font-size: 12px; color: var(--grey-500); text-decoration: line-through; }
.prix-principal { font-size: 17px; font-weight: 800; color: var(--navy); }
.prix-cents    { font-size: 13px; }
.prix-reduc    { font-size: 12px; font-weight: 700; color: var(--red); }
.jeu-card-occa { font-size: 12px; color: var(--orange); }

.btn-panier-quick {
  display: block;
  margin: 0 10px 10px;
  padding: 9px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-panier-quick:hover { background: var(--navy-light); text-decoration: none; }
.jeu-card-btns { display: flex; gap: 6px; margin: 0 10px 10px; }
.jeu-card-btns .btn-panier-quick { flex: 1; margin: 0; }
.btn-panier-occa { background: var(--orange) !important; }
.btn-panier-occa:hover { background: #c96a00 !important; }

.catalogue-vide { padding: 40px 0; text-align: center; color: var(--grey-500); font-size: 15px; }

/* Pagination */
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding: 20px 0; }
.pagination-lien {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--grey-300);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.pagination-lien:hover { background: var(--navy); color: var(--white); border-color: var(--navy); text-decoration: none; }
.pagination-lien.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination-ellipsis { display:flex; align-items:center; padding: 0 4px; color: var(--grey-500); }
.pagination-prev, .pagination-next { font-weight: 700; }

/* Switcher de langue */
.lang-switcher { position:relative; flex-shrink:0; }
.lang-switcher summary { list-style:none; cursor:pointer; font-size:14px; font-weight:700; padding:7px 12px; border-radius:4px; color:var(--grey-300); border:1px solid var(--grey-500); background:transparent; transition:all .15s; user-select:none; white-space:nowrap; }
.lang-switcher summary::-webkit-details-marker { display:none; }
.lang-switcher summary:hover { color:var(--navy); border-color:var(--navy); }
.lang-switcher[open] summary { color:var(--white); background:var(--navy); border-color:var(--navy); }
.lang-dropdown { position:absolute; right:0; top:calc(100% + 4px); background:var(--white); border:1px solid var(--grey-200); border-radius:var(--radius); box-shadow:0 4px 16px rgba(0,0,0,.12); display:flex; flex-direction:column; min-width:64px; z-index:200; overflow:hidden; }
.lang-opt { font-size:12px; font-weight:700; padding:7px 14px; color:var(--grey-600); text-decoration:none; transition:background .1s; }
.lang-opt:hover { background:var(--grey-100); color:var(--navy); text-decoration:none; }
.lang-opt.active { color:var(--navy); background:var(--grey-100); }

/* ══════════════════════════════════════════════════════════
   FICHE PRODUIT
══════════════════════════════════════════════════════════ */
.fiche-container { padding-top: 16px; }

/* Fil d'Ariane */
.breadcrumb { padding: 10px 0 16px; }
.breadcrumb-list { display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; }
.breadcrumb-list li { font-size: 13px; color: var(--grey-500); }
.breadcrumb-list li::after { content: '›'; margin-left: 8px; color: var(--grey-300); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--navy); }
.breadcrumb-list a:hover { color: var(--gold); }

/* Article fiche — mobile first */
.fiche-article { display: flex; flex-direction: column; gap: 24px; }

/* Colonne image */
.fiche-media { display: flex; flex-direction: column; gap: 12px; }
.fiche-img-wrap {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
}
.fiche-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 24px; }

/* Vignettes vidéo sous l'image */
.fiche-thumbs { display: flex; gap: 8px; }
.fiche-thumb-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.fiche-thumb-link:hover { border-color: var(--gold); }
.fiche-thumb-link img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  pointer-events: none;
}

/* Modal vidéo CSS :target */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.video-modal:target { display: flex; align-items: center; justify-content: center; }
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}
.video-modal-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 94vw);
}
.video-modal-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  opacity: .8;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Colonne infos */
.fiche-infos { display: flex; flex-direction: column; gap: 16px; }
.fiche-support { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .8px; }
.fiche-titre { font-size: 22px; font-weight: 800; line-height: 1.25; color: var(--navy); }

/* Note + badges en ligne */
.fiche-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.fiche-note {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.note-chiffre { font-size: 20px; }
.note-sur { font-size: 12px; opacity: .8; }

.fiche-badges { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--grey-100);
  color: var(--grey-700);
  border: 1px solid var(--grey-300);
}
.badge-pegi { background: var(--navy); color: var(--white); border-color: var(--navy); }
.badge-vf   { background: #e8f4ec; color: var(--green); border-color: #b6dfc0; }

/* Bloc achat */
.fiche-achat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-100);
}
.fiche-achat--occasion { border-top: 3px solid var(--orange); }

.achat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--grey-500); margin-bottom: 10px; }
.achat-prix-wrap { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

/* Prix grand format dans la fiche */
.fiche-prix-principal { display: inline-flex; align-items: baseline; gap: 1px; }
.fiche-prix-entier { font-size: 38px; font-weight: 900; color: var(--navy); line-height: 1; }
.fiche-prix-cents { font-size: 20px; font-weight: 700; color: var(--navy); }
.fiche-prix-barre { font-size: 15px; color: var(--grey-500); text-decoration: line-through; }
.fiche-prix-reduc {
  font-size: 13px; font-weight: 700; color: var(--white);
  background: var(--red); padding: 2px 7px; border-radius: 4px;
}

.btn-panier-add {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  transition: background var(--transition);
  text-decoration: none;
  letter-spacing: .3px;
}
.btn-panier-add:hover { background: var(--navy-light); text-decoration: none; }
.btn-panier-add--occa { background: var(--orange); }
.btn-panier-add--occa:hover { background: #a85618; }

.fiche-livraison {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* DL infos */
.fiche-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 14px;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}
.fiche-dl dt { color: var(--grey-500); font-weight: 500; white-space: nowrap; }
.fiche-dl dd { color: var(--grey-900); }
.tag-genre {
  display: inline-block;
  margin: 0 4px 4px 0;
  padding: 3px 8px;
  background: var(--grey-100);
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  transition: background var(--transition);
}
.tag-genre:hover { background: var(--navy); color: var(--white); text-decoration: none; }

/* Section description */
.fiche-desc-section, .fiche-simil-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-100);
}
.fiche-section-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.fiche-desc { font-size: 15px; line-height: 1.75; color: var(--grey-700); }
.fiche-desc--bis { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--grey-100); }

/* Lecteur vidéo (conservé pour compat) */
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  color: var(--white);
  font-size: 28px;
  transition: background var(--transition);
}
.fiche-thumb-link:hover .video-play { background: rgba(0,0,0,.6); }

/* ══════════════════════════════════════════════════════════
   TUNNEL COMMANDE
══════════════════════════════════════════════════════════ */
.commande-container { padding-top: 20px; max-width: 700px; margin: 0 auto; }

.etapes-tunnel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.etape {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  border-right: 1px solid var(--grey-100);
  position: relative;
}
.etape:last-child { border-right: 0; }
.etape.active { color: var(--navy); }
.etape.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.etape.done { color: var(--green); }
.etape-num { display: block; font-size: 10px; opacity: .7; margin-bottom: 2px; }

.commande-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  margin-bottom: 16px;
}
.commande-card h2 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }

/* Formulaire */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--grey-700); margin-bottom: 5px; }
.form-input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--grey-900);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-input:focus { outline: none; border-color: var(--navy); }
.form-input.erreur { border-color: var(--red); }
.form-erreur { font-size: 12px; color: var(--red); margin-top: 4px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-valider {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-valider:hover { background: var(--navy-light); text-decoration: none; }
.btn-valider--gold { background: var(--gold); color: var(--navy); }
.btn-valider--gold:hover { background: var(--gold-light); }

.lien-retour { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--grey-500); text-decoration: underline; }
.lien-retour:hover { color: var(--navy); }

/* Recap commande */
.recap-jeu {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.recap-jeu-img { width: 80px; height: 80px; object-fit: contain; border-radius: var(--radius); background: var(--grey-100); padding: 4px; flex-shrink: 0; }
.recap-jeu-infos { flex: 1; }
.recap-jeu-titre { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.recap-jeu-support { font-size: 13px; color: var(--grey-500); }
.recap-prix { text-align: right; }
.recap-ligne {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 14px;
}
.recap-ligne:last-child { border-bottom: 0; }
.recap-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   ESPACE MEMBRE
══════════════════════════════════════════════════════════ */
.membre-container { padding-top: 20px; }
.membre-grid { display: flex; flex-direction: column; gap: 16px; }

.connexion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.connexion-card h1 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.connexion-card p  { font-size: 14px; color: var(--grey-500); margin-bottom: 20px; }

.separateur { text-align: center; margin: 18px 0; font-size: 13px; color: var(--grey-500); }
.separateur::before { content: '─────  '; }
.separateur::after  { content: '  ─────'; }

.membre-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.membre-menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px 14px;
  text-align: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow var(--transition);
}
.membre-menu-item:hover { box-shadow: var(--shadow-lg); text-decoration: none; }
.membre-menu-item .icon { font-size: 26px; display: block; margin-bottom: 6px; }

.commande-ligne {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.commande-etat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.etat-attente  { background: #fff3cd; color: #856404; }
.etat-valide   { background: #d1ecf1; color: #0c5460; }
.etat-expedie  { background: #d4edda; color: var(--green); }
.etat-annule   { background: #f8d7da; color: var(--red); }
.etat-rembourse{ background: #e2e3e5; color: var(--grey-700); }

/* ══════════════════════════════════════════════════════════
   PAGES SERVICE
══════════════════════════════════════════════════════════ */
.service-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}
.service-container h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.service-container h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}
.service-container p, .service-container li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-700);
  margin-bottom: 10px;
}
.service-container ul { padding-left: 20px; list-style: disc; }

/* Contact form */
.contact-form .btn-valider { margin-top: 8px; }
textarea.form-input { resize: vertical; min-height: 130px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  color: var(--grey-300);
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px 32px;
}
.footer-logo { display: inline-block; text-decoration: none; margin-bottom: 10px; }
.logo-swyo, .footer-logo .logo-swyo { color: var(--white); font-size: 20px; font-weight: 800; }
.logo-point, .logo-eu, .footer-logo .logo-point, .footer-logo .logo-eu { color: var(--gold); font-size: 20px; font-weight: 800; }
.footer-baseline { font-size: 13px; margin-bottom: 10px; color: var(--grey-300); }
.footer-adresse { font-style: normal; font-size: 13px; line-height: 1.7; color: var(--grey-500); }
.footer-adresse a { color: var(--grey-300); }
.footer-adresse a:hover { color: var(--gold); }

.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--white); margin-bottom: 10px; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: 14px; color: var(--grey-500); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); text-decoration: none; }

.footer-langues { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-langues li a { font-size: 13px; color: var(--grey-500); transition: color var(--transition); }
.footer-langues li.active a,
.footer-langues li a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: var(--grey-500);
}
.footer-paiement { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.badge-cb, .badge-visa, .badge-mc, .badge-paypal {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   MESSAGES / ALERTES
══════════════════════════════════════════════════════════ */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success { background: #d4edda; color: var(--green); border-left: 4px solid var(--green); }
.alert-error   { background: #f8d7da; color: var(--red); border-left: 4px solid var(--red); }
.alert-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }
.erreur { color: var(--red); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablette/desktop
══════════════════════════════════════════════════════════ */
@media (min-width: 480px) {
  .catalogue-grille { grid-template-columns: repeat(3, 1fr); }
  .hero-titre { font-size: 30px; }
}

@media (min-width: 640px) {
  .btn-label { display: block; }
  .catalogue-grille { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .fiche-article { flex-direction: row; gap: 40px; align-items: flex-start; }
  .fiche-media { flex: 0 0 340px; position: sticky; top: 16px; }
  .fiche-infos { flex: 1; }
  .fiche-titre { font-size: 26px; }
  .membre-grid { flex-direction: row; gap: 20px; }
  .membre-sidebar { flex: 0 0 200px; }
  .membre-content { flex: 1; }
}

@media (min-width: 768px) {
  .catalogue-grille { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { flex-direction: row; gap: 0; justify-content: space-between; }
  .footer-col { flex: 1; padding: 0 20px; }
  .footer-col--brand { flex: 1.2; padding-left: 0; }
  .footer-col--langue { padding-right: 0; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .hero { padding: 48px 16px; }
  .hero-titre { font-size: 36px; }
  .fiche-media { flex: 0 0 420px; }
  .fiche-titre { font-size: 30px; }
  .fiche-prix-entier { font-size: 44px; }
  .form-2col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .catalogue-grille { grid-template-columns: repeat(5, 1fr); }
  .header-h { --header-h: 64px; }
}

/* ── LIVRAISON EUROPE (dans hero) ────────────────────────── */
.hero-delivery {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(9,21,48,0.45);
  border-radius: 12px;
  padding: 14px 24px;
}
.hero-delivery-48h {
  font-size: 38px; font-weight: 900; color: #fff; line-height: 1;
}
.hero-delivery-48h em { color: var(--gold); font-style: normal; }
.hero-delivery-info { text-align: left; }
.hero-delivery-label {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; color: #8fa8d0; margin-bottom: 2px;
}
.hero-delivery-sub { font-size: 12px; color: #8fa8d0; }
.hero-delivery-sub strong { color: var(--gold); }
.hero-delivery-flags {
  width: 100%; font-size: 16px; letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}
.hero-delivery-price {
  width: 100%; font-size: 13px; color: var(--gold);
  font-weight: 600; letter-spacing: 0.3px;
}
