/* ═══════════════════════════════════════════════════════════
   ODALAMER – Design System "Luxury Coastal Wellness"
   Polices : DM Serif Display (titres) + Nunito (corps)
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --ocean:      #0b2d48;
  --ocean-mid:  #134e72;
  --ocean-lite: #1a6a96;
  --teal:       #00b4d8;
  --teal-lite:  #90e0ef;
  --coral:      #e85d26;
  --coral-lite: #ff8c5a;
  --sand:       #f5efe6;
  --sand-mid:   #e8dccb;
  --blanc:      #ffffff;
  --texte:      #1e293b;
  --texte-mid:  #475569;
  --texte-lite: #94a3b8;
  --bord:       #e2e8f0;
  --vert:       #10b981;

  --font-titre: 'DM Serif Display', Georgia, serif;
  --font-corps: 'Nunito', system-ui, sans-serif;

  --rayon-sm:  8px;
  --rayon:     14px;
  --rayon-lg:  22px;
  --rayon-xl:  32px;

  --ombre-sm:  0 1px 4px rgba(0,0,0,.08);
  --ombre:     0 4px 20px rgba(11,45,72,.10);
  --ombre-lg:  0 12px 40px rgba(11,45,72,.16);

  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-corps); color: var(--texte); background: var(--blanc); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--ocean-lite); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); text-decoration: none; }
ul   { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typographie ───────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-titre); line-height: 1.2; color: var(--ocean); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; }

/* ── HEADER ────────────────────────────────────────────── */
.site-header {
  background: var(--ocean);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center;
  gap: 24px; height: 68px;
}
.logo img { height: 48px; width: auto; }
.logo { flex-shrink: 0; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: inline-flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.85); font-weight: 600; font-size: .9rem;
  padding: 7px 14px; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: .02em;
}
.main-nav a:hover { background: rgba(255,255,255,.1); color: var(--blanc); }
.main-nav a.active { color: var(--teal-lite); }
.nav-promo {
  background: var(--coral) !important;
  color: var(--blanc) !important;
  border-radius: 20px !important;
  padding: 7px 18px !important;
}
.nav-promo:hover { background: var(--coral-lite) !important; }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--blanc); cursor: pointer; margin-left: auto; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--blanc); margin: 5px 0; transition: all .3s;
  border-radius: 2px;
}

/* ── HERO PRINCIPAL ────────────────────────────────────── */
.hero-main {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-mid) 55%, #1a7a8a 100%);
  padding: 80px 0 0;
  min-height: 560px;
  display: flex; flex-direction: column;
}
/* Vague décorative SVG en bas du hero */
.hero-main::after {
  content: '';
  display: block; height: 70px; margin-top: auto;
  background: var(--blanc);
  clip-path: ellipse(55% 100% at 50% 100%);
}
/* Points/bulles décoratifs */
.hero-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,180,216,.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(255,255,255,.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--blanc);
  max-width: 760px; margin: 0 auto;
  padding: 0 20px 48px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,.2); border: 1px solid rgba(0,180,216,.4);
  color: var(--teal-lite); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: '✦'; font-size: .65rem; }
.hero-main h1 {
  font-family: var(--font-titre); color: var(--blanc);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 16px; line-height: 1.15;
}
.hero-main h1 em {
  font-style: normal; color: var(--teal-lite);
}
.hero-subtitle {
  font-size: 1.05rem; opacity: .8; margin-bottom: 36px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ── Barre de recherche hero ──────────────────────────── */
.hero-search {
  background: var(--blanc);
  border-radius: var(--rayon-xl);
  padding: 8px 8px 8px 20px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  max-width: 620px; margin: 0 auto;
  position: relative;   /* ancre pour le dropdown */
  overflow: visible;    /* ne pas couper le dropdown */
}
.hero-search input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-corps); font-size: 1rem;
  color: var(--texte); background: transparent;
  min-width: 0;
}
.hero-search input::placeholder { color: var(--texte-lite); }
.hero-search select {
  border: none; border-left: 1px solid var(--bord);
  outline: none; font-family: var(--font-corps); font-size: .9rem;
  color: var(--texte-mid); background: transparent;
  padding: 0 12px; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.hero-search-btn {
  background: var(--coral); color: var(--blanc);
  border: none; border-radius: var(--rayon-lg);
  padding: 12px 24px; font-family: var(--font-corps);
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.hero-search-btn:hover { background: var(--coral-lite); transform: scale(1.02); }

/* ── Catégories pills ──────────────────────────────────── */
.hero-cats {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-top: 20px;
}
.hero-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9); font-size: .85rem; font-weight: 600;
  padding: 7px 16px; border-radius: 20px; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.hero-cat:hover { background: rgba(255,255,255,.22); color: var(--blanc); text-decoration: none; }
.hero-cat-icon { font-size: 1rem; }

/* ── Stats trust bar ───────────────────────────────────── */
.trust-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--sand-mid);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px;
  border-right: 1px solid var(--sand-mid);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ocean); color: var(--blanc);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.trust-val { font-size: 1.2rem; font-weight: 800; color: var(--ocean); line-height: 1; }
.trust-lbl { font-size: .78rem; color: var(--texte-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── SECTIONS communes ─────────────────────────────────── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--ocean); color: var(--blanc); }
.section-sand { background: var(--sand); }
.section-alt  { background: #f8fbff; }

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--texte-mid); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--teal);
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 10px;
}

/* ── BOUTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 26px; border-radius: var(--rayon-lg);
  font-family: var(--font-corps); font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: all var(--transition); border: none;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--ocean); color: var(--blanc); }
.btn-primary:hover { background: var(--ocean-lite); color: var(--blanc); box-shadow: 0 6px 20px rgba(11,45,72,.3); }
.btn-coral   { background: var(--coral); color: var(--blanc); }
.btn-coral:hover { background: var(--coral-lite); color: var(--blanc); box-shadow: 0 6px 20px rgba(232,93,38,.3); }
.btn-outline  { background: transparent; color: var(--ocean); border: 2px solid var(--ocean); }
.btn-outline:hover { background: var(--ocean); color: var(--blanc); }
.btn-outline-white { background: transparent; color: var(--blanc); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--blanc); }
.btn-teal  { background: var(--teal); color: var(--blanc); }
.btn-teal:hover { background: #00c8f0; color: var(--blanc); }
.btn-sm { padding: 8px 18px; font-size: .85rem; border-radius: var(--rayon); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ── GRID CARDS ────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.cards-grid-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* ── CARD SÉJOUR ───────────────────────────────────────── */
.card-sejour {
  background: var(--blanc); border-radius: var(--rayon);
  overflow: hidden; position: relative;
  box-shadow: var(--ombre-sm);
  border: 1px solid var(--bord);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-sejour:hover { transform: translateY(-5px); box-shadow: var(--ombre-lg); border-color: transparent; }

/* Image wrapper */
.card-img-wrap { position: relative; overflow: hidden; height: 210px; }
.card-sejour img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-sejour:hover img { transform: scale(1.05); }

/* Badges */
.badge-reduction {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral); color: var(--blanc);
  padding: 4px 10px; border-radius: 20px;
  font-size: .78rem; font-weight: 800; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.badge-type {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(11,45,72,.75); backdrop-filter: blur(4px);
  color: var(--blanc); padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.badge-fav {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.95); width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.2);
  border: none; transition: all var(--transition);
  z-index: 10;          /* au-dessus de l'image et du lien */
  pointer-events: auto; /* garanti cliquable */
}
.badge-fav:hover {
  background: var(--blanc);
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.card-body { padding: 16px 18px 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-body h3 { font-size: 1rem; line-height: 1.35; }
.card-body h3 a { color: var(--texte); font-family: var(--font-titre); }
.card-body h3 a:hover { color: var(--ocean-lite); }
.card-lieu { color: var(--texte-mid); font-size: .82rem; display: flex; align-items: center; gap: 4px; }
.card-lieu::before { content: '📍'; font-size: .7rem; }

.card-inclus { display: flex; flex-wrap: wrap; gap: 4px; margin: 4px 0; }
.card-tag {
  background: var(--sand); color: var(--texte-mid);
  font-size: .72rem; font-weight: 600; padding: 2px 8px;
  border-radius: 6px; border: 1px solid var(--sand-mid);
}

.card-footer { padding: 12px 18px 16px; border-top: 1px solid var(--bord); margin-top: auto; }
.card-prix-wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.prix-label { font-size: .72rem; color: var(--texte-lite); display: block; }
.prix-barre { font-size: .82rem; color: var(--texte-lite); text-decoration: line-through; display: block; }
.prix { font-size: 1.6rem; font-weight: 800; color: var(--ocean); line-height: 1; }
.prix-unit { font-size: .7rem; color: var(--texte-mid); }
.btn-voir {
  background: var(--ocean); color: var(--blanc); border: none;
  padding: 9px 16px; border-radius: var(--rayon-sm); font-family: var(--font-corps);
  font-size: .82rem; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: all var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.btn-voir:hover { background: var(--ocean-lite); color: var(--blanc); text-decoration: none; }
.btn-voir-offre { /* compat ancienne classe */
  display: block; margin-top: 10px; padding: 9px 14px;
  background: var(--ocean); color: var(--blanc);
  text-align: center; border-radius: var(--rayon-sm);
  font-size: .85rem; font-weight: 700; text-decoration: none;
  transition: background var(--transition);
}
.btn-voir-offre:hover { background: var(--ocean-lite); color: var(--blanc); text-decoration: none; }

/* ── SECTION CATÉGORIES ────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--rayon); height: 200px;
  display: flex; flex-direction: column;
  justify-content: flex-end; cursor: pointer;
  text-decoration: none;
  box-shadow: var(--ombre);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-lg); text-decoration: none; }
.cat-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,.85) 0%, rgba(11,45,72,.2) 60%, transparent 100%);
}
.cat-card-body {
  position: relative; z-index: 2;
  padding: 20px; color: var(--blanc);
}
.cat-card-body h3 { font-size: 1.25rem; color: var(--blanc); margin-bottom: 4px; }
.cat-card-body p { font-size: .8rem; opacity: .8; }
.cat-pill {
  display: inline-block; background: var(--teal); color: var(--blanc);
  font-size: .7rem; font-weight: 700; padding: 2px 8px;
  border-radius: 10px; margin-bottom: 8px;
}

/* ── DESTINATIONS CLOUD ────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.dest-card {
  background: var(--blanc); border: 1px solid var(--bord);
  border-radius: var(--rayon-sm); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.dest-card:hover {
  border-color: var(--teal); background: #f0fcff;
  transform: translateY(-2px); box-shadow: var(--ombre-sm);
  text-decoration: none;
}
.dest-card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-lite), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; color: var(--blanc); font-weight: 700;
}
.dest-card-name { font-size: .88rem; font-weight: 700; color: var(--ocean); line-height: 1.2; }
.dest-card-nb { font-size: .72rem; color: var(--texte-lite); }

/* ── SECTION EDITORIALE ────────────────────────────────── */
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.editorial-grid.reverse { }
.editorial-img {
  border-radius: var(--rayon-lg); overflow: hidden;
  aspect-ratio: 4/3;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-body { }
.editorial-body h2 { margin-bottom: 16px; }
.editorial-body p { color: var(--texte-mid); margin-bottom: 20px; line-height: 1.75; }
.editorial-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.editorial-feature {
  display: flex; align-items: flex-start; gap: 12px;
}
.editorial-feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--teal-lite), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0; color: var(--blanc);
}
.editorial-feature-text strong { display: block; font-size: .92rem; color: var(--ocean); margin-bottom: 2px; }
.editorial-feature-text span { font-size: .82rem; color: var(--texte-mid); }

/* ── ARTICLES / DOSSIERS ───────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.article-card {
  background: var(--blanc); border-radius: var(--rayon);
  border: 1px solid var(--bord); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--ombre); }
.article-card-body { padding: 18px; }
.article-cat {
  display: inline-block; color: var(--teal); font-size: .72rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px;
}
.article-card h3 { font-size: .98rem; margin-bottom: 8px; }
.article-card h3 a { color: var(--ocean); font-family: var(--font-titre); }
.article-card h3 a:hover { color: var(--teal); }
.article-card p { font-size: .83rem; color: var(--texte-mid); line-height: 1.6; }
.article-card h6 { font-size: .98rem; margin-bottom: 8px; }
.article-card h6 a { color: var(--ocean); font-family: var(--font-titre); }
.article-card h6 a:hover { color: var(--teal); }
.article-item { background: var(--blanc); border-radius: var(--rayon); border: 1px solid var(--bord); padding: 18px; transition: all var(--transition); }
.article-item:hover { transform: translateY(-2px); box-shadow: var(--ombre-sm); }
.article-item h3 { font-size: .95rem; margin-bottom: 6px; }
.article-item h3 a, .article-item h6 a { color: var(--ocean); font-family: var(--font-titre); }
.article-item h3 a:hover, .article-item h6 a:hover { color: var(--teal); }
.article-item p { font-size: .82rem; color: var(--texte-mid); }

/* ── NEWSLETTER BAND ───────────────────────────────────── */
.newsletter-band {
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean) 100%);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.newsletter-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(0,180,216,.2) 0%, transparent 60%);
}
.newsletter-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.newsletter-text h2 { color: var(--blanc); margin-bottom: 8px; font-size: 1.7rem; }
.newsletter-text p { color: rgba(255,255,255,.7); }
.newsletter-form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter-form input {
  padding: 12px 18px; border-radius: var(--rayon-lg);
  border: none; outline: none;
  font-family: var(--font-corps); font-size: .95rem;
  width: 280px; color: var(--texte);
}

