/* Affiliation-Dating — site5 (nom de domaine PAS ENCORE CHOISI) — feuille de style separee du generateur.
   RESKIN THEME 3 (2026-08-15) : bascule complete rose pale / rose fonce / noir, remplace le
   noir/or herite de site4 (Theme 2). Voir dierection-artistic/theme3/CLAUDE.md pour la
   doctrine complete (tokens, decisions actees, regles anti-friction deploiement). Structure/
   mise en page inchangee, seuls les tokens de couleur/typo ont ete retravailles. Palette
   generale claire (rose pale) MAIS le hero reste sombre (degrade rose fonce) — c'est la
   seule zone qui garde du texte blanc, cf. overrides locaux plus bas dans ce fichier. */

:root {
  --c-bg: #fbe8ee;           /* fond page, rose pale */
  --c-panel: #f9dee7;        /* 1re nuance de panneau (sections alternees) */
  --c-panel-alt: #f3d0dd;    /* 2e nuance, rose un peu plus soutenu (sections alternees) */
  --c-card: #ffffff;         /* fond des cards/blocs, blanc releve du fond rose */
  --c-border: rgba(214, 51, 132, 0.22);  /* liseret rose discret, remplace le liseret dore */
  --c-text: #171114;         /* texte courant, noir chaud (pas #000 pur) */
  --c-text-strong: #171114;  /* titres / emphase forte, noir */
  --c-text-muted: #7a5a63;   /* texte secondaire / meta, brun rose */
  --c-accent: #d63384;       /* rose fonce de base (= depart du degrade hero) */
  --c-accent-light: #c2255c; /* rose plus soutenu, lisible en texte sur fond blanc/rose pale */
  --c-accent-gradient: linear-gradient(135deg, #ec5a9c, #d63384);
  --c-chip-bg: rgba(214, 51, 132, 0.08); /* fond de pastille/chip, remplace le fond blanc translucide */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 18px;      /* Theme 2 : 18px (etait 17px sous Theme 1) */
  line-height: 1.6;
}

/* Filet de securite global : tout lien non stylise explicitement ailleurs retombe ici,
   jamais sur le bleu par defaut du navigateur (demande Jerome 2026-08-13). Les selecteurs
   plus specifiques (.seo-intro a, .breadcrumb a, .footer-col a, etc.) restent prioritaires. */
a {
  color: var(--c-accent-light);
  text-decoration: none;
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

/* --- en-tete / logo --- */

.site-header {
  background: var(--c-panel);
  margin-bottom: 24px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 14px 16px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .site-header-inner {
    justify-content: center;
  }
}

.brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: block;
  line-height: 0;
}

.site-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* --- navigation categories --- */

nav.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

nav.categories a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-text-strong);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

nav.categories a:hover {
  border-bottom-color: var(--c-accent);
}

.silo-title {
  margin-top: 36px;
  opacity: 0.6;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-h1 {
  font-family: var(--font-heading);
  color: var(--c-text-strong);
  font-size: 1.85rem;
  margin: 24px 0 16px;
}

/* --- hero pages categorie (5 silos) ---
   Seule zone sombre du theme3 (le reste du site est en fond rose pale/texte noir) : le hero
   garde un degrade rose fonce avec texte blanc, d'ou les surcharges locales de couleur
   ci-dessous (h1/subtitle/breadcrumb) qui ne suivent pas --c-text-strong/--c-text-muted
   (noir sur le reste du site). */
.hero {
  background: linear-gradient(160deg, #d63384 0%, #a01e63 60%, #7a1449 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 22px clamp(20px, 5vw, 64px) 34px;
  margin: 0 0 24px;
  font-family: var(--font-body);
}

.hero .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  font-weight: 500;
  margin: 0 0 16px;
}

.hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.hero .breadcrumb span[aria-current="page"] {
  color: var(--c-accent-light);
  font-weight: 600;
}

.hero-accent-bar {
  width: 46px;
  height: 4px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
  border-radius: 2px;
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;  /* override local : le reste du site est en --c-text-strong noir, le hero reste sombre */
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  max-width: 760px;
  margin: 0 0 10px;
}

.hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.82);  /* override local, idem .hero h1 */
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}

.seo-intro {
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}

