/**
 * ════════════════════════════════════════════════════════════════════
 *  ANNUAIRE HYROX ROXZONE — CSS centralisé
 *
 *  Couvre : home annuaire, pages-villes, pages-départements, fiches salles.
 *  Ce fichier est chargé conditionnellement par functions.php uniquement
 *  sur les pages de l'annuaire pour ne pas alourdir le reste du site.
 *
 *  Sommaire :
 *  1. Polices Google Fonts (Teko + Ubuntu)
 *  2. Variables CSS et reset
 *  3. Composants partagés (container, breadcrumb, hero, section-header, claim-cta)
 *  4. Home annuaire (search-form, top-villes, datalist)
 *  5. Page-ville (arr-nav, arr-section, salles-list, editorial, maillage)
 *  6. Page-département (alpha-nav, letter-section, villes-list)
 *  7. Fiche salle (profile-card, map-column, apropos, claim-form, nearby-grid, mobile-sticky-cta)
 *  8. Utilitaires et media queries globales
 * ════════════════════════════════════════════════════════════════════
 */


/* ═══ 1. POLICES GOOGLE FONTS ════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Ubuntu:wght@300;400;500;700&display=swap');


/* ═══ 2. VARIABLES CSS ET RESET ══════════════════════════════════════ */
:root {
    --rx-dark: #0d0d1a;
    --rx-accent: #f23621;
    --rx-accent-dim: #d62a17;
    --rx-bg: #ffffff;
    --rx-bg-alt: #f7f6f3;
    --rx-bg-card: #fafaf8;
    --rx-text: #1a1a1f;
    --rx-text-mute: #6b6b73;
    --rx-text-dim: #a0a0a8;
    --rx-border: #e8e6e1;
    --rx-border-strong: #d4d2cc;
    --font-display: 'Teko', sans-serif;
    --font-body: 'Ubuntu', sans-serif;
}

/* Reset léger ciblé sur l'annuaire — ne pas casser le reste du site */
.roxzone-annuaire-page * {
    box-sizing: border-box;
}
.roxzone-annuaire-page {
    font-family: var(--font-body);
    color: var(--rx-text);
    background: var(--rx-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
.roxzone-annuaire-page html {
    scroll-behavior: smooth;
}


/* ═══ 3. COMPOSANTS PARTAGÉS ═════════════════════════════════════════ */

/* Container générique */
.roxzone-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.roxzone-container-narrow {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumb */
.roxzone-breadcrumb {
    padding: 24px 0 0;
    font-size: 13px;
    color: var(--rx-text-mute);
}
.roxzone-breadcrumb a {
    color: var(--rx-text-mute);
    text-decoration: none;
}
.roxzone-breadcrumb a:hover {
    color: var(--rx-accent);
}
.roxzone-breadcrumb .sep {
    margin: 0 8px;
    opacity: 0.4;
}
.roxzone-breadcrumb .current {
    color: var(--rx-text);
    font-weight: 500;
}

/* Hero générique */
.roxzone-hero {
    padding: 28px 0 32px;
    border-bottom: 1px solid var(--rx-border);
}
.roxzone-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rx-accent);
    margin-bottom: 14px;
}
.roxzone-hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--rx-accent);
}
.roxzone-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 72px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    color: var(--rx-text);
    margin: 0 0 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.roxzone-h1-large {
    font-size: clamp(48px, 7vw, 80px);
}
.roxzone-hero-sub {
    font-size: 16px;
    color: var(--rx-text-mute);
    line-height: 1.5;
    max-width: 720px;
}
.roxzone-hero-sub strong {
    color: var(--rx-text);
    font-weight: 700;
}
.roxzone-hero-sub a {
    color: var(--rx-accent);
    text-decoration: none;
    font-weight: 500;
}
.roxzone-hero-sub a:hover {
    text-decoration: underline;
}
.roxzone-hero-location {
    font-size: 17px;
    color: var(--rx-text-mute);
    font-weight: 400;
}
.roxzone-hero-location strong {
    color: var(--rx-text);
    font-weight: 700;
}

