.si-e87c4d23-container {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.si-e87c4d23-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.si-e87c4d23-dot {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2;
    transition: transform 0.3s ease;
}

.si-e87c4d23-pulse {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    border: 2px solid;
    z-index: 1;
    animation: pulse-ring-e87c4d23 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    box-sizing: border-box;
}

@keyframes pulse-ring-e87c4d23 {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.si-e87c4d23-hotspot:hover .si-e87c4d23-dot,
.si-e87c4d23-hotspot.is-active .si-e87c4d23-dot {
    transform: scale(1.1);
}

.si-e87c4d23-tooltip {
    position: absolute;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
}

.si-e87c4d23-hotspot:hover .si-e87c4d23-tooltip,
.si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.si-e87c4d23-tooltip-img {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.si-e87c4d23-tooltip-content {
    padding: 10px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.si-e87c4d23-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.si-e87c4d23-price {
    font-size: 13px;
    font-weight: 400;
}

/* Tooltip Positioning */
.si-e87c4d23-tooltip-right {
    left: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
}
.si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip-right, .si-e87c4d23-hotspot:hover .si-e87c4d23-tooltip-right {
    transform: translateY(-50%) translateX(0);
}

.si-e87c4d23-tooltip-left {
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
}
.si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip-left, .si-e87c4d23-hotspot:hover .si-e87c4d23-tooltip-left {
    transform: translateY(-50%) translateX(0);
}

.si-e87c4d23-tooltip-top {
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
}
.si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip-top, .si-e87c4d23-hotspot:hover .si-e87c4d23-tooltip-top {
    transform: translateX(-50%) translateY(0);
}

.si-e87c4d23-tooltip-bottom {
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}
.si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip-bottom, .si-e87c4d23-hotspot:hover .si-e87c4d23-tooltip-bottom {
    transform: translateX(-50%) translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .si-e87c4d23-hotspot {
        width: 16px !important;
        height: 16px !important;
    }
    
    .si-e87c4d23-tooltip {
        left: 50% !important;
        right: auto !important;
        top: calc(100% + 15px) !important;
        bottom: auto !important;
        transform: translateX(-50%) translateY(-10px) !important;
    }
    
    .si-e87c4d23-hotspot.is-active .si-e87c4d23-tooltip {
        transform: translateX(-50%) translateY(0) !important;
    }
}