.product-box {
  width: 100%;
  background-color: #1e2226;
}

.product-box .products-class {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0 0;
}

.product-box .products-class .products-class-item a {
  font-size: 16px;
  color: #eee;
  transition: all 0.8s ease-in-out;
}

.product-box .products-class .products-class-item a:hover {
  color: #ed1c28;
}

.products-class-item {
  margin: 0 20px;
}

.product-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 4em 0;
  box-sizing: border-box;
}

.product-list .product-item {
  width: 30%;
  box-shadow: 0px 1px 3px -2px rgb(0 0 0 / 10%);
  background-color: #fff;
  transition: all .3s ease-in-out;
  border: 1px solid #fff;
  padding-bottom: 3.5em;
}

.product-list .product-item .product-img {
  text-align: center;
}

.product-list .product-item .product-img img {
  max-width: 100%;
  max-height: 420px;
  height: auto;
  cursor: pointer;
}

.product-list .product-item .product-brand {
  text-align: center;
  padding: 0 1.2em;
}

.product-list .product-item .product-brand p {
  font-size: .85em;
  margin-bottom: 0.5em;
  display: block;
  line-height: 1.3;
  opacity: .6;
  color: #6c6c6c;
}

.product-list .product-item .product-title{
  font-size: 16px;
  color: #222;
  padding: 0 1.2em;
  text-align: center;
}
.product-list .product-item .product-title a{
  cursor: pointer;
}

@media (max-width:920px) {
  .product-list {
    
    padding: 10px !important;
  }
  .product-list .product-item{
    width: 45%;
    padding-bottom: 15px;
  }
  .product-list .product-item .product-title{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
    font-weight: 600;
  }
}