/* Section header */
.roxzone-section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rx-text);
}
.roxzone-section-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--rx-accent);
    letter-spacing: 0.04em;
}
.roxzone-h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
    letter-spacing: 0.005em;
    flex: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rx-text);
    margin: 0;
}
.roxzone-h2-large {
    font-size: clamp(32px, 4.5vw, 48px);
}

/* Séparateur ville/département (utilisé dans les vues groupées) */
.roxzone-city-separator,
.roxzone-dept-separator {
    background: var(--rx-dark);
    color: white;
    padding: 32px 24px;
    text-align: center;
    border-top: 4px solid var(--rx-accent);
}
.roxzone-dept-separator {
    padding: 36px 24px;
}
.roxzone-separator-eyebrow,
.roxzone-separator-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--rx-accent);
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.roxzone-separator-name {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}
.roxzone-dept-separator .roxzone-separator-name {
    font-size: 42px;
    margin-bottom: 10px;
}
.roxzone-separator-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}
.roxzone-dept-separator .roxzone-separator-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Claim CTA générique (bandeau "Réclamer ma fiche") */
.roxzone-claim-cta {
    background: var(--rx-dark);
    color: white;
    padding: 48px 0;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}
.roxzone-claim-cta::before {
    content: 'CLAIM';
    position: absolute;
    top: -30px;
    right: -20px;
    font-family: var(--font-display);
    font-size: 280px;
    color: rgba(242, 54, 33, 0.06);
    letter-spacing: -0.02em;
    line-height: 0.85;
    pointer-events: none;
    font-weight: 600;
}
.roxzone-claim-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.roxzone-claim-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
    margin-bottom: 16px;
}
.roxzone-claim-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}
.roxzone-claim-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 540px;
}
.roxzone-claim-button-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.roxzone-claim-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--rx-accent);
    color: white;
    padding: 16px 26px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.15s;
}
.roxzone-claim-button:hover {
    background: var(--rx-accent-dim);
    color: white;
}
.roxzone-claim-button::after {
    content: '→';
    font-size: 16px;
}
.roxzone-claim-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}


/* ═══ 4. HOME ANNUAIRE ═══════════════════════════════════════════════ */

.roxzone-home-hero {
    background: var(--rx-dark);
    color: white;
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.roxzone-home-hero .roxzone-h1 {
    color: white;
}
.roxzone-home-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin-bottom: 32px;
}

/* Stats home */
.roxzone-home-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.roxzone-hero-stat {
    flex: 1;
}
.roxzone-hero-stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
    color: var(--rx-accent);
    font-weight: 600;
    margin-bottom: 4px;
}
.roxzone-hero-stat-label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

/* Search form home */
.roxzone-search-form {
    display: flex;
    gap: 12px;
    max-width: 560px;
    margin-bottom: 32px;
}
.roxzone-search-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
    transition: border-color 0.15s;
}
.roxzone-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.roxzone-search-input:focus {
    border-color: var(--rx-accent);
    background: rgba(255, 255, 255, 0.08);
}
.roxzone-search-submit {
    background: var(--rx-accent);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.15s;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.roxzone-search-submit::after {
    content: '→';
    font-size: 14px;
}
.roxzone-search-submit:hover {
    background: var(--rx-accent-dim);
}

/* Top villes home */
.roxzone-top-villes {
    padding: 56px 0;
    background: var(--rx-bg-alt);
}
.roxzone-top-villes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.roxzone-ville-card {
    background: white;
    border: 1px solid var(--rx-border);
    padding: 20px 22px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.15s;
    border-radius: 3px;
}
.roxzone-ville-card:hover {
    border-color: var(--rx-text);
    transform: translateY(-2px);
}
.roxzone-ville-card-name {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    color: var(--rx-text);
}
.roxzone-ville-card-meta {
    font-size: 13px;
    color: var(--rx-text-mute);
}
.roxzone-ville-card-meta strong {
    color: var(--rx-accent);
    font-weight: 700;
}

/* Liste des départements (home) */
.roxzone-depts-section {
    padding: 56px 0 80px;
}
.roxzone-depts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.roxzone-dept-letter-group h3 {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    color: var(--rx-accent);
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--rx-border);
}
.roxzone-dept-letter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.roxzone-dept-letter-group li {
    margin-bottom: 6px;
    font-size: 14px;
}
.roxzone-dept-letter-group a {
    color: var(--rx-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.15s;
}
.roxzone-dept-letter-group a:hover {
    border-color: var(--rx-accent);
    color: var(--rx-accent);
}
.roxzone-dept-letter-group .count {
    font-size: 11px;
    color: var(--rx-text-mute);
    margin-left: 6px;
}


/* ═══ 5. PAGE-VILLE ══════════════════════════════════════════════════ */

/* Navigation par arrondissement (option C pour Paris/Lyon/Marseille) */
.roxzone-arr-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--rx-border);
    border-radius: 4px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.roxzone-arr-nav-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 8px;
    color: var(--rx-text);
}
.roxzone-arr-nav a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--rx-bg-alt);
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rx-text);
    text-decoration: none;
    transition: all 0.12s;
    white-space: nowrap;
}
.roxzone-arr-nav a:hover {
    background: var(--rx-dark);
    color: white;
    border-color: var(--rx-dark);
}
.roxzone-arr-nav-count {
    font-size: 11px;
    color: var(--rx-text-mute);
}
.roxzone-arr-nav a:hover .roxzone-arr-nav-count {
    color: rgba(255, 255, 255, 0.7);
}

