.all-product-reviews {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-gap: 20px;
}

.review-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background-color: #eee;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.review-item.show {
    opacity: 1;
    transform: translateY(0);
}

.author {
    font-weight: bold;
    margin-bottom: 8px;
}

.rating {
    color: gold;
    font-size: 1.2em;
    margin-bottom: 8px;
}

.load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 32px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
	font-weight:normal;
    line-height: 1;
    position: relative;
}

.load-more.loading {
    padding-right: 50px;
}

.load-more.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 반응형 디자인 */
@media screen and (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}