/* WooCommerce Gallery Horizontal Scroller CSS */

/* Main gallery container */
.woocommerce-product-gallery--with-images {
    position: relative;
}

/* Thumbnail list container - horizontal scrollable */
.woocommerce-product-gallery--with-images .flex-control-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    margin: 0 !important;
    padding: 10px 0 !important;
    list-style: none !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Webkit scrollbar styling */
.woocommerce-product-gallery--with-images .flex-control-thumbs::-webkit-scrollbar {
    height: 8px;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Individual thumbnail items */
.woocommerce-product-gallery--with-images .flex-control-thumbs li {
    flex: 0 0 auto !important;
    margin: 0 8px 0 0 !important;
    width: auto !important;
    float: none !important;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs li:last-child {
    margin-right: 0 !important;
}

/* Thumbnail images */
.woocommerce-product-gallery--with-images .flex-control-thumbs li img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs li img:hover {
    opacity: 1;
}

.woocommerce-product-gallery--with-images .flex-control-thumbs li img.flex-active {
    opacity: 1;
    border-color: #000;
}

/* Customify theme compatibility */
.customify .woocommerce-product-gallery--with-images .flex-control-thumbs {
    display: flex !important;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-product-gallery--with-images .flex-control-thumbs li img {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-product-gallery--with-images .flex-control-thumbs li img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .woocommerce-product-gallery--with-images .flex-control-thumbs li {
        margin: 0 6px 0 0 !important;
    }
}