/* ── PAGINATION ────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 40px; }
.pagination ul { display: flex; gap: 6px; list-style: none; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1.5px solid var(--bord); border-radius: var(--rayon-sm);
  color: var(--ocean); font-size: .9rem; font-weight: 600;
  transition: all var(--transition); text-decoration: none;
}
.pagination a:hover { background: var(--ocean); color: var(--blanc); border-color: var(--ocean); text-decoration: none; }
.pagination .active a { background: var(--ocean); color: var(--blanc); border-color: var(--ocean); }
.pagination .ellipsis span { border-color: transparent; color: var(--texte-lite); }

/* ── FILTRES ───────────────────────────────────────────── */
.filtres-bar {
  background: var(--blanc); border: 1px solid var(--bord);
  border-radius: var(--rayon-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 32px;
  box-shadow: var(--ombre-sm);
}
.filtres-form { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filtres-form select {
  padding: 9px 36px 9px 14px; border: 1.5px solid var(--bord);
  border-radius: var(--rayon-sm); background: var(--blanc);
  font-family: var(--font-corps); font-size: .9rem; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%2394a3b8'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  color: var(--texte);
}
.filtres-form select:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(0,180,216,.12); }
.nb-resultats { font-size: .88rem; color: var(--texte-mid); margin-left: auto; }
.no-result { text-align: center; padding: 48px 0; color: var(--texte-mid); }

/* ── HERO PAGES INTERNES ───────────────────────────────── */
.hero-sm {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 36px 0 32px; color: var(--blanc);
}
.hero-sm h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--blanc); margin-bottom: 6px; }
.hero-sm p { color: rgba(255,255,255,.75); font-size: 1rem; }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb { margin-bottom: 16px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px 8px; list-style: none; font-size: .8rem; }
.breadcrumb li { color: rgba(255,255,255,.6); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--blanc); }
.breadcrumb [aria-current] { color: var(--blanc); font-weight: 600; }

