/* Yawei Popular Products Component */
.yawei-popular-products {
  padding: 0 0 80px;
  background: #FFFFFF;
  font-family: var(--font-family);
}

.yawei-popular-products .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1900px) {
    .yawei-popular-products .container {
      max-width: calc(100% - 422px);
      padding-left: 0;
      padding-right: 0;
    }
  }

/* Section Header */


.yawei-popular-products .section-title {
  font-family: var(--title-font-family);
  font-size: 40px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -1%;
  line-height: 1.41;
  margin: 0 0 42px 0;
  text-align: left;
}

.yawei-popular-products .title-divider {
  position: relative;
}

.yawei-popular-products .divider-line {
  width: 100%;
  height: 3px;
  background-color: #1D1D1D;
}

/* Products Grid */
.yawei-popular-products .products-grid {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.yawei-popular-products .products-row {
  display: flex;
  column-gap: 49px;
  width: 100%;
  flex-wrap: wrap;
}

/* Product Item */
.yawei-popular-products .product-item {
  width: calc((100% - 98px) / 3);
  position: relative;
  margin-top: 43px;
}

.yawei-popular-products .product-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #9C9C9C;
  position: relative;
  /* padding: 7px; */
}



/* Product Image */
.yawei-popular-products .product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 466/324;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 0;
  height: 100%;
}
.yawei-popular-products .product-image-wrapper:hover img{
  transform: scale(1.05);
}

.yawei-popular-products .product-image-wrapper > a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 466/324;
}

.yawei-popular-products .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  display: block;
}

/* Product Content */
.yawei-popular-products .product-content {
  
  text-align: center;
  background-color: #FFFFFF;
}

.yawei-popular-products .product-title {
  font-family: 'Arimo', var(--font-family);
  font-size: 24px;
  font-weight: 400;
  color: #373737;
  letter-spacing: -1%;
  line-height: 1.4166666666666667;
  margin: 0;
  text-align: left;
  width: 100%;
  margin-top: 17px;
}

.yawei-popular-products .product-title a {
    /* margin-top: 17px; */
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  font-size: 24px;
  line-height: 1.41;
  text-align: center;
}

.yawei-popular-products .product-title a:hover {
  color: var(--color-primary);
}



@media (max-width: 1400px) {

  .yawei-popular-products .section-title {
    font-size: 40px;
  }
  .yawei-popular-products .product-title {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .yawei-popular-products {
    padding: 60px 0;
  }

  .yawei-popular-products .section-title {
    font-size: 36px;
  }

  .yawei-popular-products .product-item {
    max-width: calc((100% - 60px) / 3);
  }
  .yawei-popular-products .product-title {
    font-size: 18px;
  }
}

@media (max-width: 992px) {



  .yawei-popular-products .section-title {
    font-size: 32px;
  }
  .yawei-popular-products .products-grid {
    gap: 35px;
  }

  .yawei-popular-products .product-item {
    max-width: calc((100% - 40px) / 3);
  }

  .yawei-popular-products .product-title a{
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .yawei-popular-products .divider-line{
    height: 2px;
  }
  .yawei-popular-products {
    padding: 0 0 26px;
  }
  .yawei-popular-products .product-item{
    margin-top: 15px;
    width: calc((100% - 15px) / 2);
  }
  .yawei-popular-products .section-title {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .yawei-popular-products .products-grid {
    gap: 25px;
  }
  .yawei-popular-products .products-row {
    column-gap: 15px;
  }
  .yawei-popular-products .product-item {
    max-width: 100%;
  }
  .yawei-popular-products .product-content {
    margin-top: 5px;
  }
  .yawei-popular-products .product-title{
    margin-top: 5px;
  }
  .yawei-popular-products .product-title a{
    font-size: 16px;
    text-align: center;
  }
}

