.review-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    overflow-y:auto;
}

.review-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.rating-number{
    font-size:42px;
    font-weight:bold;
    color:#000;
}

.stars{
    color:#f4b400;
    font-size:18px;
    margin:5px 0;
}

.review-count{
    color:#777;
    font-size:14px;
}

.review-list{
    max-height:270px;
    padding-right:10px;
}

.review-item{
    border-bottom:1px solid #eee;
    padding:15px 0;
}

.review-item:last-child{
    border-bottom:none;
}

.review-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
}

.review-header img{
    width:40px;
    height:40px;
    border-radius:50%;
}

.review-header h5{
    font-size:15px;
    margin:0;
}

.review-item p{
    font-size:14px;
    color:#555;
    margin:0;
}

.rating-bars{
    flex:2;
}

.average-rating{
    flex:1;
    text-align:center;
}

.average-rating h1{
    font-size:40px;
    margin:0;
}

.bar{
    display:flex;
    align-items:center;
    margin-bottom:6px;
}

.bar span{
    width:20px;
    font-weight:bold;
}

.progress{
    flex:1;
    height:8px;
    background:#eee;
    border-radius:10px;
    margin-left:10px;
}

.fill{
    height:100%;
    background:#ffc107;
    border-radius:10px;
}
::-webkit-scrollbar {
    display:none;
}