/* Beoordeel Pro – Frontend Stylesheet */
:root {
    --bp-primary: #7F77DD;
    --bp-primary-light: #EEEDFE;
    --bp-star-filled: #F5A623;
    --bp-star-empty: #D1D5DB;
    --bp-text: #1A1A2E;
    --bp-text-muted: #6B7280;
    --bp-border: #E5E7EB;
    --bp-bg: #F9FAFB;
    --bp-white: #FFFFFF;
    --bp-verified: #059669;
    --bp-radius: 10px;
    --bp-radius-sm: 6px;
    --bp-shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --bp-shadow-md: 0 4px 12px rgba(0,0,0,.1);
    --bp-transition: 0.18s ease;
}

/* ── Wrapper ── */
.bp-reviews-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bp-text);
    margin: 2rem 0;
}
.bp-reviews-wrap *,
.bp-reviews-wrap *::before,
.bp-reviews-wrap *::after { box-sizing: border-box; }

/* ── Rating Summary ── */
.bp-rating-summary {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.bp-rating-summary__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 100px;
}
.bp-score-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bp-primary);
}
.bp-score-total {
    font-size: 13px;
    color: var(--bp-text-muted);
}

/* ── Stars ── */
.bp-stars, .bp-score-stars { display: inline-flex; gap: 2px; }
.bp-star { font-size: 20px; line-height: 1; }
.bp-star--filled { color: var(--bp-star-filled); }
.bp-star--half   { color: var(--bp-star-filled); opacity: .5; }
.bp-star--empty  { color: var(--bp-star-empty); }

.bp-loop-rating { display: flex; align-items: center; gap: 4px; margin: 4px 0; }
.bp-stars-small .bp-star { font-size: 14px; }
.bp-loop-count { font-size: 13px; color: var(--bp-text-muted); }

/* ── Rating Breakdown ── */
.bp-rating-breakdown { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 6px; }
.bp-breakdown-row { display: flex; align-items: center; gap: 8px; }
.bp-breakdown-label { font-size: 13px; color: var(--bp-text-muted); min-width: 30px; }
.bp-breakdown-bar {
    flex: 1; height: 8px;
    background: var(--bp-border);
    border-radius: 4px; overflow: hidden;
}
.bp-breakdown-fill {
    display: block; height: 100%;
    background: var(--bp-star-filled);
    border-radius: 4px;
    transition: width 0.6s ease;
}
.bp-breakdown-count { font-size: 13px; color: var(--bp-text-muted); min-width: 24px; text-align: right; }

/* ── Toolbar ── */
.bp-reviews-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.bp-reviews-toolbar__count { font-size: 14px; color: var(--bp-text-muted); }
.bp-sort {
    padding: 6px 10px;
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    font-size: 14px;
    background: var(--bp-white);
    cursor: pointer;
    color: var(--bp-text);
}

/* ── Review Card ── */
.bp-review {
    background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--bp-shadow);
    transition: box-shadow var(--bp-transition);
}
.bp-review:hover { box-shadow: var(--bp-shadow-md); }

.bp-review__header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}
.bp-review__avatar img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bp-primary-light);
}
.bp-review__meta { display: flex; flex-direction: column; gap: 3px; }
.bp-review__author { font-weight: 600; font-size: 15px; }
.bp-review__date { font-size: 12px; color: var(--bp-text-muted); }

