/* ============================================================
   JE-RENCONTRE.FR — Design System CSS
   Thème : Luxe Sensuel / Dark Rose
   Version : 1.0
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─── GOOGLE FONTS IMPORT ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
    /* Couleurs principales */
    --rose:          #e8436a;       /* Rose vif — CTA, liens actifs     */
    --rose-deep:     #c0294f;       /* Rose foncé — hover               */
    --rose-glow:     rgba(232, 67, 106, 0.25);
    --gold:          #d4a853;       /* Or chaud — accents premium        */
    --gold-light:    #f0c878;
    --gold-glow:     rgba(212, 168, 83, 0.2);
    --teal:          #4ecdc4;       /* Teal — badge succès              */
    --success:       #52c97a;

    /* Fonds */
    --bg-base:       #0d0709;       /* Fond principal très sombre        */
    --bg-dark:       #120a0d;       /* Sections alternées               */
    --bg-card:       #1c1017;       /* Cards / panneaux                 */
    --bg-card-hover: #251520;
    --bg-input:      #160d12;

    /* Textes */
    --text-primary:  #f7e8ee;       /* Blanc rosé                       */
    --text-secondary:#b08898;       /* Gris rosé                        */
    --text-muted:    #7a5c6a;

    /* Bordures */
    --border:        #2e1a24;
    --border-accent: #5a2d3f;
    --border-gold:   #6b4c1e;

    /* Typographie */
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'DM Sans', 'Segoe UI', Tahoma, sans-serif;

    /* Effets */
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-pill:   999px;
    --shadow-card:   0 8px 40px rgba(0,0,0,.55);
    --shadow-rose:   0 4px 24px var(--rose-glow);
    --shadow-gold:   0 4px 24px var(--gold-glow);
    --transition:    0.28s cubic-bezier(.4,0,.2,1);
}

/* ─── BODY & TYPOGRAPHIE GLOBALE ───────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
}

/* Headings en Playfair */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: .04em; }

a {
    color: var(--rose);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--rose-deep); }

p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--gold); font-weight: 600; }
em     { color: var(--rose); font-style: italic; }

/* ─── CONTAINER ────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 860px; }

/* ─── NOISE TEXTURE OVERLAY ────────────────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ─── HEADER ────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 7, 9, .92);
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border-bottom: 1px solid var(--border-accent);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(232, 67, 106, .12);
}

/* Ligne de scroll progressive */
.header::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
    transition: transform .1s linear;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo-link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.logo-link span { color: var(--rose); }
.logo-link:hover { color: var(--rose); }
.logo-link img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

/* Nav principale */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
    background: rgba(232, 67, 106, .12);
    color: var(--rose);
}

/* Boutons header */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}

/* ─── BOUTONS ───────────────────────────────────────────────── */

/* Bouton primaire — Rose / CTA principal */
.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    color: #fff;
    box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 67, 106, .45);
    color: #fff;
}
.btn-primary:active { transform: translateY(0); }

/* Scintillement subtil */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%; height: 200%;
    background: rgba(255,255,255,.15);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0%   { left: -60%; }
    100% { left: 160%; }
}

/* Bouton gold — premium / inscription */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
    color: var(--bg-base);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 168, 83, .45);
    color: var(--bg-base);
}

/* Bouton outline */
.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 1.5px solid var(--rose);
}
.btn-outline:hover {
    background: var(--rose-glow);
    color: var(--rose);
}

/* Bouton ghost */
.btn-ghost {
    background: rgba(255,255,255,.04);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--border-accent);
    color: var(--text-primary);
}

/* Tailles */
.btn-sm  { padding: 8px 18px;  font-size: .82rem; }
.btn-lg  { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 52px; font-size: 1.15rem; }
.btn-full { width: 100%; }

/* Pulse animation pour les CTA principaux */
.btn-pulse {
    animation: pulse-rose 2.2s ease-in-out infinite;
}
@keyframes pulse-rose {
    0%, 100% { box-shadow: var(--shadow-rose); }
    50%       { box-shadow: 0 6px 36px rgba(232, 67, 106, .6); }
}

