/* 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;
  width: 1400px;
}

.li-title {
  margin: 100px auto 10px;
  font-size: 30px;
  font-weight: 500;
  width: 1400px;
}


p {
  margin: auto;
  font-weight: 500;
  width: 1400px;
}

.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;
  width: 100%;
}

.product-card .price {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.row1 {
  margin: auto;
  display: flex;
  align-items: center;
}

.row1 img {
  width: 1000px;
  margin: 0 10px;
}

.row2,
.row3,
.row4 {
  width: 1400px;
  margin: 50px auto;
  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;
}

.row4 .li-col {
  width: 200px;
  height: 200px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.row5 {
  width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
  height: 1000px;
  overflow: hidden;
}

.row5 .left {
  width: 58%;
  height: 100%;
  overflow: hidden;
}

.row5 .right {
  width: 40%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.row5 .right .r-col {
  width: 100%;
  height: 48%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.row5 .right .r-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}