.rating-summary-card {
    text-align: center;
    padding: 2rem;
}
.rating-big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
}
.rating-stars-big {
    font-size: 1.5rem;
    margin: 8px 0;
}
.rating-stars-big .fas.fa-star { color: #fbbf24; }
.rating-stars-big .fas.fa-star-half-alt { color: #fbbf24; }
.rating-stars-big .far.fa-star { color: rgba(255,255,255,0.2); }

/* Distribution bars */
.dist-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.dist-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    width: 16px;
    text-align: center;
}
.dist-bar-bg {
    flex: 1;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 5px;
    overflow: hidden;
}
.dist-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 5px;
    transition: width 0.6s ease;
}
.dist-count {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    width: 28px;
    text-align: right;
}

/* Empty state */
.empty-reviews {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255,255,255,0.5);
}
.empty-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.15);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 1.5rem;
}
.pagination-wrapper .page-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
}
.pagination-wrapper .page-item.active .page-link {
    background: #6366f1;
    border-color: #6366f1;
    color: white;
}
.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.3;
}