/* ─── HERO / PAGE SECTIONS ──────────────────────────────────── */
.hero-section {
    padding: 140px 0 80px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,67,106,.12) 0%, transparent 70%),
                var(--bg-base);
    position: relative;
}

.hero-section .container {
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    background: rgba(212, 168, 83, .06);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title em {
    color: var(--rose);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ─── MAIN CONTENT ──────────────────────────────────────────── */
.main-content {
    overflow-x: hidden;
    width: 100%;
}

/* Sections alternées */
.section {
    padding: 72px 0;
}
.section--dark  { background: var(--bg-dark); }
.section--card  { background: var(--bg-card); }
.section--base  { background: var(--bg-base); }

/* Titre de section */
.section-header {
    margin-bottom: 48px;
}
.section-header.center { text-align: center; }

.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 540px;
}
.center .section-desc { margin: 0 auto; }

/* Séparateur décoratif */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
    margin: 60px 0;
    border: none;
}

/* ─── CARD PLATEFORME — LISTE / GRILLE ─────────────────────── */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

/* Card de comparateur (listing) */
.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

/* Trait rose en haut au hover */
.platform-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.platform-card:hover::before { transform: scaleX(1); }

.platform-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-rose);
}

/* Badge top / recommandé */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}
.badge--top       { background: rgba(232,67,106,.15); color: var(--rose); border: 1px solid rgba(232,67,106,.3); }
.badge--new       { background: rgba(212,168,83,.15); color: var(--gold); border: 1px solid rgba(212,168,83,.3); }
.badge--gratuit   { background: rgba(82,201,122,.12); color: var(--success); border: 1px solid rgba(82,201,122,.25); }
.badge--premium   { background: rgba(212,168,83,.1);  color: var(--gold-light); border: 1px solid var(--border-gold); }
.badge--adulte    { background: rgba(232,67,106,.1);  color: var(--rose); border: 1px solid var(--border-accent); }

/* En-tête de card */
.card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.card-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--bg-dark);
    border: 1px solid var(--border);
    object-fit: contain;
    padding: 8px;
    flex-shrink: 0;
}

.card-meta {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-niche {
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Score étoiles */
.card-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}
.score-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
}
.score-label {
    font-size: .65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Étoiles */
.stars {
    display: flex;
    gap: 2px;
    margin: 6px 0;
}
.star {
    width: 14px;
    height: 14px;
    color: var(--gold);
    fill: var(--gold);
}
.star.empty { color: var(--border-accent); fill: none; stroke: var(--border-accent); stroke-width: 1.5; }

/* Infos rapides en ligne */
.card-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    font-size: .78rem;
    color: var(--text-secondary);
    white-space: nowrap;
}
.info-pill svg { width: 12px; height: 12px; fill: var(--rose); flex-shrink: 0; }

/* Barres de progression score */
.score-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.score-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.score-bar-label {
    font-size: .78rem;
    color: var(--text-secondary);
    width: 90px;
    flex-shrink: 0;
}
.score-bar-track {
    flex: 1;
    height: 5px;
    background: var(--border);
    border-radius: var(--radius-pill);
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--rose), var(--gold));
    transition: width .6s cubic-bezier(.4,0,.2,1);
}
.score-bar-value {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}

/* Footer card */
.card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ─── PAGE AVIS (SINGLE) ────────────────────────────────────── */

/* Layout grille principale */
.review-wrapper {
    padding: 130px 0 80px;
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 36px;
    align-items: start;
}

/* Sticky sidebar */
.review-sidebar {
    position: sticky;
    top: 90px;
}

/* En-tête de la page avis */
.review-hero {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.review-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
}

.review-hero-top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.review-logo {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-accent);
    background: var(--bg-dark);
    object-fit: contain;
    padding: 12px;
    flex-shrink: 0;
}

.review-title-block { flex: 1; }