/* ── PAGE CONTENT ──────────────────────────────────────── */
.page-content { padding: 48px 0 72px; }
.page-content section { margin-bottom: 56px; }
.destination-intro {
  background: var(--sand); border-left: 4px solid var(--teal);
  border-radius: 0 var(--rayon-sm) var(--rayon-sm) 0;
  padding: 20px 24px; margin-bottom: 36px;
  font-size: .95rem; line-height: 1.8; color: var(--texte-mid);
  max-width: 800px;
}
.section-villes { margin-bottom: 40px; }
.destinations-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.destinations-cloud a {
  background: var(--blanc); color: var(--ocean);
  padding: 6px 14px; border-radius: 20px; font-size: .83rem;
  font-weight: 600; border: 1.5px solid var(--bord);
  transition: all var(--transition);
}
.destinations-cloud a:hover { background: var(--ocean); color: var(--blanc); border-color: var(--ocean); text-decoration: none; }

/* ── ARTICLES DOSSIER ──────────────────────────────────── */
.articles-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* ── SECTION DESTINATIONS HOME ─────────────────────────── */
.section-destinations { background: var(--sand); }
.section-destinations h2 { color: var(--ocean); }

/* ── PAGE STATIQUE ─────────────────────────────────────── */
.page-statique .page-body { max-width: 800px; line-height: 1.9; }
.page-statique .page-body h2 { font-size: 1.3rem; margin: 28px 0 10px; }
.page-statique .page-body p  { margin-bottom: 16px; color: var(--texte-mid); }

/* ── PAGE ARTICLE ──────────────────────────────────────── */
.article-page { padding: 40px 0 72px; max-width: 860px; }
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--rayon); margin-bottom: 32px; }
.article-page h1 { margin-bottom: 16px; }
.article-chapeau {
  font-size: 1.1rem; color: var(--texte-mid);
  border-left: 4px solid var(--teal); padding-left: 18px;
  margin-bottom: 28px; line-height: 1.7;
}
.article-contenu { line-height: 1.9; }
.article-contenu h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.article-contenu p  { margin-bottom: 16px; color: var(--texte-mid); }
.article-cta { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--bord); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--ocean);
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { font-size: .88rem; line-height: 1.75; opacity: .7; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  color: var(--blanc); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px;
  font-family: var(--font-corps);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-lite); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 8px;
}
.footer-cols { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-col h3 { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; color: rgba(255,255,255,.7); font-family: var(--font-corps); }
.footer-desc { margin-top: 16px; font-size: .83rem; line-height: 1.7; opacity: .6; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--ocean); padding: 24px 20px; flex-direction: column; z-index: 300; }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { font-size: 1.1rem; padding: 14px 16px; }
  .nav-toggle { display: block; }
  .hero-search { flex-wrap: wrap; padding: 12px; gap: 10px; }
  .hero-search select { border-left: none; border-top: 1px solid var(--bord); width: 100%; padding: 8px 0; }
  .hero-search-btn { width: 100%; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0; flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--sand-mid); padding: 12px 20px; width: 100%; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .cards-grid { grid-template-columns: 1fr; }
  .filtres-form { flex-direction: column; align-items: stretch; }
  .filtres-form select { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE DESTINATION – Layout 2 colonnes + Avis sidebar
   ═══════════════════════════════════════════════════════════ */

/* Layout principal */
.dest-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.dest-main   { min-width: 0; }
.dest-sidebar { position: sticky; top: 88px; }

/* ── Panel avis ────────────────────────────────────────── */
.avis-panel {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  overflow: hidden;
}
.avis-panel-title {
  font-family: var(--font-titre);
  font-size: 1.1rem; color: var(--ocean);
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--bord);
  margin: 0;
}

/* Score global */
.avis-score-wrap {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bord);
}
.avis-score-big {
  font-size: 3rem; font-weight: 800;
  color: var(--ocean); line-height: 1;
}
.avis-stars-display { display: flex; gap: 2px; margin-bottom: 4px; }
.star-icon { font-size: 1.1rem; color: #d1d5db; }
.star-icon.filled { color: #fbbf24; }
.avis-score-sub { font-size: .78rem; color: var(--texte-lite); }

/* Barres par note */
.avis-bars {
  padding: 12px 20px;
  border-bottom: 1px solid var(--bord);
  display: flex; flex-direction: column; gap: 6px;
}
.avis-bar-row { display: flex; align-items: center; gap: 8px; }
.avis-bar-lbl { font-size: .75rem; color: var(--texte-mid); width: 20px; text-align: right; flex-shrink: 0; }
.avis-bar-track {
  flex: 1; height: 6px; background: var(--bord);
  border-radius: 3px; overflow: hidden;
}
.avis-bar-fill { height: 100%; background: #fbbf24; border-radius: 3px; transition: width .4s; }
.avis-bar-nb { font-size: .72rem; color: var(--texte-lite); width: 16px; flex-shrink: 0; }

/* Liste des avis */
.avis-list { padding: 0 20px; max-height: 340px; overflow-y: auto; }
.avis-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--bord);
}
.avis-item:last-child { border-bottom: none; }
.avis-item-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.avis-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-lite), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--blanc); flex-shrink: 0;
}
.avis-item-name  { font-size: .88rem; font-weight: 700; color: var(--ocean); }
.avis-item-stars { font-size: .8rem; color: #fbbf24; }
.avis-item-date  { font-size: .72rem; color: var(--texte-lite); margin-left: auto; }
.avis-item-comment { font-size: .83rem; color: var(--texte-mid); line-height: 1.55; }

.avis-empty {
  padding: 20px; text-align: center;
  font-size: .88rem; color: var(--texte-lite);
}

/* ── Formulaire notation ──────────────────────────────── */
.avis-form-wrap {
  padding: 18px 20px;
  background: var(--sand);
  border-top: 1px solid var(--bord);
}
.avis-form-title {
  font-size: .95rem; font-weight: 700; color: var(--ocean);
  margin-bottom: 14px; font-family: var(--font-corps);
}
.form-group { margin-bottom: 12px; }
.form-label-sm {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--texte-mid); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 5px;
}
.avis-input {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--bord); border-radius: var(--rayon-sm);
  font-family: var(--font-corps); font-size: .88rem; color: var(--texte);
  background: var(--blanc); transition: border-color var(--transition);
  resize: vertical;
}
.avis-input:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(0,180,216,.1); }

