.product-card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.product-card .product-image {
  display: block;
  height: 240px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease; /* Thêm hiệu ứng mượt */
}

.product-card:hover .product-image img {
  transform: scale(1.08); /* Phóng to nhẹ */
}

.product-card .product-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 2.8em; /* 2 dòng * 1.4 line-height = giữ cố định height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Giới hạn 2 dòng */
  line-clamp: 2;           /* Standard property for compatibility */
  -webkit-box-orient: vertical;
}


.product-card .shop-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.product-card .shop-button:hover {
  background-color: #000;
}
