.product-img {
    position: relative;
    width: 100%;
    height: 200px; /* Wysokość kontenera obrazka, możesz dostosować */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top; /* Przycinanie obrazka od góry */
}