/* Section par arrondissement */
.roxzone-arr-section {
    margin-bottom: 36px;
    scroll-margin-top: 100px;
}
.roxzone-arr-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--rx-accent);
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rx-text);
    display: inline-block;
    padding-right: 20px;
    text-transform: uppercase;
}
.roxzone-arr-title-count {
    font-size: 18px;
    color: var(--rx-text-mute);
    font-weight: 500;
}
.roxzone-arr-salles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Section salles-list */
.roxzone-salles-list-section {
    padding: 48px 0;
    background: var(--rx-bg-alt);
    border-top: 1px solid var(--rx-border);
    border-bottom: 1px solid var(--rx-border);
}
.roxzone-salles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Fiches dans une liste */
.roxzone-salle-item {
    background: white;
    border: 1px solid var(--rx-border);
    padding: 18px 22px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all 0.15s;
}
.roxzone-salle-item:hover {
    border-color: var(--rx-text);
}
.roxzone-salle-name {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0 0 6px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rx-text);
}
.roxzone-salle-info-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
    color: var(--rx-text-mute);
}
.roxzone-salle-info-row strong {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rx-text);
    font-weight: 700;
    min-width: 60px;
}
.roxzone-salle-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 2px solid var(--rx-accent);
    color: var(--rx-accent);
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.15s;
    white-space: nowrap;
}
.roxzone-salle-cta::after {
    content: '→';
    font-size: 13px;
}
.roxzone-salle-cta:hover {
    background: var(--rx-accent);
    color: white;
}

/* Éditorial 2 colonnes (page-ville) */
.roxzone-editorial {
    padding: 48px 0 56px;
}
.roxzone-editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    align-items: start;
}
.roxzone-prose {
    font-size: 16px;
    line-height: 1.75;
    color: var(--rx-text);
}
.roxzone-prose p {
    margin-bottom: 18px;
}
.roxzone-prose p:last-child {
    margin-bottom: 0;
}
.roxzone-prose a {
    color: var(--rx-text);
    text-decoration: underline;
    text-decoration-color: var(--rx-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.roxzone-prose a:hover {
    color: var(--rx-accent);
}
.roxzone-prose strong {
    font-weight: 700;
}
.roxzone-prose h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin: 30px 0 12px;
    letter-spacing: 0.01em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

/* Event card */
.roxzone-event-card {
    background: var(--rx-bg-card);
    border: 1px solid var(--rx-border);
    padding: 24px;
    border-radius: 4px;
}
.roxzone-event-eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
    margin-bottom: 12px;
}
.roxzone-event-title {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1.02;
    margin: 0 0 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.005em;
}
.roxzone-event-meta {
    font-size: 14px;
    color: var(--rx-text-mute);
    line-height: 1.6;
    margin-bottom: 20px;
}
.roxzone-event-meta strong {
    color: var(--rx-text);
    font-weight: 700;
}
.roxzone-event-meta .distance {
    color: var(--rx-accent);
    font-weight: 700;
}
.roxzone-event-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rx-accent);
    text-decoration: none;
    padding-top: 16px;
    border-top: 1px solid var(--rx-border);
    width: 100%;
}
.roxzone-event-cta::after {
    content: '→';
    transition: transform 0.15s;
}
.roxzone-event-cta:hover::after {
    transform: translateX(4px);
}

