/* فرم */

.smart-review-form{
border:3px solid #dcdcdc;
padding:25px;
border-radius:14px;
background:#ffffff;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
width:100%;
margin:25px 0;
position:relative;
}

.smart-review-form::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#9dbf8b;
border-top-left-radius:14px;
border-top-right-radius:14px;
}

.smart-review-form label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.smart-review-form input,
.smart-review-form textarea{
width:100%;
padding:10px;
border:1px solid #ccc;
border-radius:6px;
margin-bottom:15px;
}

.smart-review-form textarea{
min-height:120px;
}

/* ستاره ها */

.sr-stars{
font-size:26px;
margin-bottom:15px;
cursor:pointer;
}

.sr-stars span{
color:#ccc;
margin-left:4px;
}

.sr-stars span:hover{
color:#ffc107;
}

/* دکمه */

#sr_submit{
background:#9dbf8b;
color:#fff;
border:none;
padding:12px 22px;
border-radius:6px;
cursor:pointer;
}

#sr_submit:hover{
background:#8eb37a;
}


/* گرید نظرات */

.sr-reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
margin-top:30px;
}

/* کارت نظر */

.sr-review-card{
background:#ffffff;
border:1px solid #e6e6e6;
border-radius:12px;
padding:18px;
box-shadow:0 4px 12px rgba(0,0,0,0.05);
transition:0.3s;
}

.sr-review-card:hover{
transform:translateY(-4px);
box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* هدر نظر */

.sr-review-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.sr-review-name{
font-size:15px;
color:#333;
}

/* ستاره نمایش */

.sr-stars-show{
color:#ffc107;
font-size:18px;
}

/* متن نظر */

.sr-review-text{
font-size:14px;
line-height:1.7;
color:#555;
}

/* میانگین امتیاز */

.sr-average{
margin-top:25px;
font-size:16px;
font-weight:600;
color:#444;
}

.sr-checkbox{
display:flex;
align-items:center;
gap:6px;
margin-bottom:15px;
}

.sr-checkbox input{
width:auto;
margin:0;
}

.sr-checkbox label{
margin:0;
font-weight:normal;
}
#sr_load_more{
display:block;
margin:30px auto;
background:#9dbf8b;
color:#fff;
border:none;
padding:12px 28px;
border-radius:8px;
font-size:14px;
cursor:pointer;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

#sr_load_more:hover{
background:#8eb37a;
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.12);
}

#sr_load_more:active{
transform:translateY(0);
box-shadow:0 3px 8px rgba(0,0,0,0.08);
}
#sr_load_more{
width:100%;
max-width:220px;
}
