
.product-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.product-item {
  text-align: center;
  max-width: 300px;
  margin-top: 20px;
}

.product-item img {
  width: 260px;
  height: 300px;
}

.product-item p {
  margin-top: 8px;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-item {
    flex: 1 1 calc(50% - 20px); /* 2 sản phẩm 1 hàng */
  }

  .product-item img {
    width: 100%;
    height: 150px;
  }
}