/* Maillage générique (pages-villes et fiches) */
.roxzone-maillage {
    padding: 48px 0;
}
.roxzone-maillage-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px;
    background: var(--rx-bg-alt);
    border-radius: 4px;
}
.roxzone-maillage-col h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--rx-text);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1;
}
.roxzone-maillage-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.roxzone-maillage-col li {
    margin-bottom: 10px;
}
.roxzone-maillage-col a {
    color: var(--rx-text);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.15s;
}
.roxzone-maillage-col a:hover {
    border-color: var(--rx-accent);
    color: var(--rx-accent);
}
.roxzone-maillage-col .count {
    font-size: 12px;
    color: var(--rx-text-mute);
    margin-left: 6px;
}


/* ═══ 6. PAGE-DÉPARTEMENT ═════════════════════════════════════════════ */

/* Navigation alphabétique sticky */
.roxzone-alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 36px;
    padding: 18px 0;
    border-top: 1px solid var(--rx-border);
    border-bottom: 1px solid var(--rx-border);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}
.roxzone-alpha-nav a,
.roxzone-alpha-nav .alpha-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.12s;
    letter-spacing: 0.02em;
}
.roxzone-alpha-nav a {
    background: var(--rx-bg-alt);
    color: var(--rx-text);
    border: 1px solid transparent;
}
.roxzone-alpha-nav a:hover {
    background: var(--rx-dark);
    color: white;
}
.roxzone-alpha-nav .alpha-disabled {
    color: var(--rx-text-dim);
    cursor: not-allowed;
    background: transparent;
}

