.bv-product-gallery-stage .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:not(:first-child) {
    display: none;
}

.bv-product-gallery-stage .woocommerce-product-gallery.bv-gallery-ready .woocommerce-product-gallery__wrapper {
    display: none;
}

.bv-gallery-main {
    aspect-ratio: 1;
    background: #f2f3ef;
}

.bv-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bv-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
}

.bv-gallery-thumbs button {
    display: block;
    padding: 0;
    border: 1px solid transparent;
    background: #f2f3ef;
    cursor: pointer;
}

.bv-gallery-thumbs button.is-active {
    border-color: var(--bv-ink);
}

.bv-gallery-thumbs img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

@media screen and (max-width: 780px) {
    .bv-gallery-thumbs {
        display: flex;
        gap: 5px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .bv-gallery-thumbs button {
        flex: 0 0 62px;
    }
}