.bp-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    width: fit-content;
}
.bp-badge--verified { background: #D1FAE5; color: var(--bp-verified); }

.bp-review__title { font-size: 16px; font-weight: 600; margin: 0 0 0.5rem; }
.bp-review__content { color: var(--bp-text); margin-bottom: 1rem; }
.bp-review__content p { margin: 0 0 0.5em; }

/* ── Media: Images ── */
.bp-review__images {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 1rem;
}
.bp-review__image-link {
    display: block; border-radius: var(--bp-radius-sm);
    overflow: hidden; width: 90px; height: 90px;
    border: 1px solid var(--bp-border);
    transition: transform var(--bp-transition);
}
.bp-review__image-link:hover { transform: scale(1.04); }
.bp-review__image {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Media: Video ── */
.bp-review__video { margin-bottom: 1rem; }
.bp-video-player {
    width: 100%; height: 100%;
    display: block;
    border-radius: var(--bp-radius-sm);
    background: #000;
    object-fit: cover;
}

/* ══════════════════════════════════════════════
   MEDIA STRIP — horizontale scrollrij voor video's en social embeds
══════════════════════════════════════════════ */
.bp-review__media-strip {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 8px;
    margin-bottom: 1rem;
    /* Smooth momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--bp-border) transparent;
}
.bp-review__media-strip::-webkit-scrollbar {
    height: 4px;
}
.bp-review__media-strip::-webkit-scrollbar-track {
    background: transparent;
}
.bp-review__media-strip::-webkit-scrollbar-thumb {
    background: var(--bp-border);
    border-radius: 2px;
}

/* Every item in the strip snaps into place */
.bp-media-strip__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
    position: relative;
}

/* Uploaded video: phone portrait dimensions */
.bp-media-strip__item--video {
    width: 200px;
    height: 355px;   /* 9:16 */
    background: #000;
}
.bp-media-strip__item--video .bp-video-player {
    width: 200px;
    height: 355px;
}

/* TikTok: portrait 9:16 */
.bp-media-strip__item--tiktok {
    width: 200px;
    height: 355px;
}
.bp-media-strip__item--tiktok .bp-social-embed,
.bp-media-strip__item--tiktok .bp-social-embed__placeholder,
.bp-media-strip__item--tiktok .bp-social-embed__iframe {
    width: 200px !important;
    height: 355px !important;
    max-width: none !important;
    aspect-ratio: unset !important;
}

/* Instagram Reels: portrait 9:16 */
.bp-media-strip__item--instagram {
    width: 200px;
    height: 355px;
}
.bp-media-strip__item--instagram .bp-social-embed,
.bp-media-strip__item--instagram .bp-social-embed__placeholder,
.bp-media-strip__item--instagram .bp-social-embed__iframe {
    width: 200px !important;
    height: 355px !important;
    max-width: none !important;
    aspect-ratio: unset !important;
}

/* YouTube: landscape 16:9 */
.bp-media-strip__item--youtube {
    width: 296px;
    height: 167px;
}
.bp-media-strip__item--youtube .bp-social-embed,
.bp-media-strip__item--youtube .bp-social-embed__placeholder,
.bp-media-strip__item--youtube .bp-social-embed__iframe {
    width: 296px !important;
    height: 167px !important;
    max-width: none !important;
    aspect-ratio: unset !important;
}

/* Social embed resets inside the strip */
.bp-media-strip__item .bp-social-embed { margin: 0; }
.bp-media-strip__item .bp-social-embed__placeholder {
    border-radius: 0;
}

/* ── Social embed (standalone, outside strip) ── */
.bp-social-embed { margin-bottom: 1rem; }
.bp-social-embed__placeholder {
    position: relative;
    background: #111;
    border-radius: var(--bp-radius-sm);
    overflow: hidden;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    /* default portrait for reels/tiktok */
    width: 220px;
    height: 390px;
}
/* YouTube standalone = landscape */
.bp-social-embed[data-platform="youtube"] .bp-social-embed__placeholder {
    width: 100%; max-width: 480px;
    height: auto; aspect-ratio: 16/9;
}
.bp-social-embed__thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: .75;
}
.bp-social-embed__play {
    position: relative; z-index: 2;
    background: transparent; border: none; cursor: pointer; padding: 0;
    transition: transform var(--bp-transition);
}
.bp-social-embed__play:hover { transform: scale(1.1); }
.bp-social-embed__label {
    position: absolute; bottom: 10px; left: 12px;
    color: #fff; font-size: 12px; font-weight: 700;
    z-index: 2; text-shadow: 0 1px 4px rgba(0,0,0,.8);
    letter-spacing: .03em;
}
.bp-social-embed__icon {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%;
    font-size: 13px; font-weight: 900; color: #fff;
}
.bp-social-embed__icon--tiktok    { background: #010101; }
.bp-social-embed__icon--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.bp-social-embed__icon--youtube   { background: #FF0000; }
.bp-social-embed__iframe {
    width: 100%; height: 100%; border: none; display: block;
}

/* ── Helpful votes ── */
.bp-review__footer {
    display: flex; align-items: center; gap: 8px;
    padding-top: 0.75rem;
    border-top: 1px solid var(--bp-border);
    margin-top: 1rem;
}
.bp-review__helpful-label { font-size: 13px; color: var(--bp-text-muted); margin-right: 4px; }
.bp-vote-btn {
    display: inline-flex; align-items: center; gap: 4px;
    background: transparent;
    border: 1px solid var(--bp-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--bp-transition), border-color var(--bp-transition);
    color: var(--bp-text);
}
.bp-vote-btn:hover { background: var(--bp-bg); border-color: var(--bp-primary); }
.bp-vote-btn.voted { background: var(--bp-primary-light); border-color: var(--bp-primary); color: var(--bp-primary); }

/* ── Load more ── */
.bp-load-more-wrap { text-align: center; margin: 1.5rem 0; }
.bp-load-more {
    background: transparent;
    border: 2px solid var(--bp-primary);
    color: var(--bp-primary);
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: background var(--bp-transition), color var(--bp-transition);
}
.bp-load-more:hover { background: var(--bp-primary); color: #fff; }
.bp-load-more:disabled { opacity: .5; cursor: not-allowed; }

.bp-no-reviews { text-align: center; color: var(--bp-text-muted); padding: 2rem; }

/* ── Write Review Section ── */
.bp-write-review {
    margin-top: 2.5rem;
    border-top: 2px solid var(--bp-border);
    padding-top: 2rem;
}
.bp-write-review h3 { font-size: 20px; margin: 0 0 1.5rem; }

/* ── Form ── */
.bp-review-form { max-width: 680px; }
.bp-form-field { margin-bottom: 1.25rem; }
.bp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .bp-form-row { grid-template-columns: 1fr; } }

.bp-form-label {
    display: block;
    font-size: 14px; font-weight: 600;
    margin-bottom: 6px;
    color: var(--bp-text);
}
.bp-required { color: #E53E3E; margin-left: 2px; }

.bp-input, .bp-textarea, .bp-sort {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--bp-border);
    border-radius: var(--bp-radius-sm);
    font-size: 15px; font-family: inherit;
    color: var(--bp-text);
    background: var(--bp-white);
    transition: border-color var(--bp-transition), box-shadow var(--bp-transition);
    outline: none;
}
.bp-input:focus, .bp-textarea:focus {
    border-color: var(--bp-primary);
    box-shadow: 0 0 0 3px rgba(127,119,221,.15);
}
.bp-textarea { resize: vertical; min-height: 120px; }

/* ── Star picker ── */
.bp-star-picker {
    display: flex; flex-direction: row-reverse; justify-content: flex-end;
    gap: 4px; margin-top: 4px;
}
.bp-star-picker input[type="radio"] { display: none; }
.bp-star-picker label {
    font-size: 32px;
    color: var(--bp-star-empty);
    cursor: pointer;
    transition: color 0.1s, transform 0.1s;
    line-height: 1;
}
.bp-star-picker label:hover,
.bp-star-picker label:hover ~ label,
.bp-star-picker input:checked ~ label {
    color: var(--bp-star-filled);
}
.bp-star-picker label:hover { transform: scale(1.15); }

/* ── File upload areas ── */
.bp-file-input { display: none; }
.bp-media-upload {
    border: 2px dashed var(--bp-border);
    border-radius: var(--bp-radius);
    transition: border-color var(--bp-transition), background var(--bp-transition);
}
.bp-media-upload.drag-over {
    border-color: var(--bp-primary);
    background: var(--bp-primary-light);
}
.bp-media-upload__trigger {
    display: flex; flex-direction: column; align-items: center;
    padding: 1.5rem 1rem; cursor: pointer; text-align: center;
    gap: 6px;
}
.bp-media-upload__trigger:hover { background: var(--bp-bg); border-radius: var(--bp-radius); }
.bp-media-upload__icon { font-size: 28px; line-height: 1; }
.bp-media-upload__text { font-size: 14px; font-weight: 600; color: var(--bp-primary); }
.bp-media-upload__hint { font-size: 12px; color: var(--bp-text-muted); }

/* ── Image previews ── */
.bp-image-previews {
    display: flex; flex-wrap: wrap; gap: 8px;
    padding: 0 1rem 1rem;
}
.bp-preview-item {
    position: relative; width: 80px; height: 80px;
    border-radius: var(--bp-radius-sm); overflow: hidden;
    border: 1px solid var(--bp-border);
}
.bp-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp-preview-remove {
    position: absolute; top: 2px; right: 2px;
    background: rgba(0,0,0,.65); color: #fff;
    border: none; border-radius: 50%;
    width: 20px; height: 20px; font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; line-height: 1;
}

/* ── Video preview ── */
.bp-video-preview { padding: 0 1rem 1rem; }
.bp-video-preview video {
    width: 100%; max-width: 300px; max-height: 200px;
    border-radius: var(--bp-radius-sm);
}

/* ── Social input ── */
.bp-social-input-wrap { position: relative; }
.bp-social-input-wrap .bp-input { padding-right: 110px; }
.bp-social-platforms {
    position: absolute; right: 10px; top: 50%;
    transform: translateY(-50%);
    display: flex; gap: 4px;
}
.bp-platform-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 4px;
    font-size: 9px; font-weight: 800; color: #fff;
}
.bp-platform-icon--tiktok    { background: #000; }
.bp-platform-icon--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bp-platform-icon--youtube   { background: #FF0000; }

.bp-social-preview { padding: 0 0 0.5rem; }

/* ── Submit button ── */
.bp-form-submit { margin-top: 1.5rem; }
.bp-submit-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bp-primary);
    color: #fff;
    border: none; border-radius: 25px;
    padding: 12px 32px;
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    transition: opacity var(--bp-transition), transform var(--bp-transition);
}
.bp-submit-btn:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.bp-submit-btn:active { transform: translateY(0); }
.bp-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.bp-submit-btn__spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: bp-spin 0.7s linear infinite;
}
.bp-submit-btn.loading .bp-submit-btn__spinner { display: block; }
.bp-submit-btn.loading .bp-submit-btn__text { opacity: .7; }

@keyframes bp-spin { to { transform: rotate(360deg); } }

.bp-form-privacy { font-size: 12px; color: var(--bp-text-muted); margin-top: 8px; }

/* ── Messages ── */
.bp-form-messages { margin-top: 1rem; }
.bp-message {
    padding: 12px 16px;
    border-radius: var(--bp-radius-sm);
    font-size: 14px;
    animation: bp-fade-in 0.3s ease;
}
.bp-message--success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.bp-message--error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }

