.summary-section {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding-top: 60px;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.score-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.big-star-icon {
    width: 32px;
    height: 32px;
    fill: #C19A6B;
}

.big-score {
    font-size: 32px;
    font-weight: 400;
    color: #333;
}

.total-count {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.row-stars {
    display: flex;
    gap: 2px;
    width: 80px;
    justify-content: flex-end;
}

.small-star {
    width: 12px;
    height: 12px;
    fill: #C19A6B;
}
.small-star.empty {
    fill: none;
    stroke: #C19A6B;
    stroke-width: 1.5;
}

/* Сама смужка */
.bar-container {
    flex: 1;
    height: 8px;
    background-color: #EAD0B6;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #666;
    border-radius: 4px;
}

.row-count {
    width: 50px;
    text-align: left;
}

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.write-review-btn {
    flex: 1;
    background: transparent;
    border: 1px solid #fff;
    padding: 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.write-review-btn:hover {
    background: rgba(255,255,255,0.5);
}

.filter-btn {
    width: 44px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.5);
}

.filter-icon {
    width: 20px;
    height: 20px;
    fill: #333;
}

@media (max-width: 1024px) {
    .summary-section {
        padding: 60px 20px 0 20px;
    }
    .summary-title {
        font-size: 24px;
    }

    .rating-row {
        display: none;
    }

    .write-review-btn {
        display: none;
    }

    .filter-btn {
        display: none;
    }
}