
#video-reviews {
  padding: 5rem 0;
}
#video-reviews .container {
  text-align: center;
}
#video-reviews h2 {
  margin-bottom: 0.5rem;
}
.vr-subtitle {
  color: var(--paragraph);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.vr-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vr-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  max-width: 220px;
  margin: 0 auto;
}
.vr-track {
  display: flex;
  transition: transform 0.5s ease;
}

.vr-slide {
  min-width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 220px;
  margin: 0 auto;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.vr-player,
.vr-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.vr-arrow {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 2px solid var(--primary, #2563eb);
  background: transparent;
  color: var(--primary, #2563eb);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.vr-arrow:hover {
  background: var(--primary, #2563eb);
  color: #fff;
}

.vr-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.vr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.vr-dot.active {
  background: var(--primary, #2563eb);
  transform: scale(1.3);
}

.vr-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #dbeafe 0%, #eff6ff 60%, #bfdbfe 100%);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  gap: 0.5rem;
}
.vr-fallback-snow {
  font-size: 2rem;
  animation: vr-sway 2s ease-in-out infinite alternate;
}
.vr-fallback-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #1e3a5f;
  margin: 0;
}
.vr-fallback-msg {
  font-size: 0.75rem;
  color: #3b6fa0;
  margin: 0;
  line-height: 1.4;
}
@keyframes vr-sway {
  from {
    transform: rotate(-8deg) scale(1);
  }
  to {
    transform: rotate(8deg) scale(1.1);
  }
}

@media (max-width: 600px) {
  .vr-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.8rem;
  }
}
.vr-track-outer {
  overflow: hidden;
  width: 100%;
}

.vr-track {
  display: flex;
  transition: transform 0.45s ease;
}

.vr-slide {
  flex-shrink: 0; 
  width: 100%;
}

.vr-slide iframe,
.vr-slide > div {
  width: 100%;
  height: 100%;
}
.vr-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
  
  max-width: 220px;
  margin: 0 auto;
}

.vr-track {
  display: flex;
  width: 100%; 
  transition: transform 0.5s ease;
}

.vr-slide {
  flex-shrink: 0; 
  width: 100%; 
  aspect-ratio: 9 / 16;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
