/* home */
#product-list,
#product-list-basket,
#product-list-kids,
#related-list {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  width: 90%;
  flex-wrap: wrap;
}

.li-title {
  text-align: center;
  margin: 50px auto;
  font-size: 30px;
  font-weight: 500;
}

.product-card {
  width: 24% !important;
  margin-bottom: 50px;
  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 !important;
  /* font-weight: 500; */
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: left !important;
}

.product-card .price {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}




.row2,
.row3,
.row4 {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
}


.row2 .col {
  width: 50%;
}

.row3 .col {
  width: 32%;
}

.row2 .col img,
.row3 .col img {
  height: 90%;
}


.row2 .col .txt,
.row3 .col .txt {
  margin: 20px 0 0;
  font-size: 24px;
  padding: 10px;
}