.review-site-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.review-niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.niche-tag {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--rose);
    background: rgba(232,67,106,.1);
    border: 1px solid rgba(232,67,106,.2);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.review-global-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 100px;
    flex-shrink: 0;
}
.review-global-score .score-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.review-global-score .score-out {
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 4px;
}
.review-global-score .score-tag {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
}

/* Scores détaillés (grille 2 cols) */
.review-scores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.score-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}
.score-item-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.score-item-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 6px;
}

/* Points forts / faibles */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.pros, .cons {
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border);
}

.pros-title, .cons-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pros-title { color: var(--success); }
.cons-title { color: var(--rose); }

.pros ul, .cons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pros li, .cons li {
    font-size: .85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.pros li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.cons li::before {
    content: '✕';
    color: var(--rose);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── SIDEBAR FICHE RAPIDE ──────────────────────────────────── */
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.sidebar-cta-block {
    border-color: var(--border-accent);
    text-align: center;
}
.sidebar-cta-block .btn { width: 100%; margin-bottom: 10px; }

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Table infos rapides sidebar */
.quick-info-table {
    width: 100%;
    border-collapse: collapse;
}
.quick-info-table tr {
    border-bottom: 1px solid var(--border);
}
.quick-info-table tr:last-child { border-bottom: none; }
.quick-info-table td {
    padding: 11px 6px;
    font-size: .85rem;
    line-height: 1.4;
}
.quick-info-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
    width: 45%;
}
.quick-info-table td:last-child {
    color: var(--text-primary);
    text-align: right;
}

.check-icon { color: var(--success); }
.cross-icon { color: var(--rose); }

/* ─── ARTICLE / CONTENU SEO ─────────────────────────────────── */
.content-article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 24px;
}

.content-article h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-article h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--rose), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.content-article h3 {
    font-size: 1.15rem;
    color: var(--gold);
    margin: 28px 0 14px;
}

.content-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-article ul,
.content-article ol {
    margin: 14px 0 18px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-article li { margin-bottom: 6px; }

/* Image dans l'article */
.article-image-wrapper {
    margin: 28px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.article-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.article-image-caption {
    background: var(--bg-dark);
    padding: 10px 16px;
    font-size: .78rem;
    color: var(--text-muted);
    text-align: center;
}

/* ─── TABLE DE COMPARAISON ──────────────────────────────────── */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.comparison-table thead th {
    background: linear-gradient(135deg, rgba(232,67,106,.2), rgba(212,168,83,.1));
    padding: 14px 18px;
    text-align: left;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-accent);
    white-space: nowrap;
}

.comparison-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: .9rem;
    vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(232,67,106,.04); }

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* ─── TABLEAU DE CONTENU ────────────────────────────────────── */
.toc-block {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-left: 3px solid var(--rose);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 28px;
}

.toc-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
}

.toc-list {
    list-style: none;
    counter-reset: toc;
}
.toc-list li { counter-increment: toc; }
.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: var(--text-secondary);
    font-size: .88rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color var(--transition);
}
.toc-list a::before {
    content: counter(toc, decimal-leading-zero);
    color: var(--border-accent);
    font-size: .7rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
}
.toc-list a:hover { color: var(--rose); }
.toc-list li:last-child a { border-bottom: none; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-accent); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: .92rem;
    color: var(--text-primary);
    gap: 12px;
    user-select: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    background: rgba(232,67,106,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
    padding: 0 22px 18px;
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.75;
    border-top: 1px solid var(--border);
}

/* ─── FILTRES FACETS (FACETWR) ───────────────────────────────── */
.filters-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.filters-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}
.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Checkbox custom */
.facetwp-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    font-size: .875rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    user-select: none;
}
.facetwp-checkbox:hover { color: var(--text-primary); }

.facetwp-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-accent);
    border-radius: 4px;
    background: var(--bg-dark);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition);
}
.facetwp-checkbox input[type="checkbox"]:checked {
    background: var(--rose);
    border-color: var(--rose);
}
.facetwp-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: .65rem;
    color: #fff;
    font-weight: 700;
}