/* ── Étoiles interactives ─────────────────────────────── */
.stars-interactive {
  display: flex; flex-direction: row-reverse;
  justify-content: flex-end; gap: 2px;
  margin-bottom: 4px;
}
.stars-interactive input[type="radio"] {
  display: none;
}
.stars-interactive label {
  font-size: 1.8rem; color: #d1d5db; cursor: pointer;
  transition: color .15s; line-height: 1;
  padding: 2px;
}
/* Hover : colorier l'étoile et toutes celles à gauche */
.stars-interactive label:hover,
.stars-interactive label:hover ~ label,
.stars-interactive input:checked ~ label {
  color: #fbbf24;
}

/* Messages avis */
.avis-msg {
  padding: 10px 14px; border-radius: var(--rayon-sm);
  font-size: .85rem; margin-bottom: 14px; font-weight: 600;
}
.avis-msg-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.avis-msg-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.avis-rgpd {
  font-size: .72rem; color: var(--texte-lite);
  margin-bottom: 12px; line-height: 1.5;
}

/* ── Responsive destination ───────────────────────────── */
@media (max-width: 900px) {
  .dest-layout { grid-template-columns: 1fr; }
  .dest-sidebar { position: static; }
  .avis-list { max-height: none; }
}

/* ═══════════════════════════════════════════════════════════
   LISTING PAGE – Sidebar + résultats
   ═══════════════════════════════════════════════════════════ */

.listing-page { background: #f8fafc; }

/* Layout */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 60px;
  align-items: start;
}

/* Bouton fermer : caché sur desktop, visible mobile */
.sidebar-close-btn { display: none; }

/* ── Sidebar ──────────────────────────────────────────────── */
.listing-sidebar {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  position: sticky;
  top: 80px;
  overflow: visible;
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--bord);
  background: var(--ocean);
}
.sidebar-title {
  font-size: .9rem; font-weight: 700; color: var(--blanc);
  margin: 0; display: flex; align-items: center; gap: 8px;
  font-family: var(--font-corps);
}
.sidebar-title svg { stroke: var(--teal-lite); }
.filter-badge {
  background: var(--coral); color: #fff;
  font-size: .68rem; font-weight: 800; padding: 1px 6px;
  border-radius: 10px; margin-left: 2px;
}
.filter-reset {
  font-size: .75rem; color: rgba(255,255,255,.65);
  text-decoration: underline; cursor: pointer;
}
.filter-reset:hover { color: var(--blanc); }

.filter-group {
  padding: 14px 18px;
  border-bottom: 1px solid var(--bord);
}
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--texte-mid);
  margin: 0 0 10px; font-family: var(--font-corps);
}

/* Recherche dans sidebar */
.filter-search-wrap {
  position: relative;
}
.filter-search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  stroke: var(--texte-lite);
}
.filter-search-input {
  width: 100%; padding: 9px 10px 9px 32px;
  border: 1.5px solid var(--bord); border-radius: var(--rayon-sm);
  font-family: var(--font-corps); font-size: .88rem; color: var(--texte);
  background: var(--blanc); transition: border-color var(--transition);
}
.filter-search-input:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(0,180,216,.1); }

/* Select */
.filter-select {
  width: 100%; padding: 9px 32px 9px 12px;
  border: 1.5px solid var(--bord); border-radius: var(--rayon-sm);
  font-family: var(--font-corps); font-size: .88rem; color: var(--texte);
  background: var(--blanc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none; cursor: pointer;
}
.filter-select:focus { border-color: var(--teal); outline: none; }

/* Radios/Checkboxes */
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-check {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; color: var(--texte); cursor: pointer;
  padding: 5px 6px; border-radius: 6px;
  transition: background var(--transition);
}
.filter-check:hover { background: var(--sand); }
.filter-check.checked { color: var(--ocean); font-weight: 700; }
.filter-check input { display: none; }
.filter-check-box {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--bord); flex-shrink: 0;
  transition: all var(--transition);
}
.filter-check.checked .filter-check-box,
.filter-check input:checked + .filter-check-box {
  background: var(--ocean); border-color: var(--ocean);
  box-shadow: inset 0 0 0 3px var(--blanc);
}

