﻿@media screen and (min-device-width: 500px) and (max-device-width: 699px)
{
    .productCart 
    {
        width: 31vw;
        /* height: 53vh; */
        border-radius: 25px;
        text-align: center;
        background-color: #D7C59E;
        border: 5px outset rgba(0, 0, 0, 0.16);
        box-shadow: 5px 5px rgba(0, 0, 0, 0.16);
        margin-top: 20px;
        margin-right: 0.5vw;
        margin-left: 0.5vw;
        display: inline-block;
        padding-bottom: 8px;
    }

    .productTitle 
    {
        margin: 15px 10px 10px 10px;
        font-size: 3.3vw;
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
    }

    .productDescription 
    {
        margin: 15px 10px 10px 10px;
        font-size: 2vw;
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
        height: 8vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .divProductImage 
    {
        margin: 0px 10px 5px 10px;
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
        padding: 5px;
        height: 25vh;
        display: flex;
    }

    .divProductImage > a img
    {
        height: 100%;
        width: 100%;
        margin: auto;
    }

    .productRange
    {
        font-size: 2vw;
    }
}

@media screen and (min-device-width: 700px)
{
    .productCart 
    {
        width: 31vw;
        /* height: 50vh; */
        border-radius: 25px;
        text-align: center;
        background-color: #D7C59E;
        border: 5px outset rgba(0, 0, 0, 0.16);
        box-shadow: 5px 5px rgba(0, 0, 0, 0.16);
        margin-top: 20px;
        margin-right: 0.5vw;
        margin-left: 0.5vw;
        display: inline-block;
        padding-bottom: 8px;
    }

    .productTitle
    {
        margin: 15px 10px 10px 10px;
        font-size: calc(1.5vw + 1.5vh);
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
    }

    .productDescription 
    {
        margin: 15px 10px 10px 10px;
        font-size: 2vw;
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
        height: 8vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .divProductImage 
    {
        margin: 0px 10px 5px 10px;
        background-color: rgba(255, 255, 255, 0.4);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
        padding: 5px;
        height: 25vh;
        display: flex;
    }

    .divProductImage > a img
    {
        height: 100%;
        width: 100%;
        margin: auto;
    }

    .productRange 
    {
        font-size: 1.8vw;
    }
}