.productBox {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;

  .productItem {
    border: 1px solid #bc996f;
    // height: 265px;
    width: 100%;
  }

  // @media (max-width:1600px) {
  //     grid-template-columns: repeat(3, 1fr);

  //     .productItem {
  //         .starIconsImage {
  //             width: 83px;
  //         }
  //         h5 {
  //             font-size: 14px;
  //         }
  //     }

  // }

  @media (max-width: 992px) {
    grid-template-columns: repeat(2, 1fr);
    .productItem {
      h5 {
        font-size: 19px;
      }
    }
  }

  @media (max-width: 600px) {
    grid-template-columns: repeat(1, 1fr);
    .productItem {
      h5 {
        font-size: 19px;
      }
    }
  }

  .heartIcon {
    display: flex;
    top: 10px;
    right: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
    width: 40px;
    height: 40px;
  }
}

.dashboardHeading {
  color: #667080;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  font-family: Inter;
  text-transform: capitalize;
}
