.woocommerce-product-gallery .product-gallery-thumbs-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1 1 auto;
    max-width: 100%;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.75rem;
    width: max-content;
    min-width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs li {
    flex: 0 0 72px !important;
    width: 72px !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs img {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 0.25rem;
    opacity: 0.65;
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs img:hover {
    opacity: 1;
    transform: scale(1.03);
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition:
            opacity 0.2s ease,
            background-color 0.2s ease;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel__button:hover {
    background: #374151;
}

.woocommerce-product-gallery .product-gallery-thumbs-carousel__button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.single-product .product-gallery-thumbs-carousel__button{
    color: #e3001a;
    background: transparent !important;
    font-size: 2rem;
}

.single-product .product-gallery-thumbs-carousel__button:after{
    background: transparent !important;
}

@media (max-width: 767px) {
    .woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs li {
        flex-basis: 64px !important;
        width: 64px !important;
    }

    .woocommerce-product-gallery .product-gallery-thumbs-carousel .flex-control-thumbs img {
        width: 64px;
        height: 64px;
    }
}