/* Slider prix */
.filter-prix-val {
  float: right; font-size: .8rem; font-weight: 700;
  color: var(--ocean); background: var(--sand);
  padding: 2px 8px; border-radius: 10px;
}
.filter-range {
  width: 100%; height: 4px; margin: 10px 0 4px;
  accent-color: var(--ocean); cursor: pointer;
}
.filter-range-labels {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--texte-lite);
}

/* Toggle promo */
.filter-toggle-wrap {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: .88rem; color: var(--texte);
}
.filter-toggle-wrap input { display: none; }
.filter-toggle {
  width: 38px; height: 20px; background: var(--bord);
  border-radius: 10px; position: relative; transition: background .2s;
  flex-shrink: 0;
}
.filter-toggle::after {
  content: ''; position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: left .2s;
}
.filter-toggle-wrap input:checked + .filter-toggle { background: var(--ocean); }
.filter-toggle-wrap input:checked + .filter-toggle::after { left: 20px; }
.filter-toggle-label { font-weight: 600; color: var(--ocean); }

/* Bouton submit sidebar */
.filter-submit {
  display: block; width: calc(100% - 36px); margin: 16px 18px;
  padding: 10px; background: var(--ocean); color: var(--blanc);
  border: none; border-radius: var(--rayon-sm);
  font-family: var(--font-corps); font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background var(--transition);
}
.filter-submit:hover { background: var(--ocean-lite); }

/* ── Toolbar ──────────────────────────────────────────────── */
.listing-toolbar {
  display: flex; align-items: center; gap: 12px;
  background: var(--blanc); border: 1px solid var(--bord);
  border-radius: var(--rayon-sm); padding: 10px 16px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.listing-count { font-size: .9rem; color: var(--texte-mid); flex: 1; min-width: 120px; }
.listing-count em { font-style: normal; color: var(--ocean); font-weight: 700; }
.sort-label { font-size: .8rem; color: var(--texte-lite); font-weight: 600; }
.sort-select {
  padding: 7px 28px 7px 10px; border: 1.5px solid var(--bord);
  border-radius: var(--rayon-sm); font-family: var(--font-corps);
  font-size: .88rem; color: var(--texte);
  background: var(--blanc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%2394a3b8'/%3E%3C/svg%3E") no-repeat right 8px center;
  appearance: none; cursor: pointer;
}
.btn-filters-mobile { display: none; }

/* ── Chips filtres actifs ─────────────────────────────────── */
.active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.active-filter-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(11,45,72,.08); color: var(--ocean);
  font-size: .78rem; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; text-decoration: none;
  border: 1px solid rgba(11,45,72,.15);
  transition: all var(--transition);
}
.active-filter-chip:hover { background: var(--ocean); color: var(--blanc); text-decoration: none; }

/* ── Grille listing ───────────────────────────────────────── */
.listing-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* ── Empty state ──────────────────────────────────────────── */
.listing-empty {
  text-align: center; padding: 60px 20px;
  background: var(--blanc); border-radius: var(--rayon);
  border: 1px solid var(--bord);
}
.listing-empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.listing-empty h2 { font-size: 1.4rem; margin-bottom: 8px; }
.listing-empty p  { color: var(--texte-mid); }

/* ── Autocomplete dropdown ────────────────────────────────── */
.search-wrap { position: relative; }
.autocomplete-dropdown {
  background: var(--blanc);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(11,45,72,.18), 0 2px 8px rgba(0,0,0,.08);
  border: 1px solid var(--bord);
  z-index: 99999;
  overflow: hidden;
  animation: dropIn .18s ease;
  /* Scroll si beaucoup de résultats */
  max-height: 380px;
  overflow-y: auto;
  /* Scrollbar discrète */
  scrollbar-width: thin;
  scrollbar-color: var(--bord) transparent;
}
.autocomplete-dropdown::-webkit-scrollbar { width: 4px; }
.autocomplete-dropdown::-webkit-scrollbar-track { background: transparent; }
.autocomplete-dropdown::-webkit-scrollbar-thumb { background: var(--bord); border-radius: 4px; }

@keyframes dropIn { from { opacity:0; transform:translateY(-8px) scale(.98); } to { opacity:1; transform:none; } }

.autocomplete-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; cursor: pointer;
  transition: background .12s;
  text-decoration: none; color: var(--texte);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.active { background: var(--sand); }
.autocomplete-icon {
  font-size: .95rem; flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand); border-radius: 8px;
}
.autocomplete-label { font-size: .88rem; font-weight: 700; color: var(--ocean); line-height: 1.2; }
.autocomplete-label mark { background: none; color: var(--teal); font-weight: 800; }
.autocomplete-sub { font-size: .72rem; color: var(--texte-lite); margin-top: 1px; }
.autocomplete-sep {
  padding: 6px 14px 4px;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--texte-lite);
  background: var(--sand);
  border-top: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
  position: sticky; top: 0; z-index: 1;
}

