/* --------------------------------
  Common css or Utilize  Start                          
----------------------------------*/
body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}


/* -------------------------------
    Header                     
--------------------------------*/
header h1{
  text-align: center;
  margin: 40px;
  font-size: 50px;
  font-family: 'Montserrat';
  font-weight: 600;
}



#getDaelis{
  margin-left: 200px;
}

/* -------------------------------
   Search Field                   
--------------------------------*/
.search-field {
  border: none;
  border-radius: 50px;
  padding: 5px;
  outline: none;
  
}
.search-field:hover {
  outline: none;
  border: none;
}
.search-box {
  border: 1px solid rgb(3, 118, 211);
  width: 530px;
  border-radius: 5px;
  margin: auto;
  margin-bottom: 100px;
  padding: 10px 10px;
}

.search-button {
  margin-left: 220px;
  height: 40px;
}

/* -------------------------------
   All Products              
--------------------------------*/
#all-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* border: 1px solid black; */
  text-align: center;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.span{
  color: orange;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 20px;
}

.single-product {
  height: 500px;
  padding: 10px;
  margin: 30px;
  padding: 35px;
  background: #d3dde6; 
  border-radius: 10px;
  transition: 0.6s;
}
.single-product:hover {
  box-shadow: 4px 4px 7px gray;
  border-radius: 10px;
  border: 1px solid cyan;
}
.product-image {
  width: 150px;
  height: 150px;
}
.cart {
  width: 350px;
  padding: 20px;
  box-shadow: 10px 10px 20px gray;
  border-radius: 5px;
  margin-right: 30px;
  position: absolute;

}
.cart-main {
  padding-right: 30px;
}




/* -----------------------
 Details                       
-------------------------*/


.coll{
  width: 400px;
  background: #d3dde6;
  height: 500px;
  border-radius: 20px;
  margin-bottom: 50px;
  margin: 0 auto;
  margin-bottom: 50px;
}



/* -----------------------
 Footer                       
-------------------------*/



.icons{
  text-align: center;
  margin: 50px;
}


.icons .fab{
  font-size: 20px;
  color: #969BAB;
  margin-left: 14px;
  text-align: center;
}


.icons p{
   text-align: center;
}






/* ------------------------------------------------------
                    @media Part                           
--------------------------------------------------------*/

@media only screen and (max-width: 768px) {
  #all-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .cart {
    width: 300px;
    /* border: 1px solid green; */
    padding: 10px;
    box-shadow: 10px 10px 20px gray;
    border-radius: 5px;
    margin-right: 30px;
    position: fixed;
  }
  .cart-main {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 468px) {
  #all-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
