/* ===================================
   REVIEW CAROUSEL CARDS
   =================================== */

.review-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.review-video {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 6px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(123, 95, 201, 0.32) 0%, var(--bg-deep) 78%);
  border: 1px solid var(--line-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.review-video .spark {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
  font-size: 14px;
}

.review-video .spark.tl {
  top: 14px;
  left: 16px;
}

.review-video .spark.br {
  bottom: 14px;
  right: 16px;
  color: var(--purple-bright);
}

.review-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.4);
}

.review-play:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.review-play::after {
  content: '▶';
  color: var(--gold-bright);
  font-size: 22px;
  margin-left: 5px;
}

.review-duration {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  background: rgba(7, 2, 26, 0.78);
  padding: 5px 12px;
  border-radius: 999px;
}

.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-quote::before {
  content: '\201D';
  color: var(--gold);
  font-size: 24px;
  margin-right: 4px;
}

.review-divider {
  height: 1px;
  background: var(--line-dim);
  margin: 0 0 22px;
}

.review-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.review-type {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================
   CAROUSEL BASE STYLES
   =================================== */

.carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track>* {
  scroll-snap-align: start;
  flex: 0 0 calc(50% - 14px);
}

@media (max-width: 800px) {
  .carousel-track>* {
    flex: 0 0 100%;
  }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 2, 26, 0.7);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(6px);
}

.carousel-arrow:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-bright);
}

.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.carousel-arrow.prev {
  left: -58px;
}

.carousel-arrow.next {
  right: -58px;
}

@media (max-width: 1240px) {
  .carousel-arrow.prev {
    left: -12px;
  }

  .carousel-arrow.next {
    right: -12px;
  }
}

.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 999px;
}
