 :root {
            --kk-bg-main: #06070a;
            --kk-bg-card: #06070a;
            --kk-bg-card-white: #ffffff;
            --kk-bg-soft: #111827;
            --kk-text-main: #fdf4e3;
            --kk-text-black: #0b0f16;
            --kk-text-sub: #e5dfd5;
            --kk-text-muted: #9ca3af;
            --kk-accent-yellow: #fbbf24;
            --kk-accent-green: #bef264;
        }

        body {
            background-color: var(--kk-bg-card-white);
            color: var(--kk-text-main);
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        
        .heading-black {
            color: #111827;
        }
        
        h2{
            font-size: 1.4rem;
        }
        
        /* NAVBAR */
        .kk-navbar {
            background: var(--kk-bg-card-white);
        }
        .kk-navbar-links {
            float: right;
        }
        .kk-brand {
            font-size: 1.3rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--kk-text-black);
        }
        
        .kk-nav-link {
            font-size: .85rem;
            color: var(--kk-text-black);
        }
        .kk-nav-link.active {
            font-weight: 600;
        }

        /* HERO TOP */
        .kk-hero {
            background: var(--kk-bg-card);
            padding:0;
            border-bottom: 1px solid rgba(55,65,81,0.7);
        }
        .kk-hero-row {
            --bs-gutter-x: 0;
            --bs-gutter-y: 0;
        }
        .kk-hero-image {
            background: url('/media/headers/kledingkiezer-winter-1080w.webp') center center / cover no-repeat;
            border-radius: 0;
            min-height: 650px;
        }
        .kk-hero-title {
            font-size: clamp(2.4rem, 3.6vw, 3.1rem);
            font-weight: 700;
            line-height: 1.15;
            color: #fdf4e3;
        }
        .kk-hero-subtitle {
            font-size: .95rem;
            color: var(--kk-text-sub);
            max-width: 32rem;
        }

        .kk-hero-search-wrap {
            margin-top: 1.5rem;
        }
        .kk-hero-search-input {
            background-color: #111827;
            border: 1px solid #1f2937;
            border-radius: 8px 0 0 8px;
            color: #f9fafb;
            padding-inline: 1rem;
            font-size: .9rem;
        }
        .kk-hero-search-input::placeholder {
            color: #6b7280;
        }
        .kk-hero-search-input:focus {
            box-shadow: none;
            border-color: #4b5563;
        }

        .kk-btn-search {
            border-radius: 0 8px 8px 0;
            background-color: var(--kk-accent-yellow);
            border: none;
            font-weight: 600;
            color: #111827;
        }

        .kk-top-link {
            font-size: .8rem;
            color: #d1d5db;
        }
        .kk-top-link:hover {
            color: #f9fafb;
        }

        /* SECTIE: SHOP OP CATEGORIE */
        .kk-section {
            padding: 2.5rem 0 2rem;
            background: #ffffff; /* of een heel licht tintje als je wilt */
        }
     

        /* inhoud wel mooi gecentreerd houden */
        .kk-section-inner {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .kk-section-header small {
            font-size: .85rem;
            color: #9ca3af;
        }
        .kk-section-header h2 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: .25rem 0;
            color: #111827;
        }
    
       /* ===== WHITE SECTION THEME ===== */

    .kk-white-section {
        background: #ffffff;
        color: #0b0f16;
        padding: 3rem 0;
        
    }

    /* Categorie cards */
    .kk-cat-card {
        display: grid;
        place-items: center;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        padding: 1.4rem;
        text-align: center;
        transition: .15s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        background-size: cover;
        background-position: center center;
    }

    .kk-cat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    }

    .kk-cat-photo {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 0.8rem auto;
        background: #f9fafb;
    }

    .kk-cat-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .kk-cat-title {
        font-size: 16px;
        font-size: 4vw;
        font-weight: 700;
        line-height: 1.15;
        color: #fffdf9;
        text-shadow: 1px 1px 4px #000000;
    }

    .kk-cat-sub {
        font-size: .75rem;
        color: #6b7280;
    }


    /* Trending cards (light) */
    .kk-light-product {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        overflow: hidden;
        transition: .15s ease;
    }

    .kk-light-product:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0,0,0,0.1);
    }

    .kk-light-product img {
       
        width: 100%;
        object-fit: cover;
        background: #f3f4f6;
    }

    .kk-light-body {
        padding: 1rem;
    }

    .kk-light-title {
        font-weight: 600;
        margin-bottom: .2rem;
        color: #111827;
    }

    .kk-light-meta {
        font-size: .8rem;
        color: #6b7280;
    }

    .kk-light-price {
        font-size: 1rem;
        font-weight: 700;
        color: #111;
    }
              
    .kk-light-old {
        margin-left: .4rem;
        font-size: .8rem;
        color: #9ca3af;
        text-decoration: line-through;
    }

        footer {
            border-top: 1px solid #111827;
            color: #6b7280;
            font-size: .8rem;
        }
        footer a {
            color: #9ca3af;
        }
        footer a:hover {
            color: #f9fafb;
        }

        @media (max-width: 991.98px) {
            .kk-hero {
                padding-top: 1.8rem;
            }
            .kk-hero-image {
                min-height: 260px;
            }
             
            .kk-navbar-links {
                float: none;
            }
            .kk-cat-title {
              
                font-size: 8vw;
               
            }
        }
        
        
