.reviews-list {
    margin: 20px 0;
}

.review-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #black;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars .star {
    font-size: 20px;
    color: #ddd;
    transition: color 0.2s ease;
}

.rating-stars .star.active {
    color: #ffc107;
}

.rating-value {
    margin-left: 8px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.review-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.review-pros,
.review-cons,
.review-comment {
    margin-bottom: 10px;
}

.review-pros strong {
    color: #61BA41;
}

.review-cons strong {
    color: #black;
}

.review-comment strong {
    color: #2196f3;
}

.review-pros p,
.review-cons p,
.review-comment p {
    margin: 5px 0 0 0;
    line-height: 1.4;
    color: #black;
}

.reviews-empty {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;

    border-radius: 8px;
}

.reviews-pagination {
    margin-top: 20px;
    text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .rating-stars .star {
        font-size: 18px;
    }
}