.elementor-hotspot-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hotspot-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.hotspot-item {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* پین اصلی */
.hotspot-pin {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* انیمیشن Pulse مینیمال */
.hotspot-pin::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: hotspot-pulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes hotspot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* باکس تولتیپ/محتوا */
.hotspot-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #1e1e24;
    padding: 12px 16px;
    border-radius: 6px;
    width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 20;
}

/* حالت فعال Tooltip */
.hotspot-tooltip.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hotspot-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.hotspot-description {
    font-size: 12px;
    line-height: 1.5;
}