/* ============================================================
   Landing Bundle Addons - Cursor Trail Extension CSS
   ============================================================ */

.lba-cursor-trail-container {
    position: relative;
    /* Prevent horizontal scroll if items overflow the viewport */
    overflow-x: clip;
}

/* Fallback for browsers that don't support overflow-x: clip */
@supports not (overflow-x: clip) {
    .lba-cursor-trail-container {
        overflow-x: hidden;
    }
}

.lba-cursor-trail-item {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    will-change: transform, clip-path;
}

.lba-cursor-trail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}