/* Контейнер слайдера */
.ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    user-select: none; /* Убираем выделение при перетаскивании */
}

/* Изображения внутри */
.ba-slider img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none !important;
    margin: 0 !important;
}

/* Обертка для переднего (верхнего) изображения */
.ba-slider .after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid #fff; /* Разделитель */
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    will-change: width; /* Оптимизация анимации */
}

/* Ползунок (невидимый input range на всю ширину) */
.ba-slider input[type="range"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    -webkit-appearance: none; /* Сброс стилей браузера */
}

/* Декоративная кнопка (кружок) */
.ba-slider .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Пропускает клики к input */
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.1s ease-out; /* Плавность */
}

/* Стрелочки внутри кнопки */
.ba-slider .ba-handle::before {
    content: '⬌';
    color: #333;
    font-size: 18px;
    line-height: 1;
}
