*{
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

body{
    padding-top: 100px;
}

.header{
    padding: 10px 60px;
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
}

.nav-left{
  
    width: 100px;

}

.nav-left .nav-logo a img{
    width: 100%;
   padding: 8px;
    cursor: pointer;
    border: 1px solid black;


}

.nav-left .nav-logo a img:hover{
    border: 1px solid white;

}

.nav-middle{

    flex: 1;
    margin-right: 40px;
    margin-left: 70px;
    max-width: 1000px;
    display: flex;
    align-items: center;
    
}

.search-bar{
   flex: 1;
   height: 40px;
   padding-left: 12px;
   font-size: 16px;
   border: none;
  
   outline: none;
   border-top-left-radius:5px ;
   border-bottom-left-radius:5px ;
}




input[type=text]:focus {
    border: 2px solid rgb(254, 189, 105);
  }



.search-bar::placeholder{
    font-family:"poppins",sans-serif;
   

    font-size: 16px;
}

.search-btn{
    width: 40px;
    height: 40px;
    color: black;
    font-weight: bold;
    font-size: 20px;
    background-color: rgb(254, 189, 105);
    border: none;
    cursor: pointer;
    border-top-right-radius:5px ;
    border-bottom-right-radius:5px ;
}




.return-order{
    color: white;
    border: 1px solid black;
    padding: 4px;
    font-size: 14px;
    cursor: pointer;
}

.return-order:hover{

    border: 1px solid white;

}



.order p{
    font-weight: bold;
}

.cart{
    display: flex;
    color: white;
    align-items: center;
    border: 1px solid black;
    padding: 8px;
    cursor: pointer;
}

.cart:hover{
    border: 1px solid white;

}
.cart p{
    font-weight: bold;
}
.cart a i{
    color: white;
    font-size: 30px;
    display: inline;
    text-decoration: none;

}


/* hero section */

.hero{
    width: 90%;
    margin: auto;
   
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
 
   
    
}


.cart-container{
    
   background-color: white;
    border: 2px solid rgb(231, 231, 231);
   padding: 20px;
    margin: 20px 20px;
    transition: 0.3s;
    
}

.cart-container:hover{
    cursor: pointer;
 
}



.cart-product{
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    object-fit:contain;
}

.cart-item img{
    width: 100px;
    margin: 15px 0px;
    
}

.cart-item p{
    font-weight: bold;
}


.cart-item select{
    width: 50px;
    border-radius: 5px;
    padding: 5px;
    background-color: rgb(240, 240, 240);
    margin: 10px 0px;
}


.add-to-cart{
    padding: 8px 10px ;
    background-color:rgb(255, 216, 20) ;
    border: none;
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
}


.add-to-cart:hover{
    background-color: rgb(247, 202, 0);
}