/* Yawei Related Goods Component */
.yawei-related-goods {
  padding: 0 0 80px;
  background: #FFFFFF;
  font-family: var(--font-family);
}

.yawei-related-goods .container {
  padding-left: 24px;
  padding-right: 24px;
}

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

/* Section Header */
.yawei-related-goods .section-title {
  font-family: 'Arimo', var(--title-font-family);
  font-size: 48px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -1%;
  line-height: 1.41;
  margin: 0 0 42px 0;
  text-align: left;
}

.yawei-related-goods .title-divider {
  position: relative;
}

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

/* Products Grid */
.yawei-related-goods .products-grid {
  position: relative;
  margin-top: 43px;
}

/* Product Item */
.yawei-related-goods .swiper-slide {
  height: auto;
}
.yawei-related-goods .product-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

/* Product Image */
.yawei-related-goods .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-related-goods .product-image-wrapper:hover img {
  transform: scale(1.05);
}

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

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

/* Product Content */
.yawei-related-goods .product-content {
  text-align: center;
  background-color: #FFFFFF;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yawei-related-goods .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%;
}

.yawei-related-goods .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-related-goods .product-title a:hover {
  color: var(--color-primary);
}
.yawei-related-goods .section-header{
  position: relative;
}
/* Swiper Pagination */
.yawei-related-goods .swiper-pagination-bullets.swiper-pagination-horizontal.yawei-related-pagination {
  position: absolute;
  bottom:calc(42px + 20px) ;
  right: 0;
  left: auto;
  height: 14px;
  width: auto;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.yawei-related-goods .yawei-related-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #131313;
  opacity: 0.14;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}

.yawei-related-goods .yawei-related-pagination .swiper-pagination-bullet-active {
  background-color: #E32630;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .yawei-related-goods .section-title {
    font-size: 42px;
  }
  .yawei-related-goods .product-title {
    font-size: 20px;
  }
}

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

  .yawei-related-goods .section-title {
    font-size: 36px;
  }

  .yawei-related-goods .product-title {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .yawei-related-goods .section-title {
    font-size: 32px;
  }
  .yawei-related-goods .products-grid {
    gap: 35px;
  }

  .yawei-related-goods .product-title a{
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .yawei-related-goods {
    padding: 0 0 26px;
  }
  .yawei-related-goods .section-title {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .yawei-related-goods .yawei-related-pagination{
    top: calc(100% + 10px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .yawei-related-goods .products-grid {
    gap: 28px;
  }

  .yawei-related-goods .product-title a{
    font-size: 14px;
  }
  
  /* Pagination positioning for mobile */
  .yawei-related-goods .yawei-related-pagination {
    gap: 15px;
  }
  
  .yawei-related-goods .yawei-related-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  .yawei-related-goods .swiper-pagination-bullets.swiper-pagination-horizontal.yawei-related-pagination{
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .yawei-related-goods .section-title {
    font-size: 20px;
  }
  
  .yawei-related-goods .product-title a {
    font-size: 12px;
  }
  
} 