#product-filter {
  justify-content: flex-start;
  gap: 64px;
  border-bottom: 1px solid #e5e5e5;
}
#product-filter label {
  font-size: 22px;
  font-weight: 4500;
  line-height: 34.32px;
  color: #605f5f;

  padding: 12px, 26px, 20px, 26px;
  border-width: 0px;
  border-bottom-width: 1px;
  border-color: transparent;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#product-filter label.active,
#product-filter label:hover {
  font-weight: 500;
  color: #ffb600;
  border-bottom-width: 2.5px;
  border-color: #ffb600;
  background-color: transparent;
}

.custom-product {
  padding: 0;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.custom-product .product-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #121212;
}

.custom-product .product-thumbnail {
  margin-bottom: 10px;
  width: 100%;
  background-color: #f6f6f6;
}

.custom-product .product-thumbnail img {
  width: 100%;
}

.custom-product .product-price {
  font-size: 1.2em;
  color: #e60000;
}

.custom-product .view-more-btn {
  display: flex;
  padding: 13px 24px 13px 24px;
  gap: 4px;
  border: 1px solid #ffb600;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.custom-product .view-more-btn:hover {
  background-color: #ffb600;
}

.custom-product .view-more-btn span {
  color: #ffb600;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
  text-align: center;
}
.custom-product .view-more-btn:hover span {
  color: #ffffff;
}
.custom-product .view-more-btn:hover svg path {
  stroke: #ffffff;
}

@media only screen and (max-width: 992px) {
  #product-filter {
    gap: 14px;
  }
  #products .custom-product {
    width: 100%;
    max-width: calc(33% - 24px);
  }
}

@media only screen and (max-width: 500px) {
  #product-filter {
    flex-wrap: wrap;
  }
  #products .custom-product {
    width: 100%;
    max-width: calc(50% - 16px);
  }
}
