/**
 * Mobestate - Header CSS Complet
 * Tous les styles pour le header et la navigation
 * - Announcement Bar
 * - Header & Navigation Desktop
 * - Mega Menu
 * - Language Switcher
 * - Mobile Menu
 * - Responsive
 * 
 * VERSION SANS STYLES INLINE - 100% CSS
 */

/* ==================================================
   ANNOUNCEMENT BAR
   ================================================== */

.announcement-bar {
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
}

.announcement-bar span {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 10px;
    font-size: 12px;
}

/* ==================================================
   HEADER & NAVIGATION
   ================================================== */

.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Ombre qui apparaît quand on scrolle */
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

/* Logo image height */
.logo svg { 
    height: 24px; 
    width: auto; 
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.nav-main {
    display: flex;
    gap: 32px;
    align-items: center;
}

/* Container pour navigation avec mega-menu - REMPLACE style="position: relative;" */
.nav-item-relative {
    position: relative;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link.has-dropdown::after {
    content: '›';
    margin-left: 4px;
    display: inline-block;
    transform: rotate(90deg);
    font-size: 12px;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
}

.btn-ghost:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(82, 211, 216, 0.3);
}

/* Correction AI Mode button - REMPLACE les styles inline */
.btn-ai-mode { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.btn-ai-mode .material-icons { 
    font-size: 20px; 
}

/* ==================================================
   MEGA MENU
   ================================================== */

.mega-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: calc(100vh - 73px);
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
}

.nav-link:hover + .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
}

.mega-menu-column h3 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-menu-link:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
    padding-left: 16px;
}

.mega-menu-link .badge {
    background: var(--primary-teal);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.mega-menu-link .badge.new {
    background: var(--success);
}

.mega-menu-link .badge.hot {
    background: var(--warning);
}

.mega-menu-featured {
    grid-column: span 2;
    display: grid;
    gap: 20px;
}

/* Featured Cards - Design Ultra Pro - STYLES FORCÉS - BLOC CLIQUABLE */

.featured-card {
    background: #FFFFFF !important;
    border: 1px solid #F3F4F6 !important;
    padding: 24px !important;
    border-radius: 12px !important;
    display: block !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
}

.featured-card:hover {
    border-color: #E5E7EB !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
    transform: translateY(-2px) !important;
}

/* Header avec icône + texte horizontal - FORCÉ */
.featured-card-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 0 !important;
    flex-wrap: nowrap !important;
}

/* Icône - TAILLE FIXE FORCÉE - PLUS GRANDE */
.featured-icon {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 64px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.featured-icon .material-icons {
    font-size: 32px !important;
}

/* Container du titre + description - PREND LE RESTE */
.featured-card-header > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Titre */
.featured-card h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.4 !important;
}

/* Description à côté de l'icône */
.featured-card p {
    color: #6B7280 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Lien texte en gris foncé - maintenant un span */
.featured-card-link {
    color: #4B5563 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.featured-card:hover .featured-card-link {
    color: #111827 !important;
}

/* Variante Catalogue - VERT */
.featured-card.featured-catalog .featured-icon {
    background: #10B981 !important;
    color: white !important;
}

/* Variante Calculateur - ORANGE */
.featured-card.featured-calculator .featured-icon {
    background: #F59E0B !important;
    color: white !important;
}

/* Mega Menu Quartiers */
.mega-menu-quartiers {
    max-width: 1200px;
}

.quartiers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 90px;
}

.quartier-group h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.quartier-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quartier-link {
    color: var(--gray-600);
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.quartier-link:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.quartier-link .price {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 600;
    white-space: nowrap;
}

/* Lien "Voir tous" dans le mega-menu quartiers - REMPLACE style inline */
.quartier-view-all {
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 8px;
}

/* ==================================================
   LANGUAGE SWITCHER
   ================================================== */

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gray-50);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.lang-current:hover {
    background: var(--gray-100);
}

