.reviews-summary-section {
    width: 100%;
    background-color: #fffae6;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    color: #584a40;
    box-sizing: border-box;
}

.reviews-summary-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #584a40;
}

.summary-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #e6ded3;
    border-bottom: 1px solid #e6ded3;
}

.summary-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-right: 40px;
    border-right: 2px solid #e0d8c3;
    flex: 1;
}

.stars-large {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 5px;
}

.rating-base {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.check-icon {
    background: #009958;
    color: white;
    width: 14px;
    height: 14px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.summary-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-row {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #009958;
}

.row-stars {
    width: 80px;
    letter-spacing: 2px;
}

.progress-bar {
    flex-grow: 1;
    height: 12px;
    background-color: #e6e6e6;
    border-radius: 6px;
    margin: 0 15px;
    overflow: hidden;
    max-width: 200px;
}

.progress-fill {
    height: 100%;
    background-color: #009958;
}

.row-count {
    width: 40px;
    text-align: left;
    color: #666;
}

@media (max-width: 600px) {
    .summary-content {
        flex-direction: column;
        gap: 20px;
    }

    .summary-left {
        align-items: center;
        text-align: center;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e0d8c3;
        padding-bottom: 20px;
        width: 100%;
    }

    .summary-right {
        width: 100%;
        max-width: 350px;
    }

    .section-title {
        margin-bottom: 10px;
    }
}