.reviews-summary-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

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

.reviews-title {
    font-family: serif;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
}

.reviews-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.rating-overall {
    flex: 1;
    text-align: center;
    border-right: 1px solid #333;
}

.stars-large {
    font-size: 24px;
    background: linear-gradient(119deg, #d0bf95, #a48446);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.rating-number {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.reviews-count {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.verified-icon {
    background: #1abc9c;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-bars {
    flex: 1.5;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.star-label {
    min-width: 80px;
    font-size: 13px;
    color: #d0bf95;
}

.progress-bg {
    flex-grow: 1;
    height: 12px;
    background-color: #242427;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(119deg, #d0bf95, #a48446) !important;
}

.count-label {
    min-width: 30px;
    font-size: 13px;
    color: #888;
    text-align: right;
}

.authenticity-badge {
    flex: 1;
    text-align: center;
    border-left: 1px solid #333;
}

.badge-icon img {
    max-width: 120px;
    height: auto;
}

.badge-score {
    margin-top: 10px;
    font-weight: 900;
    color: #d0bf95;
    font-size: 18px;
}

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

    .reviews-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .reviews-grid {
        flex-direction: column;
        gap: 40px;
    }

    .rating-overall {
        border-right: none;
        width: 100%;
    }

    .rating-bars {
        width: 100%;
        padding: 0 20px;
    }

    .authenticity-badge {
        border-left: none;
        width: 100%;
    }

    .star-label {
        min-width: 60px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .reviews-summary-section {
        padding: 30px 0;
    }

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

    .rating-number {
        font-size: 20px;
    }

    .stars-large {
        font-size: 20px;
    }

    .badge-icon img {
        max-width: 100px;
    }

    .bar-item {
        gap: 10px;
    }

    .progress-bg {
        height: 10px;
    }
}