/* Google Reviews - Groen Glans Theme */

:root {
    --gr-primary:       #70952D;
    --gr-primary-hover: #F3901A;
    --gr-bg-section:    #f8f9fa;
    --gr-font-heading:  'Inter', system-ui, sans-serif;
    --gr-card-bg:       #ffffff;
    --gr-text:          #1a1a1a;
    --gr-text-muted:    #6b7280;
    --gr-star:          #F3901A;
    --gr-star-empty:    #d1d5db;
    --gr-border:        #e5e7eb;
}

.gr-sectie-wrapper,
.gr-compact-wrapper {
    padding: 5rem 0;
}

.gr-sectie-wrapper {
    background: var(--gr-bg-section);
}

.gr-compact-wrapper {
    background: var(--gr-card-bg);
}

.gr-sectie-wrapper .container,
.gr-compact-wrapper .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Summary */
.gr-summary {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gr-score {
    font-family: var(--gr-font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gr-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.gr-summary .gr-stars {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.gr-count {
    color: var(--gr-text-muted);
    font-size: 0.95rem;
}

/* Stars */
.gr-star {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

.gr-star--full {
    color: var(--gr-star);
}

.gr-star--empty {
    color: var(--gr-star-empty);
}

.gr-stars {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

/* Grid */
.gr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gr-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Review Card */
.gr-card {
    background: var(--gr-card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.gr-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.gr-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gr-avatar-placeholder {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.gr-meta {
    min-width: 0;
}

.gr-author {
    font-weight: 700;
    color: var(--gr-text);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gr-meta .gr-stars {
    margin-top: 0.15rem;
}

.gr-meta .gr-star {
    width: 1rem;
    height: 1rem;
}

.gr-card-body {
    flex: 1;
}

.gr-text {
    color: var(--gr-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.gr-card-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gr-border);
}

.gr-time {
    font-size: 0.8rem;
    color: var(--gr-text-muted);
}

/* Compact */
.gr-compact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 40rem;
    margin: 0 auto;
}

.gr-compact-item {
    padding: 1rem 1.25rem;
    background: var(--gr-bg-section);
    border-radius: 0.75rem;
}

.gr-compact-stars {
    margin-bottom: 0.5rem;
}

.gr-compact-stars .gr-star {
    width: 1rem;
    height: 1rem;
}

.gr-compact-text {
    color: var(--gr-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.gr-compact-author {
    font-size: 0.8rem;
    color: var(--gr-text-muted);
    font-weight: 600;
}

.gr-powered {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gr-text-muted);
    margin-top: 1.5rem;
    opacity: 0.7;
}