/* Donkere category-balk onder de globale header */
.kk-category-hero {
    background: #050608;
    color: #f9fafb;
    padding: 1.8rem 0 1.6rem;
    border-bottom: 1px solid #111827;
}

.kk-category-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.kk-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.5rem;
    border-radius: 999px;
    border: 1px solid #374151;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: .35rem;
}

.kk-category-hero-title {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 600;
    margin: 0 0 .25rem 0;
}

.kk-category-hero-sub {
    font-size: .85rem;
    color: #9ca3af;
    max-width: 34rem;
    margin: 0;
}

.kk-category-hero-meta {
    font-size: .8rem;
    color: #e5e7eb;
}

.kk-category-count {
    padding: .25rem .6rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.7);
}

/* Witte category body */
.kk-category-section {
    padding-top: 2.4rem;
}

/* Sidebar filters */
.kk-filter-title {
    font-size: .9rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: .35rem;
}

.kk-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.kk-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: .78rem;
    color: #111827;
    background: #ffffff;
    transition: .12s ease;
}

.kk-filter-pill:hover {
    background: #111827;
    color: #f9fafb;
    border-color: #111827;
}

.kk-filter-hint {
    font-size: .78rem;
    color: #9ca3af;
}

/* Sort dropdown */
.kk-sort-select {
    min-width: 180px;
    font-size: .8rem;
}

/* Product cards in category-grid: wat lucht rondom */
.kk-category-product-card {
    height: 100%;
}

.kk-product-arrow {
    color: #9ca3af;
    font-size: .85rem;
}

.kk-category-sidebar {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem 1.25rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

.kk-category-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.kk-category-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kk-category-sidebar-item + .kk-category-sidebar-item {
    margin-top: 0.35rem;
}

.kk-category-sidebar-link {
    display: block;
    font-size: 0.95rem;
    color: #212529;
    text-decoration: none;
    padding: 0.25rem 0;
}

.kk-category-sidebar-link:hover {
    color: #0d6efd;
}

.kk-breadcrumbs {
    font-size: .9rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.kk-breadcrumbs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

.kk-breadcrumbs-list a {
    font-size: 0.95rem;
    line-height: 18px;
    color: #9a9898;
}

.kk-breadcrumbs-item::after {
    content: "|";
    margin: 0 .25rem;
    color: #adb5bd;
}

.kk-breadcrumbs-item:last-child::after {
    content: "";
}

/* 404 content */
.kk-404-layout {
    display: flex;
    justify-content: flex-start;
}

.kk-404-main {
    max-width: 540px;
}

.kk-404-code {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: #6c6d6f;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.kk-404-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #363637;
}

.kk-404-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.kk-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn-primary {
    background: #050608;
    color: #ffffff;
    border: 0px;
}

.btn-primary:hover {
    background: #2e333d;
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .kk-category-hero-inner {
        align-items: flex-start;
    }
}