.real-reviews-section {
  padding: 80px 0;
  background: #fff;
}

.real-reviews-section .section-title {
  text-align: center;
  margin-bottom: 44px;
}

.real-reviews-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.real-reviews-section .section-title p {
  font-size: 18px;
  color: #718096;
  max-width: 760px;
  margin: 0 auto;
}

.real-reviews-wrapper {
  position: relative;
  padding: 0 64px;
}

.real-reviews-wrapper .carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: 2px solid #17E1A8;
  border-radius: 50%;
  color: #17E1A8;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.real-reviews-wrapper .carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.real-reviews-wrapper .carousel-btn:hover,
.real-reviews-wrapper .carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
  background: #17E1A8;
  color: #fff;
}

.real-reviews-wrapper .carousel-btn-prev {
  left: 8px;
}

.real-reviews-wrapper .carousel-btn-next {
  right: 8px;
}

.real-reviews-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 0 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.real-reviews-carousel::-webkit-scrollbar {
  display: none;
}

.real-review-card {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}

.real-review-card img,
.real-review-card video {
  display: block;
  width: auto;
  max-width: min(760px, 100%);
  max-height: 640px;
  height: auto;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.14);
}

.real-review-card video {
  background: #111827;
}

.real-review-audio {
  width: min(680px, 100%);
  padding: 28px;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.14);
}

.real-review-audio i {
  display: block;
  margin-bottom: 18px;
  color: #17E1A8;
  font-size: 32px;
  text-align: center;
}

.real-review-audio audio {
  width: 100%;
}

.real-reviews-empty {
  text-align: center;
  color: #718096;
  padding: 32px;
}

.video-reviews-wrapper {
  margin-top: 52px;
}

.video-reviews-title {
  text-align: center;
  margin-bottom: 22px;
}

.video-reviews-title h3 {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 6px;
}

.video-reviews-title p {
  color: #718096;
  font-size: 15px;
}

.youtube-playlist-frame {
  width: min(860px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.14);
}

.youtube-playlist-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .real-reviews-section {
    padding: 60px 0;
  }

  .real-reviews-section .section-title h2 {
    font-size: 30px;
  }

  .real-reviews-section .section-title p {
    font-size: 16px;
  }

  .real-reviews-wrapper {
    padding: 0 34px;
  }

  .real-review-card img,
  .real-review-card video {
    max-width: 100%;
    max-height: none;
    border-radius: 14px;
  }

  .video-reviews-wrapper {
    margin-top: 40px;
  }

  .video-reviews-title h3 {
    font-size: 21px;
  }

  .youtube-playlist-frame {
    border-radius: 14px;
  }
}
