/* Стили для страницы отзывов */
.reviews-section {
    padding: 60px 0;
    background: #fff;
}
.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}
.rating-summary {
    background: #F7E4DF;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.rating-summary .score {
    font-size: 48px;
    font-weight: bold;
    color: #939D7F;
}
.rating-summary .stars {
    font-size: 24px;
    color: #FBBBB5;
    margin: 10px 0;
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}
.review-item {
    background: #fff;
    border: 1px solid #FBBBB5;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.review-author {
    font-weight: 600;
    color: #939D7F;
    font-size: 18px;
}
.review-date {
    color: #666;
    font-size: 14px;
}
.review-stars {
    color: #FBBBB5;
    margin: 8px 0;
}
.review-text {
    line-height: 1.5;
    color: #333;
    margin-top: 8px;
}
.review-order-link {
    font-size: 14px;
    color: #939D7F;
    margin-top: 10px;
}
.review-order-link a {
    text-decoration: underline;
}
.review-form-container {
    background: #F7E4DF;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}
.review-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #939D7F;
}
.form-rating {
    margin-bottom: 20px;
}
.form-rating label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.star-rating {
    display: flex;
    gap: 10px;
    font-size: 28px;
    cursor: pointer;
}
.star-rating i {
    color: #ddd;
    transition: color 0.2s;
}
.star-rating i.active {
    color: #FBBBB5;
}
.review-form-container .form-group {
    margin-bottom: 20px;
}
.review-form-container input, .review-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}
.review-form-container textarea {
    min-height: 100px;
    resize: vertical;
}
.btn-submit {
    background: #939D7F;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
}
.btn-submit:hover {
    background: #7a8368;
}
@media (max-width: 540px) {
    .reviews-section {
        padding: 30px 0;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .review-form-container {
        padding: 20px;
    }
}