/* ===== ОБЩЕЕ ===== */

.cl-reviews {
    margin-top: 40px;
}

.cl-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cl-reviews-count {
    font-size: 14px;
    color: #888;
}

/* ===== КАРТОЧКА ОТЗЫВА ===== */

.cl-review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.cl-review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cl-review-author {
    font-weight: 600;
}

.cl-review-rating span {
    font-size: 18px;
    color: #ddd;
}

.cl-review-rating span.active {
    color: #f5b301;
}

.cl-review-text {
    margin: 10px 0;
    line-height: 1.6;
}

.cl-review-date {
    font-size: 12px;
    color: #999;
}

/* ===== ФОРМА ===== */

.cl-review-form-block {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 14px;
}

.cl-review-form input,
.cl-review-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.cl-review-form textarea {
    min-height: 120px;
    resize: vertical;
}

.cl-form-row {
    margin-bottom: 20px;
}

/* ===== ЗВЕЗДЫ ===== */

.cl-rating-stars {
    direction: rtl;
    display: inline-flex;
}

.cl-rating-stars input {
    display: none;
}

.cl-rating-stars label {
    font-size: 26px;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.cl-rating-stars input:checked ~ label,
.cl-rating-stars label:hover,
.cl-rating-stars label:hover ~ label {
    color: #f5b301;
}

/* ===== КНОПКА ===== */

.cl-review-submit {
    background: #1f7ae0;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.cl-review-submit:hover {
    background: #155db5;
}