/* SPS AI Reviews - Frontend Styles */

.sps-ai-reviews-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sps-ai-reviews-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}

.sps-ai-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sps-ai-review-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #f0f0f0;
}

.sps-ai-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sps-ai-review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

/* Biến đổi màu random xíu cho avatar bằng nth-child */
.sps-ai-review-item:nth-child(5n+1) .sps-ai-review-avatar { background: #fdf0d5; color: #d09c31; }
.sps-ai-review-item:nth-child(5n+2) .sps-ai-review-avatar { background: #e3f2fd; color: #1976d2; }
.sps-ai-review-item:nth-child(5n+3) .sps-ai-review-avatar { background: #e8f5e9; color: #388e3c; }
.sps-ai-review-item:nth-child(5n+4) .sps-ai-review-avatar { background: #fce4ec; color: #c2185b; }
.sps-ai-review-item:nth-child(5n+5) .sps-ai-review-avatar { background: #f3e5f5; color: #7b1fa2; }

.sps-ai-review-body {
    flex-grow: 1;
}

.sps-ai-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.sps-ai-review-author {
    font-weight: 600;
    font-size: 14px;
    color: #222;
}

.sps-ai-review-date {
    font-size: 12px;
    color: #999;
}

.sps-ai-review-stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sps-ai-review-stars .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #ff9f00; /* Shopee gold */
}

.sps-ai-rating-num {
    margin-left: 6px;
    color: #ff9f00;
    font-weight: 500;
    font-size: 13px;
}

.sps-ai-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Nếu cần mobile tối ưu thì không cần custom nhiều vì flex đã tự động dãn */
@media (max-width: 600px) {
    .sps-ai-review-avatar {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}
