.simple-reviews {

    margin-top: 32px;

}

.simple-reviews h2 {

    font-size: 20px;

    font-weight: 700;

    margin-bottom: 15px;

}

.sr-vote-buttons {

    display: flex;

    gap: 12px;

    margin-bottom: 8px;

}

.sr-vote-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    background: #fafafa;

    border: 1px solid #e0e0e0;

    border-radius: 30px;

    padding: 8px 18px;

    cursor: pointer;

    font-size: 15px;

    transition: all 0.15s ease;

}

.sr-vote-btn:hover {

    border-color: #C2185B;

}

.sr-vote-btn.sr-vote-selected {

    background: #fdeaf1;

    border-color: #C2185B;

}

.sr-thumb {

    font-size: 18px;

}

.sr-count {

    font-weight: 700;

    color: #1a1a1a;

}

.sr-comment-form {

    margin: 12px 0 20px 0;

}

.sr-input,

.sr-textarea {

    display: block;

    width: 100%;

    max-width: 400px;

    border: 1px solid #ddd;

    border-radius: 6px;

    padding: 8px 12px;

    margin-bottom: 8px;

    font-size: 14px;

}

.sr-textarea {

    min-height: 70px;

    resize: vertical;

}

.sr-submit-btn {

    background: #C2185B;

    color: #fff;

    border: none;

    border-radius: 6px;

    padding: 8px 20px;

    cursor: pointer;

    font-weight: 600;

}

.sr-submit-btn:hover {

    background: #a3123f;

}

.sr-comment-list {

    list-style: none;

    margin: 0;

    padding: 0;

}

.sr-comment-item {

    display: flex;

    gap: 10px;

    padding: 12px 0;

    border-bottom: 1px solid #f0f0f0;

}

.sr-comment-item:last-child {

    border-bottom: none;

}

.sr-comment-thumb {

    font-size: 18px;

    flex-shrink: 0;

}

.sr-comment-author {

    display: block;

    font-size: 13px;

    font-weight: 600;

    color: #666;

    margin-bottom: 2px;

}

.sr-comment-text {

    font-size: 14px;

    color: #1a1a1a;

    margin: 0;

}