@keyframes bp-fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Honeypot ── */
.bp-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── Tab badge ── */
.bp-tab-count { font-size: 12px; color: var(--bp-text-muted); }

/* ── WooCommerce tab ── */
.woocommerce-tabs .bp-reviews-wrap { margin: 0; }

/* ── Site header ── */
.bp-site-header { margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════
   MIJN BEOORDELING BOX (bewerkmodus)
══════════════════════════════════════════════ */
.bp-my-review {
    background: var(--bp-primary-light);
    border: 1.5px solid var(--bp-primary);
    border-radius: var(--bp-radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.bp-my-review__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.75rem;
}
.bp-my-review__label {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700;
    color: var(--bp-primary);
    text-transform: uppercase; letter-spacing: .04em;
}
.bp-edit-toggle-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--bp-primary); color: #fff;
    border: none; border-radius: 20px;
    padding: 5px 14px; font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: opacity var(--bp-transition);
}
.bp-edit-toggle-btn:hover { opacity: .85; }

.bp-my-review__summary { margin-bottom: 0.5rem; }
.bp-my-review__stars { margin-bottom: 4px; }
.bp-my-review__title { display: block; font-size: 15px; margin-bottom: 4px; }
.bp-my-review__content { font-size: 14px; color: var(--bp-text-muted); margin: 0 0 8px; }