/* Section par lettre (page-département) */
.roxzone-letter-section {
    margin-bottom: 40px;
    scroll-margin-top: 80px;
}
.roxzone-letter-title {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--rx-accent);
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rx-text);
    display: inline-block;
    padding-right: 20px;
}
.roxzone-villes-list {
    columns: 3;
    column-gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.roxzone-villes-list li {
    list-style: none;
    break-inside: avoid;
    margin-bottom: 10px;
    font-size: 15px;
}
.roxzone-villes-list a {
    color: var(--rx-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.15s;
}
.roxzone-villes-list a:hover {
    border-color: var(--rx-accent);
    color: var(--rx-accent);
}
.roxzone-villes-list .count {
    font-size: 12px;
    color: var(--rx-text-mute);
    margin-left: 6px;
}


/* ═══ 7. FICHE SALLE ═════════════════════════════════════════════════ */

.roxzone-salle-page {
    border-bottom: 6px solid var(--rx-bg-alt);
}

/* Layout 2 colonnes : profile-card + map */
.roxzone-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    padding: 48px 0;
}

/* Profile card sombre */
.roxzone-profile-card {
    background: var(--rx-dark);
    color: white;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.roxzone-profile-card-header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.roxzone-profile-card-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
}
.roxzone-profile-card-name {
    padding: 22px 28px 4px;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    margin: 0;
}
.roxzone-profile-card-city {
    padding: 16px 28px 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0;
}
.roxzone-stats-grid {
    /* Séparateur géré par border-bottom du .roxzone-profile-card-header */
}
.roxzone-stat-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 14px 28px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
    min-height: 52px;
}
.roxzone-stat-row:last-child {
    border-bottom: none;
}
.roxzone-stat-row-business:first-of-type {
    border-top: 1px solid rgba(242, 54, 33, 0.18);
    margin-top: 6px;
    position: relative;
}
.roxzone-stat-row-business:first-of-type::before {
    content: 'Opportunités business';
    position: absolute;
    top: -8px;
    left: 28px;
    background: var(--rx-dark);
    padding: 0 8px;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
}
.roxzone-stat-label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}
.roxzone-stat-value {
    font-size: 14.5px;
    color: white;
    font-weight: 400;
    word-break: break-word;
}
.roxzone-stat-value a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
    transition: border-color 0.15s, color 0.15s;
}
.roxzone-stat-value a:hover {
    border-color: var(--rx-accent);
    color: var(--rx-accent);
}
.roxzone-stat-empty {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}
.roxzone-stat-empty::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.roxzone-stat-empty .lock {
    font-size: 10px;
    color: var(--rx-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    white-space: nowrap;
}
.roxzone-profile-card-footer {
    background: rgba(242, 54, 33, 0.08);
    border-top: 1px solid rgba(242, 54, 33, 0.25);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.roxzone-profile-card-footer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}
.roxzone-profile-card-footer-text strong {
    color: var(--rx-accent);
    font-weight: 700;
}
.roxzone-profile-card-footer a {
    flex-shrink: 0;
    font-size: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border: 1px solid var(--rx-accent);
    border-radius: 2px;
    transition: all 0.15s;
}
.roxzone-profile-card-footer a:hover {
    background: var(--rx-accent);
    color: white;
}

/* Map column */
.roxzone-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.roxzone-map-wrap {
    background: var(--rx-bg-alt);
    border: 1px solid var(--rx-border);
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
}
.roxzone-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.roxzone-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4f0 0%, #e8f0ed 100%);
    color: var(--rx-text-mute);
    font-size: 13px;
    text-align: center;
    padding: 20px;
}
.roxzone-map-meta {
    font-size: 12px;
    background: white;
    padding: 12px 14px;
    border: 1px solid var(--rx-border);
    border-radius: 4px;
    color: var(--rx-text-mute);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.roxzone-map-meta .coords {
    color: var(--rx-text);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.roxzone-map-meta a {
    color: var(--rx-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.roxzone-quick-info {
    background: var(--rx-bg-alt);
    border-left: 3px solid var(--rx-accent);
    padding: 16px 20px;
    font-size: 14px;
}
.roxzone-quick-info-label {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
    margin-bottom: 6px;
}
.roxzone-quick-info-value {
    color: var(--rx-text);
    line-height: 1.5;
}
.roxzone-quick-info-value strong {
    font-weight: 700;
}

/* À propos section */
.roxzone-apropos-section {
    padding: 48px 0 56px;
    border-top: 1px solid var(--rx-border);
}
.roxzone-apropos {
    font-size: 16px;
    line-height: 1.75;
    color: var(--rx-text);
    max-width: 760px;
}
.roxzone-apropos p {
    margin-bottom: 18px;
}
.roxzone-apropos p:last-child {
    margin-bottom: 0;
}
.roxzone-apropos strong {
    font-weight: 700;
}

/* Claim form section */
.roxzone-claim-form-section {
    padding: 56px 0 64px;
    background: var(--rx-bg-alt);
    scroll-margin-top: 24px;
}
.roxzone-claim-form-wrap {
    max-width: 720px;
    margin: 0 auto;
}
.roxzone-claim-form-header {
    text-align: center;
    margin-bottom: 36px;
}
.roxzone-claim-form-eyebrow {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rx-accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.roxzone-claim-form-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 0.95;
    letter-spacing: 0.005em;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--rx-text);
}
.roxzone-claim-form-sub {
    font-size: 15px;
    color: var(--rx-text-mute);
    line-height: 1.55;
    max-width: 540px;
    margin: 0 auto;
}
.roxzone-claim-form {
    background: white;
    border: 1px solid var(--rx-border);
    padding: 36px;
    border-radius: 4px;
}
.roxzone-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}
.roxzone-form-row-single {
    margin-bottom: 18px;
}
.roxzone-form-field {
    display: flex;
    flex-direction: column;
}
.roxzone-form-field label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rx-text);
    font-weight: 700;
    margin-bottom: 6px;
}
.roxzone-form-field label .required {
    color: var(--rx-accent);
    margin-left: 2px;
}
.roxzone-form-field input,
.roxzone-form-field select,
.roxzone-form-field textarea {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 11px 14px;
    border: 1px solid var(--rx-border-strong);
    border-radius: 2px;
    background: white;
    color: var(--rx-text);
    transition: border-color 0.15s;
    outline: none;
    width: 100%;
}
.roxzone-form-field input:focus,
.roxzone-form-field select:focus,
.roxzone-form-field textarea:focus {
    border-color: var(--rx-accent);
}
.roxzone-form-field input[readonly] {
    background: var(--rx-bg-alt);
    color: var(--rx-text-mute);
    cursor: not-allowed;
}
.roxzone-form-field textarea {
    resize: vertical;
    min-height: 110px;
    font-family: var(--font-body);
}
.roxzone-form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231a1a1f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.roxzone-form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.roxzone-form-disclaimer {
    font-size: 12px;
    color: var(--rx-text-mute);
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
    margin: 0;
}
.roxzone-form-submit {
    background: var(--rx-accent);
    color: white;
    border: none;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.15s;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.roxzone-form-submit::after {
    content: '→';
    font-size: 16px;
}
.roxzone-form-submit:hover {
    background: var(--rx-accent-dim);
}

/* Nearby grid (fiches voisines) */
.roxzone-nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.roxzone-nearby-card {
    border: 1px solid var(--rx-border);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.15s;
    background: white;
    position: relative;
}
.roxzone-nearby-card:hover {
    border-color: var(--rx-text);
    transform: translateY(-2px);
}
.roxzone-nearby-distance {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.03em;
    color: var(--rx-accent);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1;
}
.roxzone-nearby-name {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    margin: 0 0 6px;
    letter-spacing: 0.005em;
    font-weight: 600;
    text-transform: uppercase;
}
.roxzone-nearby-city {
    font-size: 13px;
    color: var(--rx-text-mute);
    margin: 0;
}
.roxzone-nearby-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 20px;
    color: var(--rx-text-dim);
    transition: color 0.15s;
}
.roxzone-nearby-card:hover .roxzone-nearby-arrow {
    color: var(--rx-accent);
}

