.product-reviews-summary {
    margin-top: 40px;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    width: 50%;
}

/* Верхняя строка */
.rating-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rating-value {
    font-size: 32px;
    font-weight: 700;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

/* Полоски */
.rating-bars {
    width: 100%;
    margin-bottom: 25px;
}

.rating-row {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    align-items: center;
    gap: 10px;
    margin: 7px 0;
}

.rating-label {
    font-size: 14px;
}

.rating-bar {
    height: 8px;
    background: #f1f1f3;
    border-radius: 8px;
    overflow: hidden;
}

.rating-fill {
    height: 8px;
    background: #000;
    border-radius: 8px;
    display: block;
}

/* Кнопка */
.review-footer {
    text-align: left;
    margin-top: 20px;
}

.review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #aac5e5;
    color: #333;
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.review-button:hover {
    background: #9bb7d7;
}
