/* Hotspot Z-Index Fix */
.elementor-widget-hotspot .e-hotspot {
    z-index: 10 !important;
}

/* Bring the active/opened hotspot to the very front */
.elementor-widget-hotspot .e-hotspot.angie-hotspot-toggled {
    z-index: 9999 !important;
}

/* Tooltip Animation and Visibility Override */
.elementor-widget-hotspot .e-hotspot .e-hotspot__tooltip {
    /* Override Elementor's default display toggle to allow transition */
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.9) translateY(10px) !important;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
}

.elementor-widget-hotspot .e-hotspot.angie-hotspot-toggled .e-hotspot__tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) translateY(0) !important;
    pointer-events: auto;
}
