.product-list {
  padding: 1rem 0;
}

@media (max-width: 576px) {
  .product-list {
    padding: 1rem 2rem 1rem 4rem;
  }
}

.product-list-card {
  border: 2px solid #dddddd;
  padding: 25px;
  margin: 20px 0;
  background-color: #ffffff;
  min-height: 256px;
  transition: all 0.3s ease;
}

.product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px,
    rgb(0 0 0 / 5%) 0px 4px 6px -2px;
}

.plcard-img {
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 12px;
  border: 1px solid #efefef;
  width: 100%;
  /* height: 130px; */
  object-fit: contain;
}


.product-card-title {
  font-size: 20px;
  display: block;
  line-height: 1.3;
  min-height: 55px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-ellipsis-multi {
  line-height: 1.5;
  margin: 10px 0 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

@media (max-width: 576px) {
  .product-card-ellipsis-multi {
    display: none;
  }

  .product-card-title {
    padding-top: 20px;
  }
}

.product-card-info {
  color: var(--lightgray);
  padding: 0;
  line-height: 1.5;
  font-size: 14px;
  min-height: 85px;
}

.product-card-info>li {
  list-style: none;
}

.product-card-info .tag {
  color: var(--sub-colorC);
}