.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(23%, 1fr)); /* Создание колонок по 50% */
    gap: 20px;
    padding: 20px 0;
    box-sizing: border-box;
}

.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product-item p {
    font-size: 14px;
    color: #555;
}


@media (max-width: 640px) {
    .product-list{
        padding: 0;
        padding-bottom: 20px;
        padding-top: 20px;
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr)); /* 2 изображения в строке */
    }
}
