.grw-wrap {
    font-family: "Barlow", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Overzicht --- */
.grw-summary {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.grw-score-left {
    text-align: center;
    min-width: 120px;
}

.grw-big-score {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a1a;
}

.grw-total {
    font-size: 0.875rem;
    color: #555;
    margin-top: 4px;
}

/* Sterren */
.grw-star-wrap {
    display: inline-flex;
    gap: 2px;
}

.grw-star {
    font-size: 16px;
    color: #e0e0e0;
}

.grw-star.full,
.grw-star.half {
    color: #F4B400;
}

/* Progressbalken */
.grw-bars {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.grw-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.grw-bar-label {
    font-size: 0.75rem;
    color: #555;
    width: 10px;
    text-align: right;
}

.grw-bar-track {
    flex: 1;
    background: #e8e8e8;
    border-radius: 4px;
    height: 10px;
    overflow: hidden;
}

.grw-bar-fill {
    background: #F4B400;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Google badge */
.grw-google-badge {
    text-align: center;
    min-width: 140px;
}

.grw-google-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4285F4;
}

.grw-badge-sub {
    font-size: 0.8rem;
    color: #555;
    margin-top: 4px;
}

.grw-badge-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #EA4335;
    text-decoration: none;
}

.grw-badge-link:hover {
    text-decoration: underline;
}

/* --- Carousel --- */
.grw-carousel-wrap {
    position: relative;
}

.grw-carousel {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.grw-card {
    flex: 0 0 calc(33.333% - 11px);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grw-card-stars .grw-star {
    font-size: 14px;
}

.grw-card-text {
    font-size: 0.875rem;
    color: #333;
    flex: 1;
    line-height: 1.5;
}

.grw-card-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.grw-card-author strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
}

.grw-card-author span {
    font-size: 0.75rem;
    color: #777;
}

/* Pijlen */
.grw-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    cursor: pointer;
    color: #333;
    z-index: 2;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    padding: 0;
}

.grw-arrow:hover {
    background: #fff;
    color: #000;
}

.grw-prev { left: 8px; }
.grw-next { right: 8px; }

/* Dots */
.grw-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}

.grw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    padding: 0;
}

.grw-dot.active {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .grw-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .grw-card {
        flex: 0 0 100%;
    }

    .grw-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}
