/* === MAIN GALLERY === */
.woocommerce-product-gallery {
    width: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    overflow: hidden;
}

/* === MAIN IMAGE SLIDER === */
.flex-viewport {
    border-radius: 4px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

/* === THUMBNAILS (PIXEL MATCH) === */
.flex-control-nav {
    display: flex !important;
    gap: 10px;
    margin-top: 12px !important;
    overflow-x: auto;
    padding-bottom: 6px;
}

.flex-control-nav li {
    width: auto !important;
}

.flex-control-nav img {
    width: 70px !important;
    height: auto;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.flex-control-nav img.flex-active {
    border-color: #000;
    opacity: 1;
}

/* === ARROWS (LIKE DEMO) === */
.flex-direction-nav a {
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
}

.flex-direction-nav a:before {
    color: #fff;
    font-size: 18px;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .flex-control-nav img {
        width: 60px !important;
    }
}
