.star-rating{
    display:flex;
    gap:5px;
    margin-top:10px;
}

.star{
    font-size:35px;
    color:#ddd;
    cursor:pointer;
    transition:.3s;
}

.star.active{
    color:#ffc107;
}

.star:hover{
    transform:scale(1.1);
}


.review-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    max-width:700px;
    margin:auto;
}

.review-card h3{
    margin-bottom:25px;
    font-size:28px;
    font-weight:700;
}

.review-input,
.review-textarea{
    width:100%;
    padding:15px 20px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    transition:.3s;
}

.review-input:focus,
.review-textarea:focus{
    border-color:#007bff;
    box-shadow:0 0 10px rgba(0,123,255,.15);
}

.review-textarea{
    min-height:150px;
    resize:none;
}

.review-btn{
    background:#000;
    color:#fff;
    border:none;
    padding:15px 30px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.review-btn:hover{
    transform:translateY(-2px);
}

.loader{
    width:16px;
    height:16px;
    border:2px solid #fff;
    border-top:2px solid transparent;
    border-radius:50%;
    display:inline-block;
    animation:spin .8s linear infinite;
    margin-right:8px;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

.review-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-3px);
}

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

.review-header h5{
    margin:0;
    font-weight:700;
}

.review-header small{
    color:#888;
}

.review-stars{
    color:#ffb400;
    font-size:20px;
}

.product-review-summary{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.star{
    color:#ddd;
}

.star.filled{
    color:#ffb400;
}

.review-star{
    font-size:35px;
    color:#ddd;
    cursor:pointer;
    transition:.3s;
}

.review-star.active{
    color:#ffc107;
}

.review-star:hover{
    transform:scale(1.1);
}
.customer-review-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}
.review-form-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}