.hcn-map-wrapper {
    width: 100%;
    display: block;
    font-family: inherit;
}

.hcn-map-leaflet {
    display: block;
    width: 100% !important;
    min-width: 0;
    height: 480px;
    background: #e8e8e8;
    border-radius: 8px;
}

/* Safari : force le recalcul de largeur des tuiles Leaflet */
.hcn-map-leaflet .leaflet-container {
    width: 100% !important;
    -webkit-transform: translateZ(0);
}

.hcn-map-leaflet .leaflet-tile-pane {
    -webkit-transform: translateZ(0);
}

/* Marqueurs */
.hcn-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hcn-marker span {
    display: block;
    width: 24px;
    height: 24px;
    background: #1a6bb5;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* Popup */
.hcn-popup-city {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
}
.hcn-popup-price {
    color: #c0392b;
}
.hcn-popup-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: #1a6bb5;
    color: #fff !important;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
}

/* Badge mise à jour */
.hcn-update-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,.9);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    color: #555;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    z-index: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
}
.hcn-update-badge.visible {
    opacity: 1;
}
