.tourism-marker {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 56px;
    justify-content: center;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(12px) scale(.92);
    transition: all .2s ease;
    width: 56px;
}

.tourism-marker img {
    display: block;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18));
    height: 48px;
    transition: all .2s ease;
    width: 48px;
}

.tourism-marker.is-visible {
    animation: tourismMarkerRise 400ms ease both;
}

.tourism-marker:hover,
.leaflet-marker-icon:hover .tourism-marker,
.tourism-marker.is-highlighted {
    transform: translateY(0) scale(1.1);
}

.tourism-marker.is-selected {
    animation: tourismMarkerBounce 480ms ease both;
    transform: translateY(0) scale(1.2);
    z-index: 2;
}

.tourism-marker.is-selected img,
.tourism-marker:hover img {
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .24));
}

.tourism-cluster-marker {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: relative;
    transition: all .2s ease;
    width: 40px;
}

.tourism-cluster-marker:hover {
    transform: scale(1.08);
}

.tourism-cluster-marker img {
    display: block;
    filter: drop-shadow(0 12px 24px rgba(15, 23, 42, .22));
    height: 40px;
    width: 40px;
}

.tourism-cluster-marker span {
    align-items: center;
    color: #0f172a;
    display: flex;
    font-size: .8rem;
    font-weight: 900;
    inset: 0;
    justify-content: center;
    line-height: 1;
    position: absolute;
    text-align: center;
    text-shadow: none;
    transform: translateY(-1px);
}

.tourism-cluster-marker span.is-three-digits {
    font-size: .66rem;
}

.places-map-hover-popup .leaflet-popup-content-wrapper,
.places-map-hover-popup .leaflet-popup-tip {
    background: transparent;
    box-shadow: none;
}

.places-map-hover-popup .leaflet-popup-content {
    margin: 0;
    width: 320px !important;
}

.places-premium-popup,
.places-map-floating-card .places-premium-popup {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    color: #0f172a;
    max-width: 320px;
    overflow: hidden;
}

.places-premium-popup__image {
    aspect-ratio: 16 / 9;
    display: block;
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.places-premium-popup__body {
    padding: 16px;
}

.places-premium-popup__title {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
}

.places-premium-popup__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.places-premium-popup__badge {
    background: #fff1f2;
    border: 1px solid #ffe4e6;
    border-radius: 999px;
    color: #e11d48;
    font-size: .72rem;
    font-weight: 900;
    padding: 4px 9px;
}

.places-premium-popup__location {
    color: #64748b;
    font-size: .78rem;
    font-weight: 700;
}

.places-premium-popup__description {
    color: #475569;
    font-size: .86rem;
    line-height: 1.45;
    margin: 0 0 12px;
}

.places-premium-popup__actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.places-premium-popup__actions a {
    color: #0f766e;
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
}

.places-premium-popup__actions a:first-child {
    color: #0f4c81;
}

.places-premium-tooltip {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
    color: #0f172a;
    min-width: 170px;
    padding: 10px 12px;
}

.places-premium-tooltip strong,
.places-premium-tooltip span {
    display: block;
}

.places-premium-tooltip span {
    color: #64748b;
    font-size: .75rem;
    font-weight: 800;
    margin-top: 2px;
}

.places-map-tooltip {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.places-map-tooltip::before {
    display: none;
}

.places-map-card.is-active {
    background: #eef6ff;
    border-color: rgba(14, 116, 144, .22);
}

.palika-ward-label-marker {
    pointer-events: none;
}

.palika-ward-label-marker span {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(4, 120, 87, .28);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
    color: #065f46;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    min-height: 26px;
    min-width: 74px;
    padding: 5px 10px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
    white-space: nowrap;
}

@keyframes tourismMarkerRise {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tourismMarkerBounce {
    0% {
        transform: translateY(0) scale(1);
    }
    45% {
        transform: translateY(-10px) scale(1.24);
    }
    100% {
        transform: translateY(0) scale(1.2);
    }
}

.places-map-error {
    align-items: center;
    color: #475569;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    gap: 6px;
    height: 100%;
    justify-content: center;
    min-height: 420px;
    padding: 32px;
    text-align: center;
}

.places-map-error strong {
    color: #0f172a;
    font-size: 1.25rem;
}

@media (max-width: 991.98px) {
    .tourism-marker img {
        height: 44px;
        width: 44px;
    }
}

@media (max-width: 575.98px) {
    .tourism-marker img {
        height: 40px;
        width: 40px;
    }

    .places-map-hover-popup .leaflet-popup-content {
        width: 280px !important;
    }

    .places-premium-popup {
        max-width: 280px;
    }

    .palika-ward-label-marker span {
        font-size: .68rem;
        min-height: 22px;
        min-width: 62px;
        padding: 4px 8px;
    }
}