/* ── Responsive listing ───────────────────────────────────── */
@media (max-width: 900px) {
  .listing-layout { grid-template-columns: 1fr; }
  .btn-filters-mobile {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; background: var(--ocean); color: #fff;
    border: none; border-radius: 6px; font-size: .85rem; font-weight: 700;
    cursor: pointer; touch-action: manipulation;
  }
  .sidebar-close-btn {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; border-bottom: 1px solid #e2e8f0;
    background: #fff; position: sticky; top: 0; z-index: 1;
  }
  #listing-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 82vw; max-width: 320px;
    background: #fff;
    overflow-y: auto;
    z-index: 9999;
    transform: translateX(-110%);
    transition: transform .25s ease;
    border: none; border-radius: 0; padding: 0;
  }
  body.sb-open #listing-sidebar {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,.4);
  }
}

#sidebar-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.55); z-index: 9998; cursor: pointer;
}
body.sb-open #sidebar-overlay { display: block; }
  .listing-sidebar.open { left: 0; box-shadow: 4px 0 24px rgba(0,0,0,.2); }
  .btn-filters-mobile {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; background: var(--ocean); color: var(--blanc);
    border: none; border-radius: var(--rayon-sm);
    font-family: var(--font-corps); font-size: .85rem; font-weight: 700;
    cursor: pointer;
  }
}

/* ── Vente Flash nav ──────────────────────────────────── */
.nav-vf {
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: var(--blanc) !important;
  border-radius: 20px !important;
  padding: 7px 16px !important;
  animation: flashPulse 2s ease-in-out infinite;
}
.nav-vf:hover { opacity: .9; color: var(--blanc) !important; }
@keyframes flashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ═══════════════════════════════════════════════════════════
   VUE LISTE – Mode horizontal 1 résultat par ligne
   Activé par RESULTS_DISPLAY='list' dans config/db.php
   ═══════════════════════════════════════════════════════════ */

/* Grille passe en 1 colonne */
.cards-grid.view-list {
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Card en mode liste = horizontal */
.view-list .card-sejour {
  flex-direction: row;
  align-items: stretch;
  height: auto;
  transform: none !important;
}
.view-list .card-sejour:hover {
  transform: translateY(-2px) !important;
}

/* Image : fixe à gauche */
.view-list .card-img-wrap {
  width: 220px;
  min-width: 220px;
  height: auto;
  min-height: 160px;
  flex-shrink: 0;
  border-radius: var(--rayon) 0 0 var(--rayon);
}
.view-list .card-img-wrap img {
  height: 100%;
  min-height: 160px;
}

/* Corps : prend l'espace restant + direction row */
.view-list .card-body {
  flex: 1;
  padding: 14px 16px;
  gap: 4px;
  border-bottom: none;
}

/* Footer prix à droite */
.view-list .card-footer {
  min-width: 160px;
  width: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 14px 18px;
  border-top: none;
  border-left: 1px solid var(--bord);
  background: var(--sand);
  border-radius: 0 var(--rayon) var(--rayon) 0;
}

/* Prix plus compact en liste */
.view-list .prix       { font-size: 1.4rem; }
.view-list .prix-unit  { font-size: .68rem; }
.view-list .btn-voir   { width: 100%; justify-content: center; margin-top: 8px; }

/* Badge réduction : repositionner */
.view-list .badge-reduction {
  top: 10px; left: 10px;
  font-size: .72rem;
}
.view-list .badge-type {
  bottom: auto; top: 10px; right: 10px; left: auto;
}

/* Tags inclus en ligne */
.view-list .card-inclus {
  flex-direction: row;
  flex-wrap: wrap;
}

/* Description courte (affichée uniquement en liste) */
.view-list .card-desc {
  display: block !important;
  font-size: .8rem;
  color: var(--texte-mid);
  line-height: 1.5;
  margin-top: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* Cacher la desc en mode grille */
.card-desc { display: none; }

/* Bouton toggle vue dans la toolbar */
.view-toggle-wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  border: 1.5px solid var(--bord);
  border-radius: var(--rayon-sm);
  padding: 2px;
  background: var(--blanc);
}
.view-toggle-btn {
  background: none; border: none; cursor: pointer;
  padding: 5px 8px; border-radius: 5px;
  color: var(--texte-lite); font-size: 1rem;
  transition: all .15s; line-height: 1;
}
.view-toggle-btn.active {
  background: var(--ocean); color: var(--blanc);
}
.view-toggle-btn:hover:not(.active) { background: var(--sand); color: var(--ocean); }

/* Responsive : vue liste désactivée sur mobile */
@media (max-width: 768px) {
  .view-list.cards-grid         { grid-template-columns: 1fr; }
  .view-list .card-sejour       { flex-direction: column; }
  .view-list .card-img-wrap     { width: 100%; min-height: 180px; border-radius: var(--rayon) var(--rayon) 0 0; }
  .view-list .card-footer       { width: 100%; border-left: none; border-top: 1px solid var(--bord); border-radius: 0 0 var(--rayon) var(--rayon); flex-direction: row; justify-content: space-between; align-items: center; }
  .view-list .btn-voir          { width: auto; margin-top: 0; }
}

/* ═══════════════════════════════════════════════════════════
   VUE LISTE – 1 résultat par ligne (style Thalasseo)
   Activé par RESULTS_DISPLAY='list' dans config/db.php
   ou bouton toggle dans la toolbar
   ═══════════════════════════════════════════════════════════ */

/* Grille 1 colonne en mode liste */
.cards-grid.view-list { grid-template-columns: 1fr; gap: 12px; }

/* Card horizontale */
.view-list .card-sejour {
  flex-direction: row;
  align-items: stretch;
  min-height: 150px;
  height: auto;
}
.view-list .card-sejour:hover { transform: translateY(-2px) !important; }

/* Image à gauche, taille fixe */
.view-list .card-img-wrap {
  width: 200px;
  min-width: 200px;
  height: auto;
  min-height: 150px;
  flex-shrink: 0;
  border-radius: var(--rayon) 0 0 var(--rayon);
}
.view-list .card-img-wrap img { height: 100%; min-height: 150px; }

/* Badge réduction : garder en haut à gauche */
.view-list .badge-reduction { top: 8px; left: 8px; }

/* Badge type : déplacer en bas à gauche de l'image */
.view-list .badge-type { top: auto; bottom: 8px; left: 8px; right: auto; }

/* Favori : haut droit de l'image */
.view-list .badge-fav { top: 8px; right: 8px; width: 28px; height: 28px; font-size: .9rem; }

/* Corps : prend tout l'espace central */
.view-list .card-body {
  flex: 1;
  padding: 14px 16px;
  gap: 4px;
  border-bottom: none;
  justify-content: center;
}

/* Titre plus grand en liste */
.view-list .card-body h3 { font-size: 1.02rem; }

/* Description courte visible seulement en liste */
.card-desc { display: none; }
.view-list .card-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .8rem;
  color: var(--texte-mid);
  line-height: 1.55;
  margin-top: 2px;
}

