<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-list {
  padding: 1rem 0;
}

@media (max-width: 576px) {
  .product-list {
    padding: 1rem 2rem 1rem 4rem;
  }
}

.product-list-card {
  position: relative;
  transition: all 0.3s ease;
  color: #402e32;
  margin-bottom: 10px;
  padding: 10px 6px;
}

.product-list-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.new-tag {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(12%, 90%);
  background-color: #FC5032;
  color: #ffffff;
  padding: 0 10px;
  border-radius: 0 12px 12px 0;
}

.product-list-card:hover {
  transform: translateY(-4px);
}



.plcard-img {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid #efefef;
  width: 100%;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card-title {
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1.3;
  min-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-list-card h6 {
  font-weight: 400;
}

.product-list-card .tag {
  font-size: 14px;
  color: #999999;
}

@media (max-width:992px) {
  .product-list-card {
    padding: 0;
  }

  .new-tag {
    transform: translate(0%, 50%);
  }
}</pre></body></html>