/* =================================
   PRODUCT GALLERY
================================= */

.bt-gallery {
    width: 100%;
}


/* MAIN IMAGE */

.bt-main-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}


.bt-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* ARROWS */

.bt-gallery-prev,
.bt-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    background: rgba(0,0,0,0.5);
    color: #ffffff;

    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.bt-gallery-prev {
    left: 15px;
}


.bt-gallery-next {
    right: 15px;
}


/* THUMBNAILS */

.bt-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
}


.bt-thumb {
    flex: 0 0 auto;

    width: 70px;
    height: 70px;

    object-fit: cover;
    border-radius: 8px;
}


.bt-thumb.active {
    border: 2px solid #ff6a00;
}