/* home */
#product-list,
#product-list-basket,
#product-list-kids,
#related-list {
  width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  /* background-color: #000; */
  padding: 50px 0;
  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;
  /* color: #fff; */
}

.product-card .price {
  font-size: 14px;
  /* color: #fff; */
  font-weight: 500;
}



.row1 {
  width: 1000px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

.row1 h1,
.row2 h1 {
  font-size: 30px;
  font-weight: normal;
  margin: 30px 0 20px;
}

.row1 p,
.row2 p {
  width: 500px;
  margin: auto;
  line-height: 1.5;
  font-weight: 500;
}

.row1 .btn {
  background-color: #ddba21;
  width: 130px;
  padding: 10px;
  margin: 20px auto;
  border-radius: 50px;
  color: #fff;
  font-weight: 550;
}

.row2 {
  width: 1000px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}

.row2 .col {
  width: 48%;
}

.row2 .col img {
  height: 500px;
}


.row3 {
  display: flex;
  width: 1400px;
  margin: 50px auto;
  align-items: center;
}

.row3 .text {
  width: 40%;
  padding: 50px 80px;
}

.row3 .text .title {
  font-size: 30px;
  margin: 10px 0;
}

.row3 .text p {
  line-height: 1.5;
  margin: 10px 0;
  color: #333;
}

.row3 .img {
  height: 500px;
  width: 60%;
}

.row4 {
  width: 1000px;
  margin: 50px auto;
  text-align: center;

}

.row4 .title {
  font-size: 30px;
  margin: 20px 0;
}

.row4 .col-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.row4 .col-row .col {
  width: 24%;
  margin: 10px 0;
}