body{
    font-family: 'Poppins';
}

.productTitle{
    font-size: 2em;
    font-weight: bold;
    font-family: 'Poppins';
    color: #a73a00;
}
.productImage{
    width: 100%;
}
.productImage > img{
    border-radius: 10px;
}
.productDescription{
    font-size: 1.5em;
    font-family: 'Poppins';
}

.productPrice{
    font-size: 2.2em;
    font-weight: bold;
    color:#00a700 ;
    font-family: 'Poppins';
}
.product{
    width: 350px;
    margin: 10px;
    text-decoration: none;
}
.product > img{
    border-radius: 15px 15px 0px 0px;
    width: 100%;
}
.productName{
    background-color: #001360;
    color: white;
    font-size: 1.2em;
    height: 15%;
    margin: 5% 0%;
    border-radius: 0px 0px 15px 15px;
}
.productCarouselWrapper{
    background-color: aliceblue;
    font-family: 'Poppins';
}

.hidden-content{
    display: flex;
    flex-wrap: wrap;
}

.hidden-content-1,
.hidden-content-2,
.hidden-content-3
{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 3%;
}

.hidden-text-title
{
    font-size: 1.3em;
}

.hidden-text
{
    font-size: 1.2em;
    margin-left: 2%;
}

.hidden-link
{
    text-decoration: none;
    color: #a73a00;
    font-weight: 500;
}

.hidden-img{
    max-width: 100px;
}

/*------------------------------------------*/
/*-------------MEDIA QUERIES----------------*/
/*------------------------------------------*/

@media screen and (max-width: 1372px) and (min-width: 1098px){
    .productInfoWrapper{
        font-size: 0.9em;
    }
    
}

@media screen and (max-width: 1309px)
{
    .hidden-content
    {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    .productName > p{
        font-size: 0.7em;
    }

    /* .hidden-content-1,
    .hidden-content-2
    {
        margin-bottom: 5%;
    } */

}

@media screen and (max-width: 1099px) {
    .productDescriptionInnerWrapper{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .productImage{
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 324px)
{
    

    .hidden-content-1,
    .hidden-content-2,
    .hidden-content-3
    {
       display: flex;
       flex-wrap: wrap;
       flex-direction: column;
    }
}

@media screen and (max-width: 399px){
    .productImage > img{
        width: 100%;
    }
    .productInfoWrapper{
        display: flex;
        flex-wrap: wrap;
        text-align: start;
        font-size: small;
    }
}