.seo-intro p {
  margin: 0 0 14px;
  opacity: 0.85;
  font-size: 1.02rem;
}

.seo-intro h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 24px 0 10px;
  color: var(--c-accent);
}

.seo-intro h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 16px 0 6px;
  opacity: 0.9;
}

.seo-intro a {
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 600;
}

.seo-intro a:hover {
  text-decoration: underline;
}

.city-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin: 16px 0 24px;
}

@media (max-width: 720px) {
  .city-card-grid {
    grid-template-columns: 1fr;
  }
}

.city-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: clamp(14px, 2vw, 20px);
}

.city-card h3 {
  font-family: var(--font-heading);
  color: var(--c-accent);
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.city-card p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.96rem;
}

.home-faq {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.home-faq h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 16px;
  color: var(--c-accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: clamp(12px, 1.6vw, 16px) clamp(14px, 2vw, 20px);
}

.faq-item summary {
  font-family: var(--font-heading);
  color: var(--c-text-strong);
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--c-accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 10px 0 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

.city-immersive-h2 {
  font-family: var(--font-heading);
  color: var(--c-text-strong);
  font-size: 1.5rem;
  margin: 24px 0 10px;
}

.city-immersive-text {
  margin: 0 0 14px;
  opacity: 0.85;
  font-size: 1.02rem;
}

.category-seo-block {
  margin: 0 0 40px;
}

.category-seo-block p {
  margin: 0 0 14px;
  opacity: 0.85;
  font-size: 1.02rem;
}

.category-seo-block h2 {
  font-family: var(--font-heading);
  color: var(--c-accent);
  font-size: 1.6rem;
  margin: 28px 0 10px;
}

.silo-intro {
  opacity: 0.75;
  font-size: 1rem;
  margin: 4px 0 0;
}

/* --- pages piliers (silo mere) : blocs editoriaux haut/bas --- */

.category-editorial-top,
.category-editorial-bottom {
  margin: 0 0 40px;
}

.category-editorial-top p,
.category-editorial-bottom p {
  margin: 0 0 14px;
  opacity: 0.85;
  font-size: 1.02rem;
}

.category-editorial-top h2,
.category-editorial-bottom h2 {
  font-family: var(--font-heading);
  color: var(--c-accent);
  font-size: 1.6rem;
  margin: 28px 0 10px;
}

.editorial-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.editorial-links li {
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 14px;
  background: var(--c-chip-bg);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.sub-intentions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 12px 0 20px;
}

.sub-intention {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
}

.sub-intention h3 {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--c-text);
}

.sub-intention .semantic-field {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 8px;
}

.keyword-pill {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--c-chip-bg);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.faq-list {
  margin-top: 12px;
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}

.faq-item h3 {
  font-size: 1.02rem;
  margin: 0 0 6px;
  color: var(--c-text);
}

.faq-item p {
  margin: 0;
  opacity: 0.85;
}

.editorial-cta {
  font-weight: 600;
  color: var(--c-accent);
}

/* --- pages niveau 2 (silo x scenario) : intro + liens transversaux --- */

.scenario-intro {
  margin: 0 0 24px;
  opacity: 0.85;
  font-size: 1.02rem;
  max-width: 70ch;
}

.sibling-links {
  margin: 40px 0 0;
}

.sibling-links h2 {
  font-family: var(--font-heading);
  color: var(--c-accent);
  font-size: 1.4rem;
  margin: 0 0 12px;
}

.sibling-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sibling-link {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 14px;
  background: var(--c-chip-bg);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  text-decoration: none;
}

/* --- filtre ville par silo --- */

.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.city-pill {
  display: inline-block;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: 14px;
  background: var(--c-chip-bg);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}

.city-pill:hover {
  border-color: var(--c-accent);
}

.city-pill.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #ffffff;  /* pastille rose saturee, blanc lisible (remplace le noir-sur-dore Theme 2) */
}

/* --- grille de profils (home), 6 colonnes x 4 rangees visibles --- */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.profile-card {
  text-decoration: none;
  color: var(--c-text);
  display: block;
  background: var(--c-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: border-color .15s;
}

.profile-card:hover {
  border-color: var(--c-accent);
}

.profile-card img,
.card-noimg {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--c-chip-bg);
  display: block;
}

.card-body {
  padding: 8px 10px 10px;
}

