.banner-slider-wrapper {
    max-width: 1360px;
    margin: 20px auto;
  /*  padding: 0 20px;*/
}

/* ===== ДЕСКТОП ===== */
.banner-slider-desktop {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-top: 150px;
}

/* ===== ЛЕВЫЙ БЛОК (горизонтальная карусель) ===== */
.banner-left {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 460px;
    background: #141414;
}

/* Трек для левого слайдера */
.banner-left-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Каждый слайд занимает 100% ширины */
.banner-left-slide {
    flex: 0 0 100%;
    height: 100%;
}

.banner-left-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-left-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация левого (ваша, без изменений) */
.banner-left-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 2;
    pointer-events: none;
}
.banner-left-nav button {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.banner-left-nav button:hover {
    background: #f4711f;
}

/* Точки левого (ваши) */
.banner-left-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 7px;
    z-index: 2;
}
.banner-left-dots .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    border: none;
    cursor: pointer;
    padding: 0;
}
.banner-left-dots .dot.active {
    background: #f4711f;
}

/* ===== ПРАВЫЙ БЛОК (вертикальная карусель парами) ===== */
.banner-right {
    position: relative;
    overflow: hidden; /* чтобы скрывать выходящие пары */
    border-radius: 18px;
    height: 460px; /* фиксированная высота */
   /* background: #141414;*/
}

/* Трек для правого слайдера (вертикальный) */
.banner-right-track {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Каждая пара занимает 100% высоты и делится на две строки */
.banner-right-pair {
    flex: 0 0 100%;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 100%;
    padding: 0;
}

.banner-right-pair a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #141414;
    height: 100%;
}

.banner-right-pair img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навигация правого (ваша, без изменений) */
.banner-right-nav {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}
.banner-right-nav button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(20,20,20,.55);
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s;
}
.banner-right-nav button:hover {
    background: #f4711f;
}

/* Точки правого (ваши) */
.banner-right-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 7px;
    z-index: 2;
}
.banner-right-dots .dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    border: none;
    cursor: pointer;
    padding: 0;
}
.banner-right-dots .dot.active {
    background: #f4711f;
}



/* ===== МОБИЛЬНАЯ ВЕРСИЯ (исходная, со скроллом) ===== */
.banner-slider-mobile {
    display: none;
    margin-top: 16px;
}
.banner-mobile-track {
    display: flex;
    gap: 14px;
    
    margin-top: 100px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.banner-mobile-track::-webkit-scrollbar {
    display: none;
}
.banner-mobile-slide {
    flex: 0 0 84%;
    max-width: 340px;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
}
.banner-mobile-slide img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
    .banner-slider-desktop {
        display: none;
    }
    .banner-slider-mobile {
        display: block;
    }
}