.bes-hotspot-map {
    position: relative;
    width: 100%;
}

.bes-hotspot-map__img {
    display: block;
    width: 100%;
    height: auto;
}

.bes-hotspot {
    position: absolute;
    display: block;
    background: rgba(255,255,255,0);
    text-decoration: none;
}

.bes-hotspot:hover .bes-hotspot__label,
.bes-hotspot:focus .bes-hotspot__label {
    opacity: 1;
    transform: translateY(-2px);
}

.bes-hotspot__label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .15s ease, transform .15s ease;
    pointer-events: none;
}

/* Desktop-only (hide on mobile/tablet) */
@media (max-width: 1024px) {
    .bes-hotspot-map { display: none; }
}
