
.lightGreyBG {
  background-color: #f9f9f9;
}

.productsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.productsListImage {
  width: 240px;
  height: 240px;
  overflow: hidden;
  border-radius: 5px;
}

.productsListDetails {
  width: 240px;
  margin-top: 10px;
}

.productsListTitle {
  font-size: 30px;
  text-align: center;
  padding: 50px 0;
}

.productContainer {
  display: flex;
  flex-direction: column;
  margin: 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.productContainer:hover {
  border-color: #eee;
  -webkit-box-shadow: 0px 0px 30px -12px #b3b3b3; 
  box-shadow: 0px 0px 30px -12px #b3b3b3;
}

.productsName {
  font-weight: 400;
  text-transform: capitalize;
  margin-top: 20px;
  font-size: 14px;
}

.productsPrice {
  font-size: 16px;
  margin: 10px 0;
}

.productsStoreName {
  font-size: 13px;
  color: #747474;
}