html,
body {
  margin: 0;
  height: 100%;
}

.heading-3 {
  font-size: 24px;
  color: #222222;
}

.product-card {
  width: 200px;
  height: 250px;
  border: 1px solid #222222;
  margin: 10px;
  overflow: hidden;
}

.product-card .img {
  width: 100%;
  height: 170px;
}

.product-card .desc {
  padding: 4px 12px;
  box-sizing: border-box;
}

.product-card .desc .info {
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 4px 0;
}

.navbar {
  background-color: #232f3e;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.navbar > a {
  color: #fff;
}

.body {
  display: flex;
}

.filters {
  width: 200px;
  border: 1px solid #222222;
  padding: 12px;
  box-sizing: border-box;
}

.filters .categories {
  margin-top: 14px;
}

.filters .categories .category {
  height: 24px;
  line-height: 24px;
}

.listing {
  width: calc(100% - 200px);
  border: 1px solid #222222;
}

.products {
  display: flex;
  flex-wrap: wrap;
}
