.product-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-list__header h2 {
    margin-bottom: 8px;
}

@media (min-width: 700px) {
    .product-list__header {
        display: block;
    }
    .product-list__header h2 {
        display: none;
    }
}