body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
.title{
  margin-top: 50px;
}
.search-field {
  border: none;
  border-radius: 50px;
  padding: 15px;
  outline: none;
}
.search-field:hover {
  outline: none;
  border: none;
}
.search-box {
  /* border: 1px solid rgb(3, 118, 211); */
  width: 500px;
  height:60px;
  border-radius: 5px;
  margin: auto;
  margin-top: 50px;
  border-right: none;
  border-radius: 50px;
  background: #ffff;
  display: flex; 
}
.search-button {
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: 50px;

}
#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;
}
.single-product {
  padding: 50px 10px 50px 10px;
  margin: 15px 20px;
  background:#f1f2f6;
  cursor: pointer;
  height: 550px;
  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;
}
.stars-outer {
  position: relative;
  display: inline-block;
}
.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}
.stars-outer::before {
  content: "\f005 \f005 \f005 \f005 \f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ccc;
}
.stars-inner::before {
  content: "\f005 \f005 \f005 \f005 \f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #f8ce0b;
}
.cart {
  width: 350px;
  /* border: 1px solid green; */
  padding: 10px;
  box-shadow: 10px 10px 20px gray;
  border-radius: 5px;
  background: #fdf5da;
  margin-right: 30px;
  position: fixed;
}
.cart-main {
  padding-right: 30px;
}
@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);
  }
}
