/* ===================================
   리뷰 동적 렌더링 추가 스타일
   =================================== */

/* 더보기 카드 */
.load-more-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px dashed rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    cursor: default;
}

.load-more-card:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.6);
}

.load-more-content {
    text-align: center;
    padding: 20px;
}

.load-more-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.load-more-content h4 {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
}

.remaining-count {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.total-reviews-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.total-reviews-info i {
    color: #D4AF37;
    margin-right: 5px;
}

/* 완료 카드 */
.complete-card {
    border-style: solid;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.complete-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    animation: checkPulse 1.5s ease-in-out;
}

@keyframes checkPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-style: italic;
}

/* 통계 정보 */
.reviews-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stat-number i {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent);
}

/* 더보기 버튼 */
#loadMoreReviews {
    margin-top: 10px;
    padding: 12px 30px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#loadMoreReviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#loadMoreReviews i {
    font-size: 1.2rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .reviews-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px 15px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(to right, 
            transparent, 
            rgba(212, 175, 55, 0.5), 
            transparent);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .load-more-icon {
        font-size: 2.5rem;
    }
    
    .load-more-content h4 {
        font-size: 1.2rem;
    }
    
    .load-more-card {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.8rem;
    }
    
    .load-more-icon {
        font-size: 2rem;
    }
}
