.product-list-page {
  margin-top: 60px;
  padding: 20px;
  background: #f9f9f9;
}

.el-breadcrumb {
  margin: 10px;
}
.filter-card{
  margin-top: 10px;
}
.page-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.product-list-container{
  /* margin-top: 20px; */
}

.product-card {
  margin: 30px 0;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.product-card:hover {
  transform: scale(1.05);
}


.product-image-container {
  position: relative;
}


.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
}


.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
}

.discount {
  background: red;
}

.hot {
  background: orange;
}

.sale {
  background: green;
}


.price {
  font-size: 18px;
  color: red;
  font-weight: bold;
}


.add-to-cart-btn {
  margin-top: 10px;
  transition: background 0.3s ease-in-out;
}

.add-to-cart-btn:hover {
  background: darkblue;
}


.product-name {
font-size: 16px;
font-weight: 500;
color: #333;
height: 48px; 
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; 
-webkit-box-orient: vertical;
}


.price-container {
margin-top: 5px;
display: flex;
align-items: center;
gap: 10px;
}

.new-price {
font-size: 20px;
font-weight: bold;
color: red;
}

.old-price {
font-size: 14px;
font-weight: 400; 
color: gray;
text-decoration: line-through;
}


@media (min-width: 1200px) {
.el-col-xl-4 {
  flex: 0 0 20%; 
  max-width: 20%;
}
}