.baixiu_related_products {
  padding: var(--component-gap) 0;
  background-color: var(--bg-color);
}

.brp-title {
  text-align: center;
  margin-bottom: var(--gap-80);
}

.baixiu_related_products .swiper-slide {
  height: auto;
}

.brp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  padding: var(--gap-20);
  transition: box-shadow 0.3s ease;
}

.brp-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.brp-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.875rem 1.25rem;
  border-radius: 3.75rem;
  background: rgba(34, 34, 34, 0.1);
  font-family: var(--font-family);
  font-size: var(--font-16);
  font-weight: 500;
  line-height: 1.22;
  color: var(--title-text-color);
  text-transform: capitalize;
}

.brp-pic-wrap {
  width: 74%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brp-pic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brp-colors {
  display: flex;
  align-items: center;
  gap: var(--gap-10);
  padding-top: 0.75rem;
  padding-bottom: 1.375rem;
  justify-content: center;
  margin-top: auto;
}

.brp-colors .color-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 1px solid transparent;
}

.brp-info {
  background: rgba(34, 34, 34, 0.1);
  border-radius: 1.25rem;
  padding: var(--gap-20) var(--gap-40);
  width: 100%;
}

.brp-goods-title {
  font-family: var(--font-family);
  font-size: var(--font-20);
  font-weight: 700;
  line-height: 1.22;
  color: var(--title-text-color);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.brp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: var(--gap-40);
}

.brp-pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 6.25rem;
  background: #E5E6E9;
  margin: 0 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

.brp-pagination .swiper-pagination-bullet-active {
  width: 3.75rem;
  background: var(--color-primary);
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {
  .brp-pic-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {}