/* Google Reviews Plugin – Stijlen */

.gr-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 700px;
    margin: 0 0 2rem;
}

/* Header met totaalscore */
.gr-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
    padding: 16px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.gr-overall-score {
    font-size: 3rem;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.gr-header-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gr-stars-overall .gr-star--filled {
    font-size: 1.4rem;
    color: #fbbc04;
}

.gr-stars-overall .gr-star--empty {
    font-size: 1.4rem;
    color: #dadce0;
}

.gr-total {
    font-size: 0.85rem;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gr-google-logo {
    height: 16px;
    width: auto;
    vertical-align: middle;
}

/* Individuele reviews */
.gr-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gr-review {
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}

.gr-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gr-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4285f4;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.gr-author-info {
    display: flex;
    flex-direction: column;
}

.gr-author-name {
    font-size: 0.95rem;
    color: #202124;
}

.gr-date {
    font-size: 0.8rem;
    color: #9aa0a6;
}

/* Sterren */
.gr-stars {
    margin-bottom: 6px;
}

.gr-star--filled {
    color: #fbbc04;
    font-size: 1rem;
}

.gr-star--empty {
    color: #dadce0;
    font-size: 1rem;
}

/* Review tekst */
.gr-review-text {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
}

/* Footer link */
.gr-footer {
    margin-top: 1.2rem;
    text-align: center;
}

.gr-all-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #4285f4;
    text-decoration: none;
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 8px 16px;
    transition: background 0.15s;
}

.gr-all-reviews-link:hover {
    background: #f8f9fa;
    text-decoration: none;
}

/* Foutmelding */
.gr-error {
    color: #d93025;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 480px) {
    .gr-overall-score {
        font-size: 2.2rem;
    }
}