.lang-current::after {
    content: '›';
    display: inline-block;
    transform: rotate(90deg);
    font-size: 12px;
    margin-left: 4px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.lang-option.active {
    background: var(--primary-teal);
    color: var(--white);
}

.lang-flag {
    font-size: 20px;
}

/* ==================================================
   MOBILE TOGGLE (caché en desktop)
   ================================================== */

.mobile-toggle {
    display: none;
    background: var(--gray-50);
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-600);
    margin: 4px 0;
    transition: all 0.3s;
}

/* ==================================================
   MENU MOBILE OVERLAY
   ================================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo svg {
    height: 24px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: 8px;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu-close:active {
    background: var(--gray-200);
}

.mobile-menu-nav {
    flex: 1;
    padding: 8px 0;
}

.mobile-menu-item {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu-link-simple {
    color: var(--gray-700);
}

.mobile-menu-link:active {
    background: var(--gray-50);
}

.mobile-menu-link .material-icons {
    color: var(--gray-400);
    font-size: 20px;
}

.mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-submenu-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-submenu-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--gray-700);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px;
    margin: -8px;
}

.mobile-submenu-back .material-icons {
    font-size: 24px;
}

.mobile-submenu-content {
    flex: 1;
    padding: 24px 20px;
}

.mobile-submenu-section {
    margin-bottom: 32px;
}

.mobile-submenu-section:last-child {
    margin-bottom: 0;
}

.mobile-submenu-section h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.mobile-submenu-section a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
}

.mobile-submenu-section a:last-child {
    border-bottom: none;
}

.mobile-submenu-section a:active {
    color: var(--primary-teal);
}

.price-tag {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 600;
}

/* Lien "Voir tous" dans les sous-menus mobiles - REMPLACE style inline */
.submenu-view-all {
    color: var(--primary-teal);
    font-weight: 600;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}

/* Mobile menu footer buttons */
.mobile-footer-btn-primary { 
    width: 100%; 
    justify-content: center; 
    margin-bottom: 12px; 
}

.mobile-footer-btn-ghost { 
    width: 100%; 
    justify-content: center; 
    background: var(--gray-50); 
}

.mobile-footer-icon { 
    font-size: 20px; 
}

/* ==================================================
   RESPONSIVE
   ================================================== */

/* Large screens (1250px et moins) - Langues sans texte */
@media (max-width: 1250px) {
    .lang-current span:last-child {
        display: none;
    }
    
    .lang-current {
        padding: 10px 12px;
        min-width: auto;
    }
}

/* Medium screens (1200px et moins) - Header minimaliste */
@media (max-width: 1200px) {
    /* Masquer navigation desktop */
    .nav-main {
        display: none !important;
    }
    
    /* Masquer tous les boutons du header */
    .header-actions .btn {
        display: none !important;
    }
    
    /* Masquer le sélecteur de langue */
    .lang-switcher {
        display: none !important;
    }
    
    /* Afficher SEULEMENT le toggle mobile avec 3 lignes */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 8px;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--gray-700);
        transition: all 0.3s ease;
        border-radius: 2px;
        margin: 0;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* S'assurer que le header actions ne prend que le toggle */
    .header-actions {
        gap: 0;
    }
}

/* Tablet (1024px et moins) */
@media (max-width: 1024px) {
    /* Mega Menu - 3 colonnes */
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .mega-menu-featured {
        grid-column: span 3;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quartiers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Tablet & Mobile (768px et moins) */
@media (max-width: 768px) {
    /* Masquer announcement-bar sur mobile */
    .announcement-bar {
        display: none !important;
    }
    
    /* Navigation desktop cachée */
    .nav-main {
        display: none !important;
    }
    
    /* Mobile toggle visible */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 8px;
    }
    
    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gray-700);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hide complex elements on mobile */
    .mega-menu {
        display: none !important;
    }
}

