#results {
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
    /* flex-direction: row-reverse; */
}


.product-image-container {
    /* max-width: fit-content; */
    /* width: 50%; */
    flex-basis: 50%;
}

.product-image {
    /* width: 33%; */
    height: auto;
    max-height: 100%;
    max-width: 100%;
    /* justify-content: flex-end; */
}

p {
    margin: 0.5rem 0;
}

@media (max-width: 480px) {
    #results {
        flex-direction: column-reverse;
        margin-top: 2em;
    }
    #results > div > h3 {
        margin-top: 1em;
    }
    .product-image-container {
        /* margin-top: 1em; */
        width: 100%;
    }
    .product-image {
        width: 100%;
    }
}


@media (min-width: 481px) {
    #results > div > h3 {
        margin-top: 0;
    }

    .product-image-container {
        min-height: 25vh;
        max-height: 50vh;
    }

    .product-image {
        /* object-fit: contain; */
        position: relative;
        float: right;
    }
}