.wpmc-click-dot-container {
    position: absolute;
    z-index: 99999;
    display: inline-block;
}

.wpmc-click-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: auto;
    z-index: 100000;
}

/* Тултіп (балун з анімацією та хвостиком) */
.wpmc-tooltip {
    position: absolute;
    top: -60px; /* вище крапки */
    left: 50%;
    transform: translateX(-50%) scale(0.6);
    transform-origin: bottom center;

    background: #8a77c3;
    color: #fff;
    padding: 6px 12px;
    font-size: 16px;
    border-radius: 8px;
    width: 300px;
    max-width: 300px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100001;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.25, 1.4, 0.5, 1.2),
        visibility 0.3s ease;
}

/* Анімація появи */
.wpmc-click-dot-container:hover .wpmc-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Хвостик тултіпа */
.wpmc-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #8a77c3 transparent transparent transparent;
}
.wpmc-click-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e8e4f3;
    border-left: 4px solid #8a77c3;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: relative;
}