/* Signal "Cette salle a fermé ?" */
.roxzone-signal {
    padding: 32px 0 56px;
    border-top: 1px solid var(--rx-border);
    margin-top: 16px;
}
.roxzone-signal-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.roxzone-signal-text {
    font-size: 14px;
    color: var(--rx-text-mute);
}
.roxzone-signal-text strong {
    color: var(--rx-text);
    font-weight: 700;
}
.roxzone-signal a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rx-text);
    text-decoration: none;
    border-bottom: 2px solid var(--rx-accent);
    padding-bottom: 2px;
    font-weight: 700;
}
.roxzone-signal a:hover {
    color: var(--rx-accent);
}

/* Mobile sticky CTA */
.roxzone-mobile-sticky-cta {
    display: none;
}


/* ═══ 8. RESPONSIVE / MOBILE ═════════════════════════════════════════ */

@media (max-width: 900px) {
    .roxzone-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0;
    }
    .roxzone-editorial-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 800px) {
    .roxzone-claim-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .roxzone-nearby-grid {
        grid-template-columns: 1fr;
    }
    .roxzone-maillage-links {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .roxzone-villes-list {
        columns: 2;
    }
    /* Padding bottom du body pour laisser place au sticky CTA mobile */
    body.single-cpt_salle {
        padding-bottom: 80px;
    }
    .roxzone-mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--rx-dark);
        padding: 12px 16px;
        z-index: 100;
        gap: 12px;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--rx-accent);
    }
    .roxzone-mobile-sticky-cta-text {
        flex: 1;
        color: white;
        font-size: 13px;
        line-height: 1.3;
    }
    .roxzone-mobile-sticky-cta-text strong {
        font-family: var(--font-display);
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        font-weight: 600;
        color: white;
        display: block;
        line-height: 1;
        margin-bottom: 2px;
    }
    .roxzone-mobile-sticky-cta-text span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 11px;
    }
    .roxzone-mobile-sticky-cta a {
        background: var(--rx-accent);
        color: white;
        padding: 14px 20px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        text-decoration: none;
        border-radius: 2px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .roxzone-mobile-sticky-cta a::after {
        content: '→';
    }
}

