.wb-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 100%;
    overflow: hidden;
}


/* Блок миниатюр */
.wb-gallery-thumbs-wrapper {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


/* Стрелки */
.wb-gallery-arrow {
    width: 80px;
    height: 35px;
    border: none;
    border-radius: 10px;
    background: rgba(221, 51, 51, 0.75);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, opacity .25s ease;
    outline: none;
}


.wb-gallery-arrow:hover {
    background: rgba(221, 51, 51, 1);
}


/* Убираем черную рамку при клике */
.wb-gallery-arrow:focus,
.wb-gallery-arrow:active {
    outline: none;
    box-shadow: none;
}


/* Лента миниатюр */
.wb-gallery-thumbs {
    width: 80px;
    max-height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    padding-left: 5px;
    padding-right: 5px;

    scrollbar-width: thin;
}


/* красивый скролл */
.wb-gallery-thumbs::-webkit-scrollbar {
    width: 5px;
}

.wb-gallery-thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.wb-gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(221,51,51,.5);
    border-radius: 10px;
}


/* Миниатюра */
.wb-gallery-thumb {
    width: 70px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    opacity: .5;
    transition: opacity .25s ease;
}


/* активную рамку убираем */
.wb-gallery-thumb.active {
    opacity: 1;
}


/* hover */
.wb-gallery-thumb:hover {
    opacity: 1;
}


/* картинки миниатюр */
.wb-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Основное изображение */
.wb-gallery-main {
    flex: 1;
    min-width: 0;
}


/* увеличиваем немного основную картинку */
.wb-gallery-main img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    border-radius: 12px;
}


/* убираем возможный мусор WooCommerce */
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper {
    overflow: hidden !important;
}


/* адаптация */
@media(max-width:768px){

    .wb-gallery {
        gap: 10px;
    }

    .wb-gallery-thumbs-wrapper {
        width: 75px;
    }

    .wb-gallery-arrow {
        width: 65px;
    }

    .wb-gallery-thumb {
        width: 60px;
        height: 75px;
    }

    .wb-gallery-thumbs {
        width: 70px;
    }

}

/* Убираем горизонтальный выход за пределы галереи */
.wb-gallery {
    max-width: 100%;
    overflow-x: hidden;
}

/* Блок миниатюр */
.wb-gallery-thumbs-wrapper {
    flex-shrink: 0;
    overflow: hidden;
}

/* Лента миниатюр */
.wb-gallery-thumbs {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

/* Сами миниатюры */
.wb-gallery-thumb {
    box-sizing: border-box;
    flex-shrink: 0;
}

/* Изображения миниатюр */
.wb-gallery-thumb img {
    display: block;
    max-width: 100%;
}

/* Основная картинка */
.wb-gallery-main {
    min-width: 0;
    overflow: hidden;
}

.wb-gallery-main img {
    max-width: 100%;
    width: auto;
}