.bp-my-review__media-badges {
    display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px;
}
.bp-media-badge {
    font-size: 12px; background: var(--bp-white);
    border: 1px solid var(--bp-border);
    border-radius: 12px; padding: 2px 10px;
    color: var(--bp-text-muted);
}

/* Edit form wrap slides open */
.bp-edit-form-wrap {
    margin-top: 1.25rem;
    border-top: 1px solid rgba(127,119,221,.25);
    padding-top: 1.25rem;
    animation: bp-fade-in .25s ease;
}

/* Cancel button */
.bp-cancel-edit-btn {
    background: transparent;
    border: 1.5px solid var(--bp-border);
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px; color: var(--bp-text-muted);
    cursor: pointer;
    transition: border-color var(--bp-transition), color var(--bp-transition);
}
.bp-cancel-edit-btn:hover { border-color: #E53E3E; color: #E53E3E; }

/* ══════════════════════════════════════════════
   REVIEWS ROW — horizontale scrollrij, passend bij website stijl
══════════════════════════════════════════════ */
.bp-reviews-row-wrap {
    margin: 2rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Scrollbare rij */
.bp-reviews-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 2px 16px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* verberg scrollbar — swipe werkt al */
}
.bp-reviews-row::-webkit-scrollbar { display: none; }

/* Kaartje */
.bp-row-card {
    flex: 0 0 230px;
    scroll-snap-align: start;
    background: #fff;
    border: 1.5px solid #EDD8D8;
    border-radius: 20px;
    padding: 1.25rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(74,53,53,.06);
}
.bp-row-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74,53,53,.12);
}

