/**
 * 가짜 리뷰 회전 스타일
 */

.reviews-container {
  position: relative;
  margin-bottom: 1rem;
  min-height: 240px;
}

.reviews-wrapper {
  transition: all 0.5s ease;
}

.review-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.reviews-controls {
  margin-top: 20px;
}

.reviews-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reviews-controls button:hover {
  background-color: var(--bs-primary);
  color: white;
}

/* 애니메이션 효과 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-item {
  animation: fadeIn 0.5s ease-in-out;
}
