body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
.shop-title {
  font-size: 72px;
  font-weight: 700;
}
.fab {
  margin-left: 16px;
}
.search-area {
  max-width: 350px;
  margin: 60px auto;
}
#input-field {
  border-right: none;
  border-radius: 4px 0 0 4px;
}
#search-btn {
  border-left: none;
  border-radius: 0 4px 4px 0;
}
#product-details {
  display: none;
  margin: 0 2px 60px 2px;
  padding: 30px 0;
  border-radius: 4px;
  box-shadow: 0 4px 16px 8px rgba(0, 0, 0, 0.1);
}
.product-img-details {
  width: 250px;
  height: 250px;
}
#products-area {
  margin: 40px 0;
}
#all-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  text-align: center;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.single-product {
  border: 1px solid #ddd;
  min-height: 560px;
  border-radius: 8px;
  background-color: whitesmoke;
  padding: 16px 12px;
  box-shadow: 1px 2px 8px #eee;
  transition: 0.5s;
}
.single-product:hover {
  box-shadow: 4px 4px 12px #ddd;
  background-color: #fff;
}
.product-image {
  width: 150px;
  height: 150px;
}
.cart {
  width: 350px;
  padding: 10px;
  box-shadow: 10px 10px 20px gray;
  border-radius: 5px;
  margin-right: 30px;
  position: fixed;
}
.cart-main {
  padding-right: 30px;
}
#purchase-confirmation, #empty-purchase {
  display: none;
}
.reviews {
  font-size: 16px;
}
.fas {
  margin-right: 4px;
}
.fa-star {
  color: orange;
}
.fa-user {
  color: darkorange;
}
@media only screen and (max-width: 768px) {
  #all-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .cart {
    width: 300px;
    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);
  }
}
