/* =========================
   NEWS BLOCK
   ========================= */

.block-wrap.news-block {
    --news-pad-x: 18px;
    --news-pad-y: 16px;

    background: var(--theme-primary-color);
    color: var(--theme-light);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    overflow: hidden;
    padding: 0;
    /* content regelt eigen padding */
    display: flex;
    flex-direction: column;
}

/* Image (optional) */
.block-wrap.news-block>.block-image {
    position: relative;
    width: 100%;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.block-wrap.news-block>.block-image::before,
.block-wrap.news-block>.block-image::after {
    content: none !important;
}

.block-wrap.news-block>.block-image .block-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

/* Content */
.block-wrap.news-block>.block-content {
    position: relative;
    z-index: 2;
    padding: var(--news-pad-y) var(--news-pad-x) calc(var(--news-pad-y) + 2px);
}

/* Card without image: same style; a bit top-padding for balance */
.block-wrap.news-block>.block-content:only-child {
    padding-top: calc(var(--news-pad-y) + 6px);
}

/* Titels/text stay light */
.block-wrap.news-block .block-title h2 {
    color: var(--theme-light);
}

/* Optionele truncation */
.block-wrap.news-block .block-article .article {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

/* Responsive image-height */
@media (max-width: 992px) {
    .block-wrap.news-block>.block-image {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .block-wrap.news-block>.block-image {
        min-height: 180px;
    }
}

/* --- hard equalizer: no-image == has-image --- */
.block-wrap.news-block.no-image,
.block-wrap.news-block.has-image {
    background: var(--theme-primary-color) !important;
    color: var(--theme-light) !important;
}

.block-wrap.news-block.no-image .block-title h2,
.block-wrap.news-block.has-image .block-title h2 {
    color: var(--theme-light) !important;
}

/* wanneer er géén image is, gewoon normale padding houden */
.block-wrap.news-block.no-image>.block-content {
    padding: var(--news-pad-y) var(--news-pad-x) calc(var(--news-pad-y) + 2px);
}

/* === Center content verticaal (maar tekst blijft links) === */
.block-wrap.news-block:not(:has(.block-image)) .block-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 22px;
    text-align: left;
}

.block-wrap.news-block:not(:has(.block-image)) .block-title,
.block-wrap.news-block:not(:has(.block-image)) .block-article {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.block-wrap.news-block.no-image .block-title+.block-article {
    margin-top: 14px;
    /* pas aan naar smaak */
}


/* =========================
   SHOP / PRODUCT CARD
   ========================= */

.block-wrap.shop-block {
    --shop-pad: 16px;

    background: var(--theme-secondary-text);
    color: var(--theme-dark);
    border-radius: 16px;
    padding: var(--shop-pad);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Content kolom vult hoogte; prijs/knop naar onder */
.block-wrap.shop-block .block-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.block-wrap.shop-block .price-actions {
    margin-top: auto;
    padding-top: 1rem;
}

/* Guards tegen erfenis-legacy (buttons rechts, geen full-width) */
.shop-block .block-actions {
    display: flex !important;
}

.shop-block .pc-actions {
    margin-left: auto !important;
    padding: 0 !important;
}

.shop-block .pc-actions .button.is-icon {
    --btn-h: 38px;
    padding: 0 8px;
    gap: 8px;
}

.shop-block .pc-actions .button.is-icon .icon {
    line-height: 0;
    display: block;
}

.shop-block .pc-actions .button.is-icon .icon svg {
    display: block;
}

/* Iconblok */
.shop-block .pc-image {
    min-height: 90px;
}

.shop-block .pc-image img,
.shop-block .pc-image svg {
    display: block;
    max-height: 70px;
    width: auto;
}

/* Typografie */
.shop-block .block-product-title h3 {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    padding: 0;
    color: var(--theme-input-border-focus);
}

.shop-block .pc-sub,
.product-card .pc-sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 6px;
    /*color: var(--theme-webshop-text);*/
}

@media (max-width: 576px) {
    .shop-block {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================
   PRICE TABLE
   ========================= */

body.page-test-pagina {


    /*.table-wrap.table-prices table {*/
    /*    --table-padding-y: 10px;*/
    /*    --table-padding-x: 15px;*/
    /*    width: 100%;*/
    /*}*/

    /*.table-wrap.table-prices table th,*/
    /*.table-wrap.table-prices table td {*/
    /*    padding: var(--table-padding-y) var(--table-padding-x);*/
    /*    text-align: left;*/
    /*}*/

    /*.table-wrap.table-prices table th:nth-child(n+2),*/
    /*.table-wrap.table-prices table td:nth-child(n+2) {*/
    /*    text-align: right;*/
    /*    padding-right: 20px;*/
    /*    font-variant-numeric: tabular-nums;*/
    /*}*/

    /*.table-wrap.table-prices table td:last-child {*/
    /*    font-weight: 400;*/
    /*}*/

    /*.table-wrap.table-prices table th:first-child,*/
    /*.table-wrap.table-prices table td:first-child {*/
    /*    padding-left: 10px;*/
    /*}*/

    /*.table-wrap.table-prices table thead th {*/
    /*    border-bottom: 2px solid #000;*/
    /*}*/


}





/* =========================
   CART (clean + sticky total) — CONSOLIDATED
   ========================= */

:root {
    --cart-w-lg: 550px;
    --cart-w-md: 560px;
    --cart-pad-x: 22px;
    --cart-pad-y: 22px;
    --divider: 1px solid rgba(0, 0, 0, .08);
    --ok: var(--theme-positive-border);
}




body.page-test-pagina {





    /* Backdrop + state */
    .cart-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(22, 27, 34, .85);
        z-index: 9998;
    }

    body.cart-open {
        overflow: hidden;
    }

    /* Offcanvas */
    .cart-offcanvas {
        position: fixed;
        inset: 0 0 0 auto;
        height: 100vh;
        width: var(--cart-w-lg);
        transform: translateX(100%);
        transition: transform .28s ease;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        background: transparent;
    }

    .cart-offcanvas.is-open {
        transform: translateX(0);
    }

    @media (max-width:1200px) {
        .cart-offcanvas {
            width: var(--cart-w-md);
        }
    }

    @media (max-width:768px) {
        .cart-offcanvas {
            width: 100%;
        }
    }

    /* Surface */
    .cart-surface {
        height: 100vh;
        margin: 0;
        padding: 10px;
        border-radius: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* ===== Header (titel+icoon links, promo rechts, link links) ===== */
    .cart-surface__head {
        position: relative;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
		"title promo"
		"link  promo";
        align-items: center;
        gap: 8px var(--cart-pad-x);
        padding: 16px var(--cart-pad-x);
        padding-right: calc(var(--cart-pad-x) + 36px);
        /* ruimte voor X */
    }

    .cart-head-left {
        display: contents;
    }

    /* children in grid plaatsen */

    .cart-title-row {
        grid-area: title;
        justify-self: start;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .cart-title {
        margin: 0;
        line-height: 1;
    }

    .cart-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .cart-icon .cart-count {
        position: absolute;
        top: -6px;
        right: -8px;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        border-radius: 999px;
        background: var(--theme-featured-darker);
        color: #fff;
        font: 700 12px/20px inherit;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cart-close-link {
        grid-area: link;
        justify-self: start;
        background: none;
        border: 0;
        cursor: pointer;
        color: var(--theme-basic-text);
        text-decoration: underline;
        padding: 2px 0;
        border-radius: 8px;
    }

    .cart-close-link:hover {
        text-decoration: none;
    }

    .cart-promo {
        grid-area: promo;
        justify-self: end;
        background: var(--ok);
        color: #fff;
        padding: .55rem .9rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Close-knop rechtsboven */
    .cart-close-btn {
        position: absolute;
        top: 1px;
        right: 0;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 6px;
        color: #111;
        opacity: .7;
        transition: opacity .2s, transform .2s;
        z-index: 10;
    }

    .cart-close-btn:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .cart-close-btn svg {
        width: 22px;
        height: 22px;
        display: block;
    }

    /* ===== Body (scroll) ===== */
    .cart-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 8px var(--cart-pad-x) var(--cart-pad-y);
        flex: 1 1 auto;
        overflow: auto;
    }

    .offcanvas-body>ul,
    .offcanvas-body>dl {
        margin: 0;
        padding: 0;
    }

    .offcanvas-body>dl {
        font-weight: 300;
        font-size: 15px;
    }

    /* Info-rijen uitlijning */
    .cart-offcanvas dl .col-6 {
        display: flex;
        align-items: center;
    }

    .cart-offcanvas dl dd.col-6 {
        justify-content: flex-end;
        text-align: right;
        line-height: 1.2;
    }

    /* Items */
    .cart-items {
        padding: 14px;
    }

    .cart-row {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .cart-row+.cart-row {
        margin-top: 10px;
        padding-top: 24px;
        border-top: var(--divider);
    }

    .cart-item-title {
        font-weight: 500;
        color: #172029;
    }




    /* Quantity */
    .cart-qty {
        display: inline-flex;
        align-items: center;
        height: 34px;
        border: 1px solid rgba(0, 0, 0, .15);
        border-radius: 8px;
        background: #fff;
        overflow: hidden;
    }

    .cart-qty .qty-btn {
        width: 34px;
        height: 34px;
        background: none;
        border: 0;
        font-size: 20px;
        font-weight: 500;
        color: #111;
        cursor: pointer;
        transition: background .15s;
    }

    .cart-qty .qty-btn:hover {
        background: rgba(0, 0, 0, .05);
    }

    .cart-qty .qty-input {
        width: 46px;
        text-align: center;
        border: 0;
        font-size: 15px;
        outline: none;
        -moz-appearance: textfield;
    }

    .cart-qty .qty-input::-webkit-outer-spin-button,
    .cart-qty .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Price + remove (right col) */
    .cart-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        min-width: 140px;
    }

    .cart-item-price {
        font-weight: 700;
        color: #172029;
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .btn-remove {
        background: none;
        border: 0;
        cursor: pointer;
        color: #c0c4c9;
        font-size: 18px;
        transition: color .15s;
        line-height: 1;
    }

    .btn-remove:hover {
        color: #444;
    }


    /* Badges/helpers */
    .badge.ok {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: none;
        color: var(--ok);
        font-weight: 600;
        font-size: 13px;
        padding: 0;
    }

    .badge.ok::before {
        content: "✓";
        color: var(--ok);
        font-weight: 700;
        font-size: 14px;
        line-height: 1;
        transform: translateY(1px);
        display: inline-block;
    }

    .ok-text {
        color: var(--ok);
        font-weight: 800;
    }

    .cart-total .link {
        color: var(--ok);
    }

    .plate {
        display: inline-block;
        margin-left: .25rem;
        padding: .35rem .6rem;
        border: 2px solid #111;
        border-radius: .5rem;
        font-weight: 800;
        letter-spacing: .08em;
        font-family: ui-monospace, Menlo, monospace;
    }

    /* Shipping logos */
    .cart-shipping-logos {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        margin-left: auto;
    }

    .cart-shipping-logos img {
        width: 38px;
        height: auto;
        display: block;
        background: #fff;
        border-radius: 6px;
        padding: 4px 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
        transition: transform .2s, box-shadow .2s;
    }

    .cart-shipping-logos img:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .12);
    }

    /* ===== Footer / totals (sticky onder) ===== */
    .cart-total {
        position: sticky;
        bottom: 0;
        z-index: 5;
        background: #fff;
        border-top: var(--divider);
        padding: 18px var(--cart-pad-x);
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        display: flex;
        flex-direction: column;
        gap: 14px;
        text-align: left;
        align-items: center;
        margin-top: auto;
    }

    .cart-total>.d-flex {
        justify-content: flex-start;
        align-items: baseline;
        gap: 14px;
        white-space: nowrap;
    }

    .cart-total .small {
        margin-top: 4px;
    }

    .cart-total .muted {
        color: var(--theme-basic-text);
    }

    .cart-total .cart-cta {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 12px;
        line-height: 1.2;
        font-size: 17px;
        font-weight: 300;
    }

    .cart-total .cart-cta svg {
        inline-size: 20px;
        block-size: 20px;
        transform: translateY(.5px);
    }

    .cart-total .partner-logos-mini {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }





    /* ===== Mobile tweaks ===== */
    @media (max-width:576px) {
        .cart-surface__head {
            grid-template-columns: 1fr;
            grid-template-areas: "title""promo""link";
            gap: 10px;
            padding-right: var(--cart-pad-x);
        }

        .cart-promo {
            justify-self: start;
        }

        /* items naar eenvoudige grid */
        .cart-row .row {
            display: grid;
            grid-template-columns: auto 1fr;
            /*column-gap: var(--bs-gutter-x, 12px);*/
            align-items: start;
        }

        .cart-row .row>.col-auto:first-child {
            grid-column: 1;
            grid-row: 1 / span 3;
        }

        .cart-row .row>.col {
            grid-column: 2;
        }

        .cart-row .cart-right {
            grid-column: 2;
            justify-self: start;
            align-items: flex-start;
            width: auto;
            min-width: 0;
            gap: 10px;
            margin-top: 10px;
        }

        .cart-row .cart-right .cart-item-price {
            justify-content: flex-start;
        }
    }



}










.kb-pill { display:block; border-radius:16px; transition:transform .12s ease, box-shadow .12s ease; padding:0 !important; }
.kb-pill__inner{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:16px; padding:22px; }
.kb-pill__icon{ width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background:rgba(16,185,129,.12); color:#10b981; }
.kb-pill__title{ font-size:20px; font-weight:700; line-height:1.2; }
.kb-pill__meta{ font-size:13px; opacity:.7; margin-top:2px; }
.kb-pill__cta{ display:inline-flex; align-items:center; gap:8px; font-weight:600; opacity:.9; }
.kb-pill:hover .kb-pill__arrow{ transform:translateX(2px); }
.kb-pill-row .col-md-4{ margin-bottom:18px; }

/* --- Searchbox container --- */

.kb-searchbox:focus-within {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}


.kb-searchbox input::placeholder {
    color: #999;
}

/* ====== Knowledge: layout ====== */
.kb-layout {
    row-gap: 24px;
}

/* Sidebar links: sticky + scrollbaar binnen viewport */
.kb-sidebar {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    max-height: calc(100vh - 120px);
    overflow: auto;
    padding-right: 8px;
}

/* ====== Tree: basis ====== */
.kb-tree {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.95rem;
    line-height: 1.45;
}

.kb-tree-cat {
    margin-bottom: 14px;
}

.kb-tree-cat__title {
    display: block;
    font-weight: 700;
    color: var(--theme-dark, #111);
    text-decoration: none;
    padding: 6px 0;
    border-radius: 8px;
}

.kb-tree-cat.open .kb-tree-cat__title {
    color: var(--theme-primary-color, #0a58ca);
}

/* Subitems */
.kb-tree-list {
    list-style: none;
    margin: 6px 0 0 0;
    padding: 0;
    border-left: 2px solid rgba(0,0,0,.06);
}

.kb-tree-list li {
    margin: 0;
    padding: 2px 0 2px 10px;
}

.kb-tree-list a {
    display: inline-block;
    text-decoration: none;
    color: var(--theme-dark, #222);
    padding: 6px 8px;
    border-radius: 8px;
}

.kb-tree-list a:hover {
    background: rgba(0,0,0,.04);
}

.kb-tree-list a.active {
    background: var(--theme-primary-color, #0a58ca);
    color: var(--theme-light, #fff);
    font-weight: 600;
}

/* ====== Detail card: top alignment ====== */
.kb-detail {
    margin-top: 0;
}

.breadcrumb-wrapper + .container .kb-layout {
    margin-top: 8px;
}

/* Optioneel: nette scrollbar in sidebar (webkit) */
.kb-sidebar::-webkit-scrollbar {
    width: 8px;
}
.kb-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.15);
    border-radius: 8px;
}
.kb-sidebar::-webkit-scrollbar-track {
    background: transparent;
}


/* ==== HERO ==== */
.kb-hero {
    position: relative;
    padding: 84px 0 130px;
    margin-bottom: 0;
}
.kb-hero__bg {
    position: absolute; inset: 0;
    background: radial-gradient(1200px 480px at 15% 10%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1100px 520px at 85% 0%, rgba(255,255,255,.25), transparent 55%),
    linear-gradient(180deg, #1cc7a7 0%, #1aa7d8 100%);
    opacity: .85;
    z-index: 0;
    pointer-events: none;
}
.kb-hero__card.card {
    max-width: 600px;
    margin: 0 auto;
    padding: 22px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0,0,0,.12);
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
    z-index: 1;
}

.kb-pill-overlap {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}


.kb-pill.card {
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.06);
    background: #fff;
}

.kb-search__input { height: 20px; font-size: 17px; border-radius: 12px; }
.kb-search__btn   { height: 50px; min-width: 156px; border-radius: 12px; }



@media (max-width: 991px){
    .kb-hero { padding: 56px 0 96px; }
    .kb-pill-overlap { margin-top: -56px; }
}
@media (max-width: 640px){
    .kb-hero { padding: 40px 0 56px; }
    .kb-pill-overlap { margin-top: 16px; }  /* geen overlap mobiel, leest fijner */
    .kb-hero__card.card { padding: 18px; }
    .kb-search__input, .kb-search__btn { height: 52px; }
}

/* Layout van de zoekbalk in de hero */
.kb-search { margin: 0; }
.kb-search__row {
    display: flex;
    align-items: stretch;
    gap: 16px;
}


.kb-search__input-wrap { flex: 1 1 auto; }
.kb-search__input {
    width: 100%;
    height: 40px;
    border-radius: 12px;
    font-size: 17px;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.12);
    padding: 0 16px;
}

/* Knop naast de input */
.kb-search__btn {
    height: 40px;
    min-width: 120px;
    border-radius: 12px;
    padding: 0 24px;
    font-weight: 600;
    background: #4a5568;
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
}



/* Mobiel wat compacter */
@media (max-width: 640px){
    .kb-search__row { gap: 12px; }
    .kb-search__input,
    .kb-search__btn { height: 52px; border-radius: 10px; }
    .kb-search__btn { min-width: 128px; padding: 0 18px; }
}

/* Rechterpaneel – witte kaart */
.kb-catpane {
    background:#fff;
    border-radius:12px;
    padding:20px 22px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.kb-catpane__head h1{
    font-size:22px;
    line-height:1.2;
    margin-bottom:6px;
}

/* Platte lijst met bullets/icons rechts */
.kb-list--flat{
    list-style:none;
    margin:16px 0 0;
    padding:0;
}
.kb-list--flat li{
    margin:0;
    padding:10px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
}
.kb-list--flat li:last-child{ border-bottom:none; }
.kb-list--flat a{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--theme-dark,#1a1a1a);
}
.kb-list--flat a:hover{ color:var(--theme-primary-color,#0a58ca); }
.kb-docicon{
    display:inline-grid;
    place-items:center;
    width:24px; height:24px;
    color:var(--theme-primary-color,#0a58ca);
    opacity:.9;
}

/* Sidebar badges voor aantallen */
.kb-badge{
    margin-left:auto;
    background:var(--theme-primary-color,#0a58ca);
    color:#fff;
    font-size:12px;
    font-weight:700;
    line-height:1;
    padding:6px 8px;
    border-radius:999px;
}
.kb-tree-cat__title{
    display:flex;
    align-items:center;
    gap:10px;
}

/* Subtle actieve indicator links (optioneel) */
.kb-tree-cat.open .kb-tree-cat__title{
    color:var(--theme-primary-color,#0a58ca);
    background:rgba(10,88,202,.06);
    border-radius:8px;
    padding:6px 8px;
}
.kb-list--flat a { color: var(--theme-dark, #111) !important; }


/* ===== KB sidebar: strip ALL framework bullets/bubbles ===== */

/* 1) Zet alle mogelijke pseudo-bullets in de KB-tree uit */
.kb-tree li::before,
.kb-tree a::before,
.kb-tree .item::before,
.kb-tree .list .item::before,
.kb-tree .ui.list > .item::before,
.kb-tree .ui.list .list > .item::before {
    content: none !important;
    display: none !important;
}

/* 2) Zorg dat niets een “bubble” achtergrond tekent */
.kb-tree li::before,
.kb-tree a::before {
    background: none !important;
    box-shadow: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* 3) (optioneel) als je héél zeker wilt zijn, brute-force reset: */
.kb-tree *::before {
    content: none !important;
    background: none !important;
    display: none !important;
}

/* Laat je eigen look overeind */
.kb-tree-list { border-left: 2px solid rgba(0,0,0,.06); }
.kb-tree-list li { padding: 2px 0 2px 10px; }
.kb-tree-list a  { display:inline-block; padding:6px 8px; border-radius:8px; }

/* Breadcrumb in kaart */
.kb-breadcrumb{
    padding: 10px 16px 0 16px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    margin-bottom: 8px;
}
.kb-breadcrumb .breadcrumb{ margin-bottom: 10px; }

/* Tags */
.kb-tags{ display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 4px; }
.kb-tag{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(10,88,202,.08);
    color:#0a58ca;
    font-size:12.5px;
    font-weight:600;
}

/* Sidebar: badge staat al, voeg icoon + animatie toe (optioneel) */
.kb-caticon{ display:inline-grid; place-items:center; opacity:.9; }
.kb-tree-cat{ transition: background .18s ease; }
.kb-tree-cat.open .kb-tree-cat__title{
    transform: translateX(0); transition: transform .18s ease;
}
.kb-tree-cat .kb-tree-list a{ transition: color .12s ease, background .12s ease; }

/* ===== Search Overlay ===== */
.kb-so[hidden]{ display:none !important; }
.kb-so{ position:fixed; inset:0; z-index:9999; }
.kb-so__backdrop{
    position:absolute; inset:0; background:rgba(22,27,34,.55);
    backdrop-filter: blur(2px);
}
.kb-so__panel{
    position:absolute; left:50%; top:7vh; transform:translateX(-50%);
    width:min(980px, 92vw);
    background:#fff; border-radius:14px;
    box-shadow:0 20px 80px rgba(0,0,0,.25);
    overflow:hidden;
}
.kb-so__head{
    display:flex; align-items:center; gap:14px;
    padding:14px 16px; border-bottom:1px solid rgba(0,0,0,.06);
}
.kb-so__search{
    display:flex; align-items:center; gap:10px;
    flex:1 1 auto; background:#f7f8fa; border:1px solid rgba(0,0,0,.08);
    border-radius:10px; padding:10px 12px;
}
.kb-so__search input{
    width:100%; border:0; outline:0; background:transparent; font-size:16px;
}
.kb-so__head-actions{ display:flex; align-items:center; gap:12px; }
.kb-so__esc{
    font-size:12px; font-weight:700; color:#334; border:1px solid rgba(0,0,0,.12);
    padding:6px 8px; border-radius:6px; opacity:.7;
}
.kb-so__cat-filter select{
    appearance:none; border:1px solid rgba(0,0,0,.12); border-radius:8px;
    padding:8px 10px; background:#fff; font-size:14px;
}
.kb-so__tabs{
    display:flex; gap:12px; padding:8px 16px; border-bottom:1px solid rgba(0,0,0,.06);
}
.kb-so__tabs button{
    background:transparent; border:0; padding:10px 6px; font-weight:600; opacity:.7; cursor:pointer;
}
.kb-so__tabs button.active{ color:#0a58ca; opacity:1; border-bottom:2px solid #0a58ca; }

.kb-so__body{ max-height:70vh; overflow:auto; }
.kb-so__empty{ padding:28px 22px; color:#667; }

.kb-so__item{
    display:block; padding:14px 18px; border-bottom:1px solid rgba(0,0,0,.05); text-decoration:none; color:#111;
}
.kb-so__item:hover{ background:#f7faff; }
.kb-so__item-title{ font-weight:700; margin:0 0 4px 0; }
.kb-so__item-sub{ font-size:13px; color:#667; display:flex; align-items:center; gap:8px; }
.kb-so__item-sub svg{ opacity:.7; }
