/* Interactive Map Plugin - Frontend v1.2 */

.imp-map-wrapper {
    width: 100%;
    margin: 1.5em 0;
    box-sizing: border-box;
}

.imp-map-container {
    width: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

/* Filtros */
.imp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.imp-filter-btn {
    padding: 6px 16px;
    border: 2px solid #0073aa;
    background: #fff;
    color: #0073aa;
    border-radius: 20px;
    cursor: pointer;
    font-size: .875em;
    font-weight: 500;
    transition: background .2s, color .2s;
}
.imp-filter-btn:hover,
.imp-filter-btn.active {
    background: #0073aa;
    color: #fff;
}

/* Icono personalizado */
.imp-custom-icon {
    background: none !important;
    border: none !important;
}

/* Popup wrapper */
.imp-popup .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    padding: 0;
    overflow: hidden;
}
.imp-popup .leaflet-popup-content {
    margin: 0;
    width: 260px !important;
}

/* Imagen del popup */
.imp-popup-img {
    width: 100%;
    max-height: 160px;
    overflow: hidden;
    background: #f0f0f0;
}
.imp-popup-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Cuerpo del popup */
.imp-popup-body {
    padding: 14px 16px 16px;
}
.imp-popup-title {
    margin: 0 0 8px;
    font-size: 1em;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.imp-popup-desc {
    font-size: .875em;
    color: #555;
    margin: 0 0 12px;
    line-height: 1.5;
}
.imp-popup-btn {
    display: inline-block;
    padding: 7px 16px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-size: .875em;
    font-weight: 600;
    transition: background .2s;
}
.imp-popup-btn:hover {
    background: #005a87;
}

/* Clusters */
.marker-cluster-small  { background-color: rgba(0,115,170,.5); }
.marker-cluster-small div { background-color: rgba(0,115,170,.8); }
.marker-cluster-medium { background-color: rgba(230,100,0,.5); }
.marker-cluster-medium div { background-color: rgba(230,100,0,.8); }
.marker-cluster-large  { background-color: rgba(200,30,30,.5); }
.marker-cluster-large div  { background-color: rgba(200,30,30,.8); }
.marker-cluster div {
    width: 30px; height: 30px;
    margin: 5px 0 0 5px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    line-height: 30px;
}

@media (max-width: 600px) {
    .imp-popup .leaflet-popup-content { width: 220px !important; }
    .imp-popup-img img { height: 130px; }
}
