/* home */
#product-list,
#product-list-basket,
#product-list-kids,
#related-list {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  width: 90%;
}

.product-card {
  width: 19% !important;
  margin-bottom: 20px;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}



.product-card img {
  width: 100%;
  object-fit: cover;
  margin: 0 0 20px;
  transition: opacity 0.3s ease;
}

.product-card .title {
  font-size: 16px;
  /* font-weight: 500; */
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-card .price {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}




.row2,
.row3,
.row4 {
  margin: 50px 0;
}