/* Slider range FacetWP */
.facetwp-facet .noUi-target {
    height: 4px;
    background: var(--border);
    border: none;
    border-radius: 2px;
    margin: 16px 0;
    box-shadow: none;
}
.facetwp-facet .noUi-connect {
    background: linear-gradient(90deg, var(--rose), var(--gold));
}
.facetwp-facet .noUi-handle {
    width: 18px !important;
    height: 18px !important;
    background: var(--rose);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-rose);
    cursor: pointer;
    top: -7px !important;
    right: -9px !important;
}
.facetwp-facet .noUi-handle::before,
.facetwp-facet .noUi-handle::after { display: none; }

/* ─── LAYOUT COMPARATEUR (archive + filtres) ─────────────────── */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.catalog-main { min-width: 0; }

.catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog-count {
    font-size: .85rem;
    color: var(--text-muted);
}
.catalog-count span { color: var(--rose); font-weight: 600; }

/* Tri */
.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-size: .85rem;
    font-family: var(--font-body);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--rose); }

/* ─── AUTHOR BLOCK ──────────────────────────────────────────── */
.author-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-accent);
    flex-shrink: 0;
}

.author-info { flex: 1; }

.author-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}

.author-bio {
    font-size: .88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-social {
    display: flex;
    gap: 10px;
}
.author-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}
.author-social a:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: rgba(232,67,106,.08);
}
.author-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ─── BLOCK RELATED ─────────────────────────────────────────── */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all var(--transition);
}
.related-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose);
}