/* Mobile - Small devices (moins de 480px) */
@media (max-width: 480px) {
    .announcement-bar {
        font-size: 12px;
        padding: 8px;
    }
    
    .announcement-bar span {
        display: block;
        margin-top: 4px;
        margin-left: 0;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-menu-container {
        max-height: 100vh;
    }
}
/* ==================================================
   QUARTIERS - MEGA MENU DYNAMIQUE
   ================================================== */

/* Grid quartiers: 3 colonnes de quartiers + 1 colonne map */
.quartiers-grid {
    display: grid;
    grid-template-columns: 0.85fr 0.85fr 0.85fr 2fr;
    gap: 90px;
}

/* Colonne quartiers */
.quartiers-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Colonne map */
.quartiers-map-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Container map */
.neighborhoods-map-container {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
}

/* Bouton voir tous sous la map */
.quartiers-map-cta {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    background: transparent;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.quartiers-map-cta:hover {
    color: var(--teal-dark);
    transform: translateX(2px);
}

/* Loading state */
.quartiers-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    gap: 12px;
    color: var(--gray-500);
}

.quartiers-loading .material-icons {
    font-size: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error state */
.quartiers-error {
    padding: 32px;
    text-align: center;
    color: var(--gray-600);
}

.quartiers-error .material-icons {
    font-size: 32px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

/* Mobile: masquer la map et revenir à une structure verticale */
@media (max-width: 768px) {
    .quartiers-grid {
        display: block;
    }
    
    .quartiers-map-column {
        display: none;
    }
    
    .quartiers-column {
        gap: 24px;
    }
    
    /* Prix dans le menu mobile */
    .mobile-submenu-section a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-tag {
        font-size: 12px;
        color: var(--gray-400);
        font-weight: 600;
        white-space: nowrap;
        margin-left: auto;
        padding-left: 12px;
    }
    
    .submenu-view-all {
        display: block;
        text-align: center;
        color: var(--primary-teal);
        font-weight: 600;
        padding: 12px;
        margin-top: 8px;
    }
}

/* Leaflet map customization */
.leaflet-container {
    font-family: var(--font-family);
}

/* Filtre grayscale sur les tiles (fond de carte) */
.leaflet-tile-pane {
    filter: grayscale(40%) brightness(1.05) contrast(0.95);
}

/* Cacher l'attribution Leaflet */
.leaflet-control-attribution,
.leaflet-bottom.leaflet-right {
    display: none !important;
}

/* Custom marker cluster colors - Style teal/bleu */
.marker-cluster-small {
    background-color: rgba(82, 211, 216, 0.6) !important;
}

.marker-cluster-small div {
    background-color: rgba(82, 211, 216, 0.9) !important;
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.marker-cluster-medium {
    background-color: rgba(59, 160, 164, 0.6) !important;
}

.marker-cluster-medium div {
    background-color: rgba(59, 160, 164, 0.9) !important;
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.marker-cluster-large {
    background-color: rgba(16, 185, 129, 0.6) !important;
}

.marker-cluster-large div {
    background-color: rgba(16, 185, 129, 0.9) !important;
    color: white;
    font-weight: 700;
    font-size: 13px;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    font-family: var(--font-family);
}

.leaflet-popup-content {
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 14px;
}

.leaflet-popup-content strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

/* Contrôles de zoom en haut à droite */
.leaflet-top.leaflet-right {
    top: 12px;
    right: 12px;
}

/* Style des boutons de zoom */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.leaflet-control-zoom a {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 20px !important;
    border: none !important;
    background: white !important;
    color: var(--gray-700) !important;
    transition: all 0.2s !important;
}

.leaflet-control-zoom a:hover {
    background: var(--gray-50) !important;
    color: var(--primary-teal) !important;
}

.leaflet-control-zoom-in {
    border-radius: 8px 8px 0 0 !important;
    border-bottom: 1px solid var(--gray-200) !important;
}

.leaflet-control-zoom-out {
    border-radius: 0 0 8px 8px !important;
}

/* Popup quartiers - Design moderne */
.neighborhood-popup {
    padding: 4px;
    min-width: 160px;
}

.neighborhood-popup-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.3;
}

.neighborhood-popup-zone {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.4;
}

.neighborhood-popup-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-teal);
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
}

/* Style global de la popup Leaflet */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    background: white !important;
    display: table !important;
}

.leaflet-popup-content {
    margin: 16px !important;
    font-family: var(--font-family) !important;
    min-width: 120px !important;
}

.leaflet-popup-tip {
    background: white !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1) !important;
}

/* Cacher le bouton fermer (croix) */
.leaflet-popup-close-button {
    display: none !important;
}