/* MCM Reviews - Frontend */
.mcm-reviews {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 40px 0;
}

.mcm-reviews-header {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    padding: 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.mcm-reviews-summary {
    text-align: center;
    min-width: 140px;
    padding-right: 40px;
    border-right: 1px solid #e9ecef;
}

.mcm-average-score {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.mcm-average-stars {
    color: #FFC107;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.mcm-total-reviews {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.mcm-reviews-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
}

.mcm-breakdown-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mcm-breakdown-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    min-width: 28px;
}

.mcm-breakdown-bar {
    flex: 1;
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.mcm-breakdown-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFC107 0%, #FFD54F 100%);
    border-radius: 5px;
    transition: width 0.6s ease;
}

.mcm-breakdown-count {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    min-width: 28px;
    text-align: right;
}

.mcm-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mcm-review-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s ease;
}

.mcm-review-card:hover {
    border-color: #dee2e6;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mcm-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    border-radius: 50% !important;
}
.mcm-review-header img {
    border: 2px #d1d1 solid ;
    border-radius: 50% !important;
}
.mcm-review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mcm-review-meta {
    flex: 1;
}

.mcm-review-author {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.mcm-review-date {
    font-size: 13px;
    color: #6c757d;
}

.mcm-review-stars {
    color: #FFC107;
    font-size: 18px;
    letter-spacing: 2px;
}

.mcm-review-content {
    font-size: 15px;
    line-height: 1.75;
    color: #495057;
}

.mcm-review-content p {
    margin: 0;
}

.mcm-reviews-empty {
    text-align: center;
    padding: 60px 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px dashed #dee2e6;
}

.mcm-reviews-empty svg {
    stroke: #adb5bd;
    margin-bottom: 16px;
}

.mcm-reviews-empty h3 {
    margin: 0 0 8px;
    color: #495057;
    font-size: 18px;
}

.mcm-reviews-empty p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .mcm-reviews-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .mcm-reviews-summary {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .mcm-reviews-breakdown {
        max-width: 100%;
    }
    
    .mcm-review-card {
        padding: 20px;
    }
}