.product-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px; /* Висота блока */
    width: 300px; /* Ширина блока */
    overflow: hidden;
}

.product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* або object-fit: cover; якщо потрібно обрізати */
}

.cart-dropdown img {
    width: 100%;
    max-width: 50px; /* Задай потрібний розмір */
    height: auto; /* Робимо квадрат */
}

.cart-dropdown img {
    object-position: center; /* Центрує зображення */
}