.card-name {
  color: var(--c-accent-light);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-bio {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.card-tag {
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--c-chip-bg);
  color: var(--c-text-muted);
  white-space: nowrap;
}

.card-readmore {
  display: block;
  font-size: 0.75rem;
  color: var(--c-accent);
  font-weight: 600;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- teaser (page index) --- */

.teaser {
  border-top: 1px solid var(--c-border);
  padding: 18px 0;
  display: flex;
  gap: 14px;
}

.teaser:first-of-type {
  border-top: none;
}

.teaser img {
  width: 100px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--c-chip-bg);
}

.teaser .col {
  flex: 1;
  min-width: 0;
}

.teaser h3 {
  font-family: var(--font-heading);
  color: var(--c-text-strong);
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.teaser p {
  margin: 0 0 8px;
  font-size: 1rem;
  opacity: 0.85;
}

.teaser a.readmore {
  font-size: 0.92rem;
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 600;
}

.teaser a.readmore:hover {
  text-decoration: underline;
}

/* --- fiche individuelle --- */

/* rythme de sections : nuances de noir (Theme 2), .section-light et .section-dark gardent
   leurs noms historiques (utilises par le generateur) mais sont maintenant deux nuances de
   noir plutot qu'une alternance clair/sombre. */
.section-light {
  background: var(--c-panel);
  padding: 40px clamp(20px, 5vw, 64px);
}

.bio-grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 28px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.photo-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.photo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.photo-chip {
  display: inline-block;
  font-size: 0.78rem;
  padding: 5px 11px;
  border-radius: 14px;
  background: var(--c-card);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  font-weight: 600;
}

.photo-quote {
  background: var(--c-card);
  border-left: 3px solid var(--c-accent);
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.photo-quote .pq-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.photo-quote p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--c-text);
  font-style: italic;
}

.profile-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  cursor: pointer;
}

.status-badge {
  position: absolute;
  top: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 20px;
  display: none;
}

.profile-photo .status-badge {
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 10px;
}

.card-photo-wrap .status-badge,
.fiche-photo-wrap .status-badge {
  right: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.status-badge:not(:empty) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.status-badge.badge-online {
  background: rgba(61, 220, 126, 0.15);
  color: #3ddc7e;
}

.profile-photo .status-badge.badge-online {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.status-badge.badge-online::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ddc7e;
}

.status-badge.badge-new {
  background: rgba(125, 151, 224, 0.18);
  color: #7d97e0;
}

.profile-photo .status-badge.badge-new,
.profile-photo .status-badge.badge-chatted {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}

.status-badge.badge-chatted {
  background: rgba(214, 51, 132, 0.15);
  color: var(--c-accent);
}

.card-photo-wrap {
  position: relative;
}

.bio-text {
  color: var(--c-text);
}

.bio-meta {
  color: var(--c-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
  text-align: center;
}

.bio-cta-inline {
  text-align: center;
  margin-top: 32px;
}

.bio-cta-inline .cta {
  padding: 17px 40px;
  font-size: 16px;
  margin-top: 0;
}

.bio-text p {
  margin: 0 0 14px;
  line-height: 1.65;
  font-size: 14.5px;
}

.bio-text a:not(.cta) {
  color: var(--c-accent);
  font-weight: 600;
}

/* bandeau pub (rotator par silo) - 3e colonne, meme largeur que la photo (220px). */
.side-banner {
  display: block;
  width: 220px;
  flex-shrink: 0;
  background: var(--c-panel);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

@media (max-width: 900px) {
  .side-banner {
    width: 100%;
    max-width: 320px;
  }
}

.side-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* --- bandeau vertical "tall" (texte EXTERIEUR a la photo, aplats au-dessus/en dessous,
   pas d'overlay sur l'image - se melangeait visuellement avec la photo de fiche adjacente,
   retour Jerome 2026-08-13). RESKIN THEME 3 (2026-08-15, voir SILO_TALL_BANNERS dans
   build_preview.py et dierection-artistic/theme3/components/banner-verticaux/preview-
   banners.html pour la preview validee) : degrade rose en haut (headline), fond blanc en
   bas avec une 2e phrase en texte rose gras - PAS de pill/bouton CTA, toute la carte est
   deja cliquable (c'est un <a>). Remplace l'ancien bleu #2f6fed (variante discret_affar
   Theme 2, plus utilisee par les silos reels de site5). min-height totale 450px. --- */
.side-banner.side-banner-tall {
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.side-banner-tall .sb-text-top {
  background: linear-gradient(135deg, #d63384, #a01e63);
  padding: 20px 18px;
}

.side-banner-tall .sb-headline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.28;
}

.side-banner-tall img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  flex-shrink: 0;
}

.side-banner-tall .sb-text-bottom {
  background: #ffffff;
  padding: 16px;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.side-banner-tall .sb-sub {
  display: block;
  color: #d63384;
  font-weight: 800;
  font-size: 16.5px;
  line-height: 1.35;
}

/* --- bandeau grille par silo (image aplatie, 2026-08-15) --- */

.silo-grid-banner-wrap {
  padding: 40px clamp(20px, 5vw, 64px);
  text-align: center;
}

.silo-grid-banner-wrap img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(214, 51, 132, 0.18);
}

/* --- section likes/dislikes --- */

.section-dark {
  background: var(--c-panel-alt);
  border-top: 1px solid rgba(214, 51, 132, 0.25);
  padding: 44px clamp(20px, 5vw, 64px);
}

.prefs-title {
  font-family: var(--font-heading);
  color: var(--c-text-strong);
  font-size: 26px;
  margin: 0 auto 22px;
  text-align: center;
  max-width: 1400px;
}

.prefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .prefs-grid {
    grid-template-columns: 1fr;
  }
}

.pref-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 22px 24px;
}

.pref-card.likes {
  border-left: 3px solid #3ddc7e;
}

.pref-card.dislikes {
  border-left: 3px solid #ff5f6d;
}

.pref-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pref-head .ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #171114;  /* noir fixe (pas var(--c-bg), qui est rose pale ici et illisible sur fond vert/corail) */
}

