*{
    padding: 0;
    margin: 0;
}
body{
    overflow-x: hidden;
    background-color: rgb(150, 150, 171);
}
header{
    background-color: pink;
    width: 100vw;
    display: flex;
    flex-direction: column;
}
.top{
    position: relative;
   background-color: rgb(11, 11, 40);
   color: white;
   display: flex;
   flex-direction: row;
   padding: 10px;
}
.top-left{
   margin-left: 5px;
}
.top-middle{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 50vw;
    border-radius: 5px;
}
.drop-down select{
    border: none;
    width: 6rem;
    height: 2rem;
    border-radius: 5px;
    background-color: grey;
}
.search-field input{
    border: none;
    width: 35rem;
    height: 2rem;
}
.search-icon{
    background-color: grey;
    border-radius: 5px;
}
.search-icon i{
    font-size: 1.5rem;
    margin-top: 5px;
    margin-left: 20px;
    
}
.top-right{
    position: absolute;
    display: flex;
    flex-direction: row;
    right: 10px;
}
.top-right p, div{
    padding-right: 20px;
}
.top-right div{
    display: flex;
    flex-direction: row;
}
.top-right div i{
    font-size: 1.5rem;
}
.top1{
    background-color: rgb(32, 32, 60);
    display: flex;
    flex-direction: row;
    padding: 10px;
}
.top1 a{
    text-decoration: none;
    color: white;
    margin-right: 30px;
}
.top2{
    background-color: white;
    border-bottom: 1px solid rgb(32, 32, 60);
    display: flex;
    flex-direction: row;
    padding: 10px 15px;

}
.top2 a{
    text-decoration: none;
    color: black;
    margin-right: 20px;
}
.bottom{
    position: relative;
    background-color: white;
    border-bottom: 1px solid rgb(32, 32, 60);
    display: flex;
    flex-direction: row;
    padding: 10px;
    height: fit-content;
}
.bottom h5 span{
    text-decoration: underline;
    color: rgb(11, 11, 40);
}
.sortBy{
    color: white;
    position: absolute;
    background-color: rgb(11, 11, 40);
    border-radius: 5px;
    padding: 5px;
    right: 20px;
    top: 2px;
}
/*-------------------------------------------------------------------------*/
.sidenav{
    width: 18vw;
    background-color: rgb(150, 150, 171);
    display: flex;
    flex-direction: column;
    height: 100vw;
}
.sidenav div{
   margin-top: 20px;
   margin-left: 10px;
}

section{
    position: relative;
    display: flex;
    flex-direction: row;
}
.maindiv{
    background-color: white;
    position: absolute;
    right: 0px;
    display: flex;
    flex-direction: column;
}

.rowsection{
    display: flex;
    flex-direction: row;
    
}
.productCard{
    padding: 10px;
    border: 1px solid gray;
    width: 14vw;
    height: 25vw;
    margin: 5px;
}
.productCard img{
    width: 12vw;
    height: 12vw;
    padding: 2vw;
}
.productCard button{
    background-color: rgb(230, 119, 8);
    color: white;
    border: none;
    padding: 5px;
}