/* Review Card */
.review-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    text-align:center;
}
.review-card img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}
.stars{
    color:#ffc107;
    margin:8px 0;
}

/* Slider */
.slider{
    overflow:hidden;
}
.slider-track{
    display:flex;
}
.slide{
    flex:0 0 auto;
    width:33.3333%;
    padding:15px;
}
@media(max-width:992px){
    .slide{ width:50%; }
}
@media(max-width:576px){
    .slide{ width:100%; }
}

/* Review Form */
.review-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

/* Star Rating */
.star-rating i{
    font-size:24px;
    color:#ccc;
    cursor:pointer;
}
.star-rating i.active{
    color:#ffc107;
}