.pg-google-reviews { 
    margin: 20px 0; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Business Header Styles */
.pg-business-header {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pg-business-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pg-business-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.pg-business-details h3.pg-business-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.pg-rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pg-average-rating {
    font-size: 16px;
    font-weight: bold;
    color: #202124;
}

.pg-stars {
    display: flex;
    gap: 2px;
}

.pg-star {
    font-size: 14px;
    line-height: 1;
}

.pg-star-full { color: #fbbc04; }
.pg-star-half { color: #fbbc04; }
.pg-star-empty { color: #dadce0; }

.pg-review-count {
    font-size: 14px;
    color: #5f6368;
}

.pg-review-actions {
    display: flex;
    gap: 12px;
}

.pg-see-all-btn,
.pg-write-review-btn {
    text-decoration: none;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.pg-see-all-btn:hover,
.pg-write-review-btn:hover {
    text-decoration: underline;
}

.pg-google-logo {
    color: #5f6368;
}

.pg-google-logo svg {
    width: 24px;
    height: 24px;
}

/* Individual Review Styles */
.pg-review { 
    border: 1px solid #e0e0e0; 
    border-radius: 8px; 
    padding: 16px; 
    margin-bottom: 12px;
    background: white;
}

.pg-reviewer { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 12px; 
}

.pg-profile-pic { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    object-fit: cover;
}

.pg-reviewer-name { 
    font-weight: 500;
    font-size: 14px;
    color: #202124;
}

.pg-rating { 
    color: #fbbc04; 
    font-size: 12px;
}

.pg-date { 
    color: #5f6368; 
    font-size: 12px; 
}

.pg-review-text { 
    line-height: 1.5; 
    font-size: 14px;
    color: #3c4043;
}