.cpg-custom-gallery .woocommerce-product-gallery__image {
    max-height: 500px; /* Prilagodite visinu prema potrebama */
    width: auto; /* Automatsko prilagođavanje širine prema visini */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cpg-custom-gallery .woocommerce-product-gallery__image img {
    max-height: 100%; /* Postavljanje maksimalne visine slike */
    width: auto; /* Automatsko prilagođavanje širine prema visini */
}
.cpg-custom-gallery .woocommerce-product-gallery__image--thumbnail {
    width: auto; /* Automatska širina */
    height: auto; /* Automatska visina */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpg-custom-gallery .woocommerce-product-gallery__image--thumbnail img {
    width: auto; /* Automatska širina */
    height: 100%; /* Prilagodite visinu prema potrebama */
    object-fit: cover; /* Za prikaz pravougaonih slika */
}

