.reviews-summary-section {
    padding: 40px 20px 0 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.summary-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-score {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #000;
}

.stars-wrapper {
    display: flex;
    gap: 2px;
    margin: 5px 0;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: #73a0c5;
}

.score-basis {
    font-size: 14px;
    color: #333;
    margin: 5px 0 0 0;
}

/* Right Bars */
.bars-block {
    flex: 0 0 300px;
}

.bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.star-label {
    width: 80px;
    color: #888;
    letter-spacing: 1px;
    font-size: 12px;
}

.progress-track {
    flex-grow: 1;
    height: 14px;
    background-color: #f0f0f0;
    margin: 0 10px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #73a0c5;
}

.count-label {
    width: 40px;
    text-align: right;
    color: #666;
    font-size: 13px;
}

.reviews-tabs-container {
    display: flex;
    margin-top: 20px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #73a0c5;
    cursor: pointer;
    border-bottom: 3px solid #73a0c5;
    margin-bottom: -2px;
}

.tab-border {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
}

@media (max-width: 768px) {
    .reviews-summary-section {
        padding: 40px 16px 0;
    }

    .reviews-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .summary-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .bars-block {
        flex: 1 1 auto;
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .bar-row {
        margin-bottom: 5px;
    }
}