.gpr-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gpr-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.gpr-header h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #333;
}

.gpr-rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gpr-stars {
    font-size: 20px;
    color: #ffc107;
}

.gpr-rating-score {
    font-size: 16px;
    color: #666;
}

.gpr-total {
    font-size: 14px;
    color: #999;
}

.gpr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gpr-review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.gpr-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.gpr-reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.gpr-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.gpr-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #007cba;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.gpr-reviewer-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.gpr-review-stars {
    font-size: 14px;
    margin-bottom: 5px;
}

.gpr-review-date {
    font-size: 12px;
    color: #999;
}

.gpr-review-content {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.gpr-review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.gpr-review-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gpr-review-image:hover {
    opacity: 0.8;
}

.gpr-review-likes {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.gpr-load-more {
    text-align: center;
    margin-top: 30px;
}

.gpr-load-more-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.gpr-load-more-btn:hover {
    background: #005a87;
}

.gpr-error, .gpr-no-reviews {
    padding: 20px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gpr-reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gpr-rating-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}