.p-product-detail__foot__products {
    display: flex;
    flex-wrap: wrap;
}

.p-product-detail__foot__product {
    width: 20%;
}

.p-product-detail__foot__product__desc {
    padding: 0 20px;
}

@media screen and (max-width: 750px) {
    .p-product-detail__foot__product {
        width: 45%;
    }

    .p-product-detail__foot__products {
        justify-content: space-between;
    }

    .p-product-detail__foot__product__desc {
        padding: 0;
    }

    .p-product-detail__foot__product__image {
        margin: 1rem;
    }
}