/* PK Catalog — Leaflet map styling */

.pk-map {
    width: 100%;
    height: 350px;
    margin: 20px 0;
    border-radius: 6px;
    z-index: 1;
    background: #f3f4f6;
}

@media (max-width: 600px) {
    .pk-map {
        height: 250px;
    }
}

/* Atrybucja drobna i dyskretna */
.pk-map .leaflet-control-attribution {
    font-size: 10px;
    color: #888;
    background: rgba(255, 255, 255, 0.85);
}
.pk-map .leaflet-control-attribution a {
    color: #555;
}

/* Popup: typografia */
.pk-map .leaflet-popup-content {
    margin: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
}
.pk-map .leaflet-popup-content strong {
    color: #1f1f1f;
    display: block;
    margin-bottom: 4px;
}
.pk-map .leaflet-popup-content .pk-map-addr {
    color: #666;
    font-size: 12px;
}
.pk-map .leaflet-popup-content .pk-map-link {
    display: inline-block;
    margin-top: 6px;
    color: #283B75;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* Cluster bubble — kolor marki */
.marker-cluster-pk {
    background-color: rgba(40, 59, 117, 0.85);
}
.marker-cluster-pk div {
    background-color: rgba(40, 59, 117, 1);
    color: #fff;
    font-weight: 700;
}

/* Highlight scrollowanego akordeonu po klikni eciu pinezki */
.pk-firm.pk-firm-highlight {
    animation: pkFirmHighlight 1.4s ease-out;
}
@keyframes pkFirmHighlight {
    0%   { box-shadow: 0 0 0 3px rgba(40, 59, 117, 0.55); }
    100% { box-shadow: 0 0 0 0   rgba(40, 59, 117, 0);    }
}
