/* home */
#product-list,
#product-list-basket,
#product-list-kids,
#related-list {
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  /* background-color: #000; */
  padding: 50px;
  flex-wrap: wrap;
}

.li-title {
  text-align: center;
  margin: 50px auto;
  font-size: 30px;
  font-weight: 500;
}

.product-card {
  width: 32% !important;
  margin-bottom: 50px;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .img-box {
  position: relative;
}

.product-card .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 50px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  font-size: 20px;
}

.product-card img {
  width: 100%;
  object-fit: cover;
  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 {
  margin: auto;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.row1 .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  text-align: center;
  padding: 50px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.row1 .mask .tip {
  font-size: 20px;
}

.row1 .mask .title {
  font-size: 35px;
  margin: 30px 0;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.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 {
  padding: 0 50px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}

.row2 .col {
  width: 32%;
  position: relative;
}

.row2 .col img {
  height: 500px;
}

.row2 .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 50px;
  color: #fff;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, .25);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.row3 {
  display: flex;
  align-items: center;
  height: 600px;
  position: relative;
}

.row3 .mask {
  padding: 20px;
  background-color: #000;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  transform: translate(-50%, -50%);
}

.row3 .mask P {
  margin: 10px 0;
  line-height: 1.5;
  text-align: center;
}

.row4 {
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}

.row4 .content {
  margin: auto;
  text-align: center;
}

.row4 .content .title {
  width: 1000px;
  font-size: 45px;
  margin: 0 auto 50px;
}

.row4 .content p {
  width: 600px;
  line-height: 2;
  margin: 20px auto;
}