.likes .ico { background: #3ddc7e; }
.dislikes .ico { background: #ff5f6d; }

.pref-head span {
  color: var(--c-text-strong);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
}

.pref-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pref-list li {
  color: var(--c-text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}

.likes .pref-list li::before,
.dislikes .pref-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.likes .pref-list li::before { background: #3ddc7e; }
.dislikes .pref-list li::before { background: #ff5f6d; }

.cta-strip {
  text-align: center;
  margin-top: 32px;
}

.cta-strip .cta {
  padding: 17px 40px;
  font-size: 16px;
  margin-top: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 16px;
}

.breadcrumb a {
  color: var(--c-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .crumb-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.breadcrumb span[aria-current="page"] {
  color: var(--c-text-strong);
  font-weight: 600;
}

.back-link {
  font-size: 0.88rem;
  opacity: 0.6;
  text-decoration: none;
  color: var(--c-text-muted);
}

.back-link:hover {
  opacity: 1;
}

.long-desc p {
  margin: 0 0 12px;
}

/* --- bandeau promo pleine page --- */
.promo-bandeau {
  background: var(--c-panel-alt);
  margin: 0 0 24px;
}

/* bandeau image unique deja aplatie (grille 20 photos + headline, silo discret_affar) -
   full-bleed edge-to-edge, marges verticales resserrees (demande Jerome 2026-08-13). */
.kategori-flat-banner {
  margin: 8px 0;
}

.kategori-flat-banner a {
  display: block;
}

.kategori-flat-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-bandeau-link {
  display: block;
  text-decoration: none;
}

.promo-bandeau-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 28px) clamp(14px, 1.8vw, 26px) clamp(14px, 1.6vw, 20px);
}

.promo-headline {
  text-align: center;
  color: var(--c-text-strong);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.1px;
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(4px, 0.6vw, 8px);
  margin: 0 auto clamp(10px, 1.2vw, 14px);
  max-width: 70%;
}

.promo-photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.promo-cta-wrap {
  text-align: center;
  margin-top: clamp(10px, 1.4vw, 16px);
}

.promo-cta {
  display: inline-block;
  color: #ffffff;  /* override : bouton en degrade rose sature, texte fonce (--c-bg, pale) illisible dessus */
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.3px;
  background: var(--c-accent-gradient);
  padding: clamp(10px, 1.2vw, 14px) clamp(24px, 2.8vw, 38px);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(214, 51, 132, 0.4), 0 0 0 1px rgba(255,255,255,0.15) inset;
}

@media (max-width: 900px) {
  .promo-grid { grid-template-columns: repeat(5, 1fr); max-width: 100%; }
}

@media (max-width: 560px) {
  .promo-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- CTA unique --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  background: var(--c-accent-gradient);
  color: #ffffff;  /* bouton en degrade rose sature, blanc lisible (remplace le noir-sur-dore Theme 2) */
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  padding: 16px 30px;
  border-radius: 9px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(214, 51, 132, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

/* --- profils similaires (related-grid) --- */

.similar {
  background: var(--c-panel);
  padding: 40px clamp(20px, 5vw, 64px);
}

.similar > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.similar h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  opacity: 1;
  margin-bottom: 18px;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

@media (max-width: 900px) {
  .similar-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}

.similar-grid a {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.similar-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.similar-grid .sname {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 24px 10px 8px;
  background: linear-gradient(0deg, rgba(6, 8, 14, 0.9), rgba(6, 8, 14, 0));
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}

.similar-grid .status-badge {
  right: 8px;
}

/* --- pied de page --- */

footer.site {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
  font-size: 0.82rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  opacity: 0.85;
  margin-bottom: 20px;
}

.footer-col .footer-cat {
  display: block;
  color: var(--c-text-strong);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col .footer-cat:hover {
  color: var(--c-accent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 5px;
}

.footer-col a {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-col a:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Pages de confiance (skill dating-legal-pages-and-sitemap, 2026-08-16) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 10px 12px;
  color: inherit;
  font: inherit;
}

.contact-form button {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.footer-legal {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--c-text-muted);
  font-size: 0.85em;
}

.footer-legal a {
  color: inherit;
}

.footer-sidkarta-link {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* --- lightbox (clic photo) --- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.lightbox-inner img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 10px;
}

.lightbox-inner .lb-text {
  margin: 16px 0;
  font-size: 1.02rem;
  opacity: 0.9;
  color: var(--c-text-strong);
}

.lightbox-inner .cta {
  margin-top: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
}

/* barre CTA sticky bas de page (fiches profil), full-wide mobile + desktop. */
body:has(.sticky-cta) {
  padding-bottom: 76px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 90;
  background: var(--c-panel-alt);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.4);
}

.sticky-cta-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  text-decoration: none;
  background: var(--c-accent-gradient);
  transition: filter .15s;
}

.sticky-cta-link:hover {
  filter: brightness(0.92);
}

.sticky-cta-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.6);
}

.sticky-cta-text {
  color: #ffffff;  /* barre en degrade rose sature, blanc lisible (remplace le noir-sur-dore Theme 2) */
  font-weight: 800;
  font-size: 1.02rem;
  flex: 1;
  text-align: center;
}

@media (min-width: 900px) {
  .sticky-cta-link {
    justify-content: center;
    padding: 12px 16px;
  }
  .sticky-cta-text {
    flex: none;
  }
}

/* --- funnel bio (variante B validee 2026-08-15) : remplace le premier .cta inline sous la bio,
   par 2 questions oui/non style "message recu", bascule sur un CTA final. Nouveau composant
   ajoute a cote de l'existant, aucune regle ci-dessus modifiee. --- */
.bio-funnel {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  margin-top: 18px;
}
.bio-funnel-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.bio-funnel-progress span {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: var(--c-border);
}
.bio-funnel-progress span.done {
  background: var(--c-accent-gradient);
}
.bio-funnel-step {
  display: none;
}
.bio-funnel-step.active {
  display: block;
}
.bio-funnel-question-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.bio-funnel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--c-accent-gradient);
}
.bio-funnel-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.bio-funnel-answers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bio-funnel-answers button {
  flex: 1;
  min-width: 120px;
  border: 1.5px solid var(--c-accent);
  background: transparent;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: all .15s ease;
  font-family: var(--font-body);
}
.bio-funnel-answers button:hover,
.bio-funnel-answers button.primary {
  background: var(--c-accent-gradient);
  color: #ffffff;
  border-color: transparent;
}
.bio-funnel-final p {
  font-size: 14px;
  color: var(--c-text-muted);
  margin: 0 0 12px;
}
.bio-funnel-final .cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0;
}
