/* === GALERÍA DE PRODUCTO: MINIATURAS ABAJO CON SCROLL === */

.woocommerce-product-gallery {
    display: flex;
    flex-direction: column;
    position: relative;
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 10px;
    margin-top: 15px;
    padding: 0 40px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: 80px !important;
    min-width: 80px;
    flex-shrink: 0;
    cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    opacity: 0.6;
    border-radius: 6px;
    transition: all .25s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img:hover,
.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
    opacity: 1;
    border: 2px solid #00bcd4;
}

.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    height: 6px;
}

.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 10px;
}

.woocommerce-product-gallery .flex-direction-nav {
    display: none !important;
}

.woo-thumb-arrow {
    position: absolute;
    bottom: 35px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
}

.woo-thumb-prev { left: 0; }
.woo-thumb-next { right: 0; }