/* Tags plus compacts */
.view-list .card-inclus { flex-wrap: wrap; gap: 3px; }
.view-list .card-tag { font-size: .68rem; }

/* Bloc prix à droite, fond sable */
.view-list .card-footer {
  min-width: 170px;
  width: 170px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 14px 18px;
  border-top: none;
  border-left: 1px solid var(--bord);
  background: var(--sand);
  border-radius: 0 var(--rayon) var(--rayon) 0;
  gap: 6px;
  margin-top: 0;
}

/* Prix mis en valeur */
.view-list .prix       { font-size: 1.5rem; }
.view-list .prix-label { font-size: .7rem; }
.view-list .btn-voir   { width: 100%; justify-content: center; font-size: .82rem; }

/* Boutons toggle grille/liste */
.view-toggle-wrap {
  display: flex; gap: 2px; align-items: center;
  border: 1.5px solid var(--bord); border-radius: 8px;
  padding: 2px; background: var(--blanc);
}
.view-toggle-btn {
  background: none; border: none; cursor: pointer;
  padding: 5px 8px; border-radius: 5px;
  color: var(--texte-lite); font-size: .85rem;
  transition: all .15s; line-height: 1;
  display: flex; align-items: center;
}
.view-toggle-btn.active { background: var(--ocean); color: var(--blanc); }
.view-toggle-btn:hover:not(.active) { background: var(--sand); color: var(--ocean); }

/* Responsive : liste → colonne sur mobile */
@media (max-width: 640px) {
  .cards-grid.view-list { gap: 12px; }
  .view-list .card-sejour { flex-direction: column; }
  .view-list .card-img-wrap {
    width: 100%; min-height: 170px;
    border-radius: var(--rayon) var(--rayon) 0 0;
  }
  .view-list .card-footer {
    width: 100%; flex-direction: row; justify-content: space-between;
    align-items: center; border-left: none;
    border-top: 1px solid var(--bord);
    border-radius: 0 0 var(--rayon) var(--rayon);
    gap: 12px;
  }
  .view-list .btn-voir { width: auto; }
}

/* ── Destinations Homepage Grid ──────────────────────────── */
.dest-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.dest-home-card {
  display: block;
  border-radius: var(--rayon);
  overflow: hidden;
  text-decoration: none;
  background: var(--blanc);
  border: 1px solid var(--bord);
  transition: transform .18s, box-shadow .18s;
  position: relative;
}
.dest-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11,45,72,.15);
}
.dest-home-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--ocean-light);
}
.dest-home-img-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  font-size: 2.5rem;
}
.dest-home-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--or);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dest-home-body {
  padding: 14px 16px;
}
.dest-home-nom {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ocean);
  margin-bottom: 4px;
  line-height: 1.3;
}
.dest-home-region {
  font-size: .78rem;
  color: var(--texte-lite);
  margin-bottom: 6px;
}
.dest-home-prix {
  font-size: .82rem;
  font-weight: 700;
  color: var(--texte-mid);
}
.dest-home-nb {
  font-size: .75rem;
  color: var(--texte-lite);
}
@media (max-width: 768px) {
  .dest-home-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .dest-home-img { height: 120px; }
}

/* ── FAQ destination — cliquable visible ───────────────── */
.dest-faq .faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--blanc);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.faq-item[open] {
  border-color: var(--ocean);
  box-shadow: 0 4px 12px rgba(11,45,72,.08);
}
.faq-item:hover { border-color: var(--ocean-light); }

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 14px 50px 14px 18px;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ocean);
  position: relative;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ocean);
  background: rgba(11,45,72,.06);
  border-radius: 50%;
  transition: transform .2s, background .15s;
}
.faq-item[open] .faq-question::after {
  content: '−';
  background: var(--ocean);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--texte-mid);
  line-height: 1.65;
  font-size: .92rem;
  border-top: 1px solid var(--bord);
  padding-top: 14px;
}
