.vc-hotspot-wrapper {
    position: relative;
    display: inline-block;
}

.vc-hotspot-image {
    width: 100%;
    display: block;
}

.vc-hotspot-point {
    position: absolute;
    width: 18px;
    height: 18px;
    background: red;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.vc-hotspot-point.active {
    transform: scale(1);
}

.pulse {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,0,0,0.5);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.vc-hotspot-tooltip {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: #111;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    width: 180px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 13px;
}

.vc-hotspot-point:hover .vc-hotspot-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .vc-hotspot-tooltip {
        width: 140px;
        font-size: 12px;
    }
}
