.baro-reviews-wrapper {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: auto;
}

.baro-customer-reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  text-align: center;
}

/* 타이틀 스타일 */
.baro-reviews-title {
  font-size: 32px;
  font-weight: 700;
  color: #0091ff;
  margin-bottom: 20px;
}

/* 설명 스타일 */
.baro-reviews-description {
  margin-bottom: 20px;
  color: #4b5563;
  line-height: 1.6;
}

.baro-reviews-description p {
  margin-bottom: 8px;
}

/* 더 많은 리뷰 링크 */
.baro-more-reviews {
  position: absolute;
  top: 40px;
  right: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #6b7280;
  font-size: 14px;
  transition: color 0.3s ease;
}

.baro-more-reviews:hover {
  color: #0091ff;
}

.baro-more-reviews svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.baro-more-reviews:hover svg {
  transform: translateX(5px);
}

.baro-more-reviews:hover svg path {
  stroke: #0091ff;
}

/* 리뷰 컨테이너 */
.baro-testimonials-container {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

/* 리뷰 카드 */
.baro-testimonial-card {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.baro-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* 리뷰 헤더 */
.baro-testimonial-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.baro-customer-info {
  display: flex;
  align-items: center;
}

.baro-customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.baro-customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baro-customer-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.baro-purchase-info {
  font-size: 14px;
  color: #6b7280;
}

.baro-quote-icon {
  opacity: 0.5;
}

/* 리뷰 내용 */
.baro-testimonial-content {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 24px;
}

.baro-testimonial-content p {
  margin-bottom: 12px;
}

/* 별점 */
.baro-rating {
  display: flex;
}

.baro-star {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23F97316'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .baro-testimonials-container {
    flex-direction: column;
  }

  .baro-more-reviews {
    position: static;
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .baro-reviews-title {
    font-size: 28px;
  }

  .baro-testimonial-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .baro-testimonial-header {
    flex-direction: column;
  }

  .baro-quote-icon {
    display: none;
  }

  .baro-customer-info {
    margin-bottom: 16px;
  }

  .baro-reviews-title {
    font-size: 24px;
  }
}
