.ouruidi-customer-reviews-section {
  background: #fff;
  padding: 70px 0;
  font-family: var(--font-family, 'Muli', Arial, sans-serif);
}
.ouruidi-customer-reviews-section .customer-review-card {
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 32px 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.ouruidi-customer-reviews-section .customer-review-card .review-avatar {
  width: 25%;
  position: relative;
}
.ouruidi-customer-reviews-section .review-quote-mark {
  position: absolute;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  right: 0;
  top: 0;
  background-color: var(--color-primary);
  font-size: 12px;
}
.ouruidi-customer-reviews-section .review-quote-mark svg {
  width: 8px;
}
.ouruidi-customer-reviews-section .review-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.ouruidi-customer-reviews-section .review-content {
  flex: 1;
}
.ouruidi-customer-reviews-section .review-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.ouruidi-customer-reviews-section .review-role {
  font-size: 16px;
  color: var(--color-primary, #06A4FB);
  margin-bottom: 12px;
}
.ouruidi-customer-reviews-section .review-text {
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin-top: 8px;
}
.ouruidi-customer-reviews-section .review-info {
  margin-top: 2rem;
}
.ouruidi-customer-reviews-section .swiper-pagination {
  position: relative;
  margin-top: 24px;
  text-align: center;
}
.ouruidi-customer-reviews-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-primary, #06A4FB);
  opacity: 0.3;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: opacity 0.2s;
}
.ouruidi-customer-reviews-section .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-primary, #06A4FB);
}
.ouruidi-customer-reviews-section .swiper-button-next,
.ouruidi-customer-reviews-section .swiper-button-prev {
  color: var(--title-text-color, #06A4FB);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  bottom: 0%;
  transform: translateY(-50%);
}
.ouruidi-customer-reviews-section .swiper-button-prev:after,
.ouruidi-customer-reviews-section .swiper-button-next:after {
  content: none;
}
.ouruidi-customer-reviews-section .swiper-button-next:hover,
.ouruidi-customer-reviews-section .swiper-button-prev:hover {
  color: var(--color-primary, #06A4FB);
}
.ouruidi-customer-reviews-section .swiper-button-next {
  left: auto;
  right: 0px;
}
.ouruidi-customer-reviews-section .swiper-button-prev {
  left: auto;
  right: 46px;
}
.ouruidi-customer-reviews-section .swiper-button-next:after,
.ouruidi-customer-reviews-section .swiper-button-prev:after {
  font-size: 20px;
}
.ouruidi-customer-reviews-section .review-rating {
  margin: 8px 0 0 0;
  font-size: 0;
}
.ouruidi-customer-reviews-section .review-rating .star {
  display: inline-block;
  font-size: 18px;
  color: var(--color-primary, #06A4FB);
  margin-right: 2px;
  transition: color 0.2s;
}
.ouruidi-customer-reviews-section .review-rating .star.active {
  color: var(--color-primary, #06A4FB);
}
@media (max-width: 768px) {
  .ouruidi-customer-reviews-section .customer-review-card {
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .ouruidi-customer-reviews-section .review-name {
    font-size: 18px;
  }
  .ouruidi-customer-reviews-section .review-text {
    font-size: 16px;
  }
} 