/* WooCommerce product gallery */
.single-product .woocommerce-product-gallery {
    position: relative;
}

.single-product .woocommerce-product-gallery::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 285;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    pointer-events: none;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
    float: none;
    flex: 0 0 76px;
    width: 76px !important;
    margin: 0 !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
    opacity: 1;
}

.woocommerce ul.products li.product .imwgb-loop-product-visual,
.woocommerce ul.products li.product .imwgb-loop-product-visual-js {
    position: relative;
    display: block;
    overflow: hidden;
}

.woocommerce ul.products li.product .imwgb-loop-product-visual img,
.woocommerce ul.products li.product .imwgb-loop-product-visual-js img {
    display: block;
    width: 100%;
}

.woocommerce ul.products li.product .imwgb-loop-product-banner {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: block;
    background-image: var(--imwgb-loop-banner);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    pointer-events: none;
}

@media (max-width: 767px) {
    .single-product .woocommerce-product-gallery::before {
        aspect-ratio: 1200 / 330;
    }
}
