/* ── Loading spinner ── */
.reviews-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 60px 0;
}
.reviews-loading span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .25;
  animation: rv-pulse 1.2s ease-in-out infinite;
}
.reviews-loading span:nth-child(2) { animation-delay: .2s; }
.reviews-loading span:nth-child(3) { animation-delay: .4s; }
@keyframes rv-pulse {
  0%, 80%, 100% { transform: scale(.8); opacity: .25; }
  40%            { transform: scale(1);  opacity: 1;   }
}

/* ── Empty / error state ── */
.reviews-empty {
  text-align: center;
  color: var(--gray);
  font-size: .95rem;
  padding: 60px 0;
}