/* Aanhalingsteken decoratie */
.bp-row-card::before {
    content: '\201C';
    position: absolute;
    top: 10px; right: 16px;
    font-size: 52px;
    line-height: 1;
    color: #EDD8D8;
    font-family: Georgia, serif;
    pointer-events: none;
}

/* Avatar + naam + sterren */
.bp-row-card__top {
    display: flex;
    gap: 10px;
    align-items: center;
}
.bp-row-card__avatar img {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}
.bp-row-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.bp-row-card__name {
    font-size: 13px; font-weight: 700;
    color: #4A3535;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 140px;
}
.bp-row-card__stars { line-height: 1; }
.bp-row-card__stars .bp-star { font-size: 13px; }
.bp-row-card__stars .bp-star--filled { color: #4A3535; }
.bp-row-card__stars .bp-star--half   { color: #4A3535; opacity: .5; }
.bp-row-card__stars .bp-star--empty  { color: #D1C4C4; }

/* Verified badge */
.bp-row-card__verified {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 10px; font-weight: 600;
    color: #4A3535;
    background: #F5EDED;
    border-radius: 8px;
    padding: 1px 7px;
    width: fit-content;
    margin-top: 1px;
}

/* Titel */
.bp-row-card__title {
    font-size: 13px; font-weight: 700;
    color: #4A3535;
    margin: 0;
    line-height: 1.3;
}

/* Review tekst */
.bp-row-card__content {
    font-size: 13px;
    line-height: 1.6;
    color: #7A6060;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Datum */
.bp-row-card__date {
    font-size: 11px;
    color: #B8A0A0;
    margin-top: 4px;
    letter-spacing: .01em;
}

/* Samenvattingsbalk onder de rij */
.bp-reviews-row-summary {
    text-align: center;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.bp-reviews-row-summary__stars {
    display: flex;
    gap: 3px;
    justify-content: center;
}
.bp-reviews-row-summary__stars .bp-star { font-size: 18px; }
.bp-reviews-row-summary__stars .bp-star--filled { color: #4A3535; }
.bp-reviews-row-summary__stars .bp-star--half   { color: #4A3535; opacity: .5; }
.bp-reviews-row-summary__stars .bp-star--empty  { color: #D1C4C4; }
.bp-reviews-row-summary__text {
    font-size: 13px;
    color: #9CA3AF;
    letter-spacing: .01em;
}
.bp-reviews-row-summary__score {
    font-size: 13px;
    font-weight: 700;
    color: #4A3535;
}

/* ══════════════════════════════════════════════
   RATING BADGE — inline sterren + score
══════════════════════════════════════════════ */
.bp-rating-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.bp-rating-badge__score {
    font-size: 16px; font-weight: 700;
    color: var(--bp-primary, #7F77DD);
}
.bp-rating-badge__stars .bp-star { font-size: 16px; }
.bp-rating-badge__count {
    font-size: 13px; color: #6B7280;
}

/* ══════════════════════════════════════════════
   PRODUCT REVIEWS — onder beschrijving (geen tab)
══════════════════════════════════════════════ */
.bp-product-reviews-below {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    clear: both;
}
