.products {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

@media screen and (min-width: 800px) {
    .products {
        flex-direction: row;
    }
}

.product-description {
    display: flex;
    align-items: center;
    min-height: 75px;
}

.product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75px;
}