/* Blur Image Slider Elementor */
.bise-blur-slider {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    direction: rtl;
    isolation: isolate;
    overflow-anchor: none;
    font-family: inherit;
}

.bise-blur-slider,
.bise-blur-slider * {
    box-sizing: border-box;
}

.bise-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.bise-bg-layer-active {
    opacity: 1;
    z-index: 1;
}

.bise-blur-slider-sidebar {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 90%;
    z-index: 2;
    direction: rtl;
    overflow-y: auto;
    overflow-x: visible;
    padding: 0 20px 0 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior: contain;
    overflow-anchor: none;
}

.bise-blur-slider-sidebar::-webkit-scrollbar {
    display: none;
}

.bise-blur-slider-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    min-width: 250px;
    position: relative;
}

.bise-blur-slider-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bise-blur-slider-item.bise-active-item {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    border-color: #FFCF01;
    transform: translateX(-5px);
    z-index: 10;
}

.bise-blur-slider-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: right;
    cursor: pointer;
    font: inherit;
}

.bise-blur-slider-link:hover,
.bise-blur-slider-link:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.bise-blur-item-thumbnail {
    display: inline-flex;
    flex: 0 0 auto;
}

.bise-blur-item-thumbnail img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.bise-blur-item-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .bise-blur-slider {
        overflow-anchor: none;
    }

    .bise-blur-slider-sidebar {
        right: auto;
        top: auto;
        bottom: 20px;
        left: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 15px;
        gap: 10px;
        overscroll-behavior-x: contain;
        overscroll-behavior-y: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
    }

    .bise-blur-slider-item {
        width: auto;
        min-width: unset;
        flex: 0 0 auto;
        padding: 9px 12px;
    }

    .bise-blur-slider-item.bise-active-item {
        transform: none;
    }

    .bise-blur-item-thumbnail img {
        width: 40px;
        height: 40px;
    }

    .bise-blur-item-title {
        font-size: 12px;
        white-space: nowrap;
    }
}
