.focused-map-marker {
    position: relative;
    width: 58px;
    height: 72px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 8px 12px rgba(30, 25, 20, 0.28));
}

.focused-map-marker__body {
    position: absolute;
    left: 7px;
    top: 2px;
    z-index: 2;
    display: flex;
    width: 44px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 4px solid #fffdf9;
    border-radius: 50% 50% 50% 12%;
    color: #fff;
    background: #9b6a19;
    transform: rotate(-45deg);
}

.focused-map-marker__body i {
    font-size: 21px;
    line-height: 1;
    transform: rotate(45deg);
}

.focused-map-marker__pulse {
    position: absolute;
    left: 10px;
    bottom: 3px;
    z-index: 1;
    width: 38px;
    height: 16px;
    border: 3px solid rgba(155, 106, 25, 0.65);
    border-radius: 50%;
    animation: focused-map-marker-pulse 1.7s ease-out infinite;
}

.focused-poi-marker {
    display: inline-flex;
    width: 42px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 4px solid #fffdf9;
    border-radius: 50% 50% 50% 12%;
    color: #fff;
    background: #7c3aed;
    box-shadow: 0 7px 16px rgba(30, 25, 20, 0.28);
    cursor: pointer;
    transform: rotate(-45deg);
}

.focused-poi-marker i {
    font-size: 19px;
    line-height: 1;
    transform: rotate(45deg);
}

.focused-poi-marker--parking {
    background: #2563eb;
}

.focused-poi-marker--hotel {
    background: #0f766e;
}

.focused-poi-marker--cafe {
    background: #b45309;
}

.focused-poi-marker--attraction {
    background: #7c3aed;
}

.focused-poi-marker:hover,
.focused-poi-marker:focus-visible {
    z-index: 3;
    outline: none;
    filter: brightness(1.08);
}

@keyframes focused-map-marker-pulse {
    0% {
        opacity: 0.95;
        transform: scale(0.55);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@media (prefers-reduced-motion: reduce) {
    .focused-map-marker__pulse {
        animation: none;
        opacity: 0.45;
    }
}