@media (max-width: 700px) {
    .roxzone-salle-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }
    .roxzone-salle-cta {
        width: 100%;
        justify-content: center;
    }
    .roxzone-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .roxzone-claim-form {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .roxzone-stat-row {
        grid-template-columns: 95px 1fr;
        padding: 12px 18px;
        gap: 10px;
    }
    .roxzone-stat-label {
        font-size: 9.5px;
        letter-spacing: 0.1em;
    }
    .roxzone-stat-value {
        font-size: 13px;
    }
    .roxzone-stat-empty {
        gap: 8px;
        font-size: 12px;
    }
    .roxzone-stat-empty::before {
        display: none;
    }
    .roxzone-stat-empty .lock {
        font-size: 9px;
        letter-spacing: 0.08em;
    }
    .roxzone-profile-card-header,
    .roxzone-profile-card-name,
    .roxzone-profile-card-city,
    .roxzone-profile-card-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
    .roxzone-stat-row-business:first-of-type::before {
        left: 18px;
    }
}

@media (max-width: 500px) {
    .roxzone-villes-list {
        columns: 1;
    }
}
/* ════════════════════════════════════════════════════════════════════
 *  ROXZONE — Patch CSS pour single-cpt_dept.php
 *  À AJOUTER à la fin du fichier annuaire.css
 * ════════════════════════════════════════════════════════════════════ */
 
 
/* ── Label "Naviguer par lettre" devant la nav alphabétique ── */
.roxzone-alpha-nav-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 8px;
    color: var(--rx-text);
    display: inline-flex;
    align-items: center;
}
 
 
/* ── Département voisin non-cliquable (pas de page-dept créée) ── */
.roxzone-maillage-disabled {
    display: block;
    color: var(--rx-text-mute);
    cursor: not-allowed;
}
.roxzone-maillage-disabled .count {
    color: var(--rx-text-mute);
}
 
 
/* ── Signal admin "Page-ville à créer" (visible uniquement admin) ── */
.roxzone-admin-warn {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #b8860b;
    background: rgba(184, 134, 11, 0.08);
    border: 1px solid rgba(184, 134, 11, 0.25);
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.4;
}
 
 
/* ── Flèche dans les ville-card de la page-département ── */
.roxzone-ville-card-arrow {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--rx-accent);
    margin-left: 8px;
    transition: transform 0.2s ease;
}
.roxzone-ville-card:hover .roxzone-ville-card-arrow {
    transform: translateX(4px);
}
/* ── Grid responsive des ville-cards dans letter-section ── */
.roxzone-letter-section > .roxzone-ville-card {
    margin-bottom: 12px;
}
@media (min-width: 700px) {
    .roxzone-letter-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 12px;
        align-items: start;
    }
    .roxzone-letter-section .roxzone-letter-title {
        grid-column: 1 / -1;
        margin-bottom: 0;
    }
    .roxzone-letter-section > .roxzone-ville-card {
        margin-bottom: 0;
    }
}
/* ════════════════════════════════════════════════════════════════════
 *  ROXZONE — Patch CSS pour page-salles-hyrox.php (home annuaire)
 *  À AJOUTER à la fin du fichier annuaire.css
 * ════════════════════════════════════════════════════════════════════ */


