/* =============================================================
   content-country.css
   Chemin : /assets/css/content-country.css
   ============================================================= */

/* ─── Carrousel indicateurs ─────────────────────────────────── */
.custom-carousel-indicators {
    z-index: 10;
}

.indicator-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(254, 151, 151, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator-circle.active {
    background: #cb1717;
}

/* ─── Cards Bootstrap ───────────────────────────────────────── */
.card-img-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.card {
    --bs-card-border-radius: 0 !important;
    border-radius: 0 !important;
}

/* ─── Marqueurs Leaflet ─────────────────────────────────────── */

/* Conteneur cluster — laisse dépasser les tags */
.leaflet-marker-icon .cluster-image {
    position: relative;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    background: #eee;
    border-radius: 50%;
    overflow: visible;
}

.leaflet-marker-icon .cluster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Badge nombre (cluster) */
.leaflet-marker-icon .cluster-count {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50%;
    pointer-events: none;
    text-align: center;
}

/* Tag cœur */
.marker-heart-tag {
    position: absolute;
    bottom: -6px;
    left: 6px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #c21c1c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

/* Tag prix */
.marker-price-tag {
    position: absolute;
    bottom: -6px;
    right: 6px;
    transform: translateX(50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #c2ac1c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 10;
}