.related-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.related-card-logo {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    object-fit: contain;
    padding: 6px;
    flex-shrink: 0;
}
.related-card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ─── PAGINATION ────────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-btn {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.page-btn:hover {
    border-color: var(--rose);
    color: var(--rose);
}
.page-btn.active {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

/* ─── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-rose);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
    color: #fff;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(232,67,106,.55);
}
.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-accent);
    padding: 64px 0 28px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 52px;
}

.footer-brand .logo-link {
    display: inline-flex;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: .875rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose); }

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 28px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: .8rem;
    color: var(--text-muted);
}
.footer-copyright a { color: var(--rose); }

.footer-mention {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 20px 0 0;
    line-height: 1.6;
}

/* ─── UTILITAIRES ────────────────────────────────────────────── */
.text-rose  { color: var(--rose);  }
.text-gold  { color: var(--gold);  }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }

.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp .5s ease-out both;
}
.animate-in:nth-child(1) { animation-delay: .05s; }
.animate-in:nth-child(2) { animation-delay: .1s; }
.animate-in:nth-child(3) { animation-delay: .15s; }
.animate-in:nth-child(4) { animation-delay: .2s; }
.animate-in:nth-child(5) { animation-delay: .25s; }
.animate-in:nth-child(6) { animation-delay: .3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablette */
@media (max-width: 1024px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
    .review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .catalog-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Mobile L */
@media (max-width: 768px) {
    :root {
        --font-size-base: .9rem;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 10px;
    }
    .header-nav { display: none; } /* Remplacer par burger menu WP */

    .section { padding: 52px 0; }
    .container { padding: 0 16px; }

    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        position: static;
        order: 2;
    }
    .catalog-main { order: 1; }

    .review-sidebar {
        grid-template-columns: 1fr;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .review-scores-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-hero-top {
        flex-wrap: wrap;
    }
    .review-global-score { order: -1; }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .author-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .content-article { padding: 24px 20px; }
    .review-hero { padding: 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px; height: 42px;
    }

    .btn-lg  { padding: 13px 28px; font-size: .95rem; }
    .btn-xl  { padding: 14px 32px; font-size: 1rem; }
}

/* Mobile S */
@media (max-width: 480px) {
    .review-scores-grid { grid-template-columns: 1fr; }
    .card-header { flex-wrap: wrap; }
    .hero-section { padding: 110px 0 60px; }
    .comparison-table { font-size: .82rem; }
    .comparison-table thead th,
    .comparison-table tbody td { padding: 10px 12px; }
}
/* ============================================================
   FOOTER & NAVIGATION — Twenty Twenty-Five Child
   je-rencontre.fr
   ============================================================ */

/* ─── RESET DES STYLES TT25 SUR LE HEADER/NAV ──────────────── */

.wp-block-template-part,
header.wp-block-template-part,
.site-header {
    background: rgba(13, 7, 9, 0.95) !important;
    backdrop-filter: blur(16px) saturate(1.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    border-bottom: 1px solid #2e1a24 !important;
    box-shadow: 0 2px 30px rgba(232, 67, 106, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ─── NAVIGATION PRINCIPALE ─────────────────────────────────── */

/* Conteneur nav TT25 */
.wp-block-navigation,
nav.wp-block-navigation {
    background: transparent !important;
}

/* Liens nav */
.wp-block-navigation a,
.wp-block-navigation .wp-block-navigation-item__content {
    font-family: 'DM Sans', 'Segoe UI', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #b08898 !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

.wp-block-navigation a:hover,
.wp-block-navigation .wp-block-navigation-item__content:hover,
.wp-block-navigation .current-menu-item > .wp-block-navigation-item__content {
    background: rgba(232, 67, 106, 0.12) !important;
    color: #e8436a !important;
}

/* Sous-menus dropdown */
.wp-block-navigation__submenu-container {
    background: #1c1017 !important;
    border: 1px solid #2e1a24 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
    padding: 8px !important;
    min-width: 220px !important;
    overflow: hidden;
}

.wp-block-navigation__submenu-container a,
.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    border-radius: 8px !important;
    text-transform: none !important;
    font-size: 0.875rem !important;
    letter-spacing: 0 !important;
    padding: 10px 14px !important;
    display: block !important;
}

.wp-block-navigation__submenu-container a:hover {
    background: rgba(232, 67, 106, 0.1) !important;
}

/* Flèche dropdown */
.wp-block-navigation__submenu-icon svg {
    fill: #b08898 !important;
    width: 12px !important;
    height: 12px !important;
}

/* Bouton menu mobile (hamburger) */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
    color: #f7e8ee !important;
    background: rgba(232, 67, 106, 0.1) !important;
    border: 1px solid #2e1a24 !important;
    border-radius: 8px !important;
    padding: 8px !important;
    transition: all 0.28s ease !important;
}

.wp-block-navigation__responsive-container-open:hover,
.wp-block-navigation__responsive-container-close:hover {
    background: rgba(232, 67, 106, 0.2) !important;
    border-color: #e8436a !important;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
    fill: #f7e8ee !important;
    width: 22px !important;
    height: 22px !important;
}

/* Menu mobile ouvert */
.wp-block-navigation__responsive-container.is-menu-open {
    background: #0d0709 !important;
    padding: 24px !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    font-size: 1.1rem !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid #2e1a24 !important;
    border-radius: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Logo / titre du site dans le header */
.wp-block-site-title a,
.wp-site-blocks .wp-block-site-title a {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: #f7e8ee !important;
    text-decoration: none !important;
    letter-spacing: -0.02em !important;
}

.wp-block-site-title a:hover {
    color: #e8436a !important;
}

.wp-block-site-tagline {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.8rem !important;
    color: #7a5c6a !important;
    letter-spacing: 0.06em !important;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */

footer.wp-block-template-part,
.site-footer,
.wp-block-template-part[data-type="core/template-part"] {
    background: #120a0d !important;
    border-top: 1px solid #5a2d3f !important;
    margin-top: 80px;
    padding: 64px 0 0 !important;
}

/* Conteneur intérieur du footer */
footer .wp-block-group,
.site-footer .wp-block-group {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Colonnes footer */
footer .wp-block-columns,
.site-footer .wp-block-columns {
    gap: 48px !important;
    margin-bottom: 52px !important;
    align-items: flex-start !important;
}

/* Titres des widgets footer */
footer .wp-block-heading,
.site-footer .wp-block-heading,
footer h2, footer h3, footer h4,
.site-footer h2, .site-footer h3, .site-footer h4 {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #b08898 !important;
    margin-bottom: 18px !important;
}

/* Paragraphes footer */
footer p,
.site-footer p {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;
    color: #7a5c6a !important;
    line-height: 1.7 !important;
}

/* Liens footer */
footer a,
.site-footer a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.875rem !important;
    color: #7a5c6a !important;
    text-decoration: none !important;
    transition: color 0.28s ease !important;
    display: inline-block;
    margin-bottom: 8px;
}

footer a:hover,
.site-footer a:hover {
    color: #e8436a !important;
}

/* Liste de liens footer */
footer ul,
.site-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer ul li,
.site-footer ul li {
    margin-bottom: 8px !important;
}

/* Nav footer (menu légal) */
footer .wp-block-navigation a,
.site-footer .wp-block-navigation a,
footer .wp-block-navigation .wp-block-navigation-item__content,
.site-footer .wp-block-navigation .wp-block-navigation-item__content {
    font-size: 0.8rem !important;
    color: #7a5c6a !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

footer .wp-block-navigation a:hover,
.site-footer .wp-block-navigation a:hover {
    color: #e8436a !important;
    background: transparent !important;
}

/* Séparateur footer */
footer hr,
.site-footer hr,
footer .wp-block-separator {
    border: none !important;
    height: 1px !important;
    background: #2e1a24 !important;
    margin: 40px 0 !important;
    opacity: 1 !important;
}

/* Copyright bottom bar */
.footer-bottom-bar,
footer .wp-block-group:last-child,
.site-footer .wp-block-group:last-child {
    background: #0d0709 !important;
    padding: 20px 24px !important;
    text-align: center;
    border-top: 1px solid #2e1a24;
    margin-top: 0;
}

footer .wp-block-group:last-child p,
.site-footer .wp-block-group:last-child p {
    font-size: 0.78rem !important;
    color: #7a5c6a !important;
    margin: 0 !important;
}

footer .wp-block-group:last-child a,
.site-footer .wp-block-group:last-child a {
    color: #e8436a !important;
    font-size: 0.78rem !important;
}

/* ─── ÉLÉMENTS GUTENBERG DANS FOOTER/HEADER ─────────────────── */

/* Image logo dans le header */
.wp-block-site-logo img,
header .wp-block-image img {
    max-height: 48px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Social links dans le footer */
.wp-block-social-links {
    gap: 10px !important;
}

.wp-block-social-link {
    background: #1c1017 !important;
    border: 1px solid #2e1a24 !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    transition: all 0.28s ease !important;
}

.wp-block-social-link:hover {
    background: rgba(232, 67, 106, 0.15) !important;
    border-color: #e8436a !important;
    transform: translateY(-2px);
}

.wp-block-social-link a {
    color: #b08898 !important;
    background: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.wp-block-social-link a:hover {
    color: #e8436a !important;
}

.wp-block-social-link svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
}

/* Search block dans le header */
.wp-block-search__input {
    background: #1c1017 !important;
    border: 1px solid #2e1a24 !important;
    color: #f7e8ee !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.875rem !important;
    outline: none !important;
    transition: border-color 0.28s ease !important;
}

.wp-block-search__input:focus {
    border-color: #e8436a !important;
    box-shadow: 0 0 0 3px rgba(232, 67, 106, 0.15) !important;
}

.wp-block-search__input::placeholder {
    color: #7a5c6a !important;
}

.wp-block-search__button {
    background: linear-gradient(135deg, #e8436a, #c0294f) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 8px 20px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.28s ease !important;
}

.wp-block-search__button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(232, 67, 106, 0.4) !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    footer .wp-block-columns,
    .site-footer .wp-block-columns {
        flex-direction: column !important;
        gap: 32px !important;
    }

    footer .wp-block-column,
    .site-footer .wp-block-column {
        width: 100% !important;
        flex-basis: 100% !important;
    }

    footer.wp-block-template-part,
    .site-footer {
        padding: 40px 0 0 !important;
    }

    footer .wp-block-group,
    .site-footer .wp-block-group {
        padding: 0 16px;
    }
}