/* ── Section champ de recherche ── */
.roxzone-search-section {
    margin: 0 0 48px;
    padding: 32px 28px;
    background: var(--rx-dark);
    border-radius: 4px;
    color: white;
}
/* Reset défensif contre les styles form globaux d'Astra */
.roxzone-search-section .roxzone-search-form,
.roxzone-search-section .roxzone-search-form > *:not(datalist) {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.roxzone-search-section .roxzone-search-form > datalist {
    display: none !important;
}
.roxzone-search-section .roxzone-search-form {
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 700px !important;
}
.roxzone-search-section .roxzone-search-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--rx-accent);
    margin-bottom: 12px !important;
}
.roxzone-search-section .roxzone-search-wrap {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    width: 100% !important;
}
.roxzone-search-section .roxzone-search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    color: white;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.2s;
    margin: 0;
}
.roxzone-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.roxzone-search-input:focus {
    outline: none;
    border-color: var(--rx-accent);
    background: rgba(255, 255, 255, 0.08);
}
.roxzone-search-input-error {
    border-color: var(--rx-accent);
    animation: roxzone-shake 0.3s;
}
@keyframes roxzone-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}
.roxzone-search-section .roxzone-search-submit {
    padding: 14px 28px;
    background: var(--rx-accent);
    color: white;
    border: none;
    border-radius: 3px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    margin: 0;
    width: auto;
}
.roxzone-search-section .roxzone-search-submit:hover {
    background: var(--rx-accent-dim);
}
.roxzone-search-section .roxzone-search-help {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.roxzone-search-help-error {
    color: var(--rx-accent);
}
.roxzone-search-help-error strong {
    color: white;
}
 
@media (max-width: 600px) {
    .roxzone-search-section {
        padding: 24px 20px;
    }
    .roxzone-search-wrap {
        grid-template-columns: 1fr;
    }
}


/* ── Section /02 : grille des départements ── */
.roxzone-home-depts-section {
    margin: 48px 0;
    scroll-margin-top: 80px;
}
.roxzone-home-depts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
    margin-top: 24px;
}
.roxzone-home-dept-card {
    display: block;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--rx-border);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
.roxzone-home-dept-card:hover {
    border-color: var(--rx-text);
    transform: translateY(-2px);
}
.roxzone-home-dept-card-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.roxzone-home-dept-card-disabled:hover {
    transform: none;
    border-color: var(--rx-border);
}
.roxzone-home-dept-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--rx-accent);
    line-height: 1;
}
.roxzone-home-dept-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--rx-text);
    margin-top: 6px;
    line-height: 1.2;
}
.roxzone-home-dept-count {
    font-size: 12px;
    color: var(--rx-text-mute);
    margin-top: 4px;
}


/* ── Section /03 : top des villes ── */
.roxzone-home-villes-section {
    margin: 48px 0;
    scroll-margin-top: 80px;
}
.roxzone-home-villes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.roxzone-home-ville-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 12px;
    padding: 20px 22px;
    background: white;
    border: 1px solid var(--rx-border);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}
.roxzone-home-ville-card:hover {
    border-color: var(--rx-text);
    transform: translateY(-2px);
}
.roxzone-home-ville-name {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--rx-text);
    line-height: 1;
}
.roxzone-home-ville-count {
    grid-column: 1;
    grid-row: 2;
    font-size: 14px;
    color: var(--rx-text-mute);
    margin-top: 4px;
}
.roxzone-home-ville-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--rx-accent);
    transition: transform 0.2s ease;
}
.roxzone-home-ville-card:hover .roxzone-home-ville-arrow {
    transform: translateX(4px);
}
/* ════════════════════════════════════════════════════════════════════
 *  ROXZONE — Patch CSS pour le formulaire de réclamation
 *  À AJOUTER à la fin du fichier annuaire.css
 * ════════════════════════════════════════════════════════════════════ */


/* ── Messages de confirmation / erreur ── */
.roxzone-claim-form-success,
.roxzone-claim-form-error {
    padding: 20px 24px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}
.roxzone-claim-form-success {
    background: #e6f7eb;
    border-left: 4px solid #2d8a4f;
    color: #1d5f37;
}
.roxzone-claim-form-error {
    background: #fdecea;
    border-left: 4px solid #c0392b;
    color: #7a2018;
}
.roxzone-claim-form-success strong,
.roxzone-claim-form-error strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}
.roxzone-claim-form-success p,
.roxzone-claim-form-error p {
    margin: 0;
}


/* ── Honeypot anti-spam : caché aux humains, visible aux bots ── */
.roxzone-form-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}