/* ═══════════════════════════════════════
   GALERIJ LIGHTBOX – NAVIGATIE
═══════════════════════════════════════ */
.cc-popup-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    width: 48px;
    height: 64px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background .18s ease;
    backdrop-filter: blur(4px);
}
.cc-popup-lightbox__nav:hover { background: rgba(255,255,255,.28); }
.cc-popup-lightbox__prev { left: 12px; }
.cc-popup-lightbox__next { right: 12px; }
.cc-popup-lightbox__teller {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    pointer-events: none;
    backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════
   CHECKLIST – EXPORT KNOP
═══════════════════════════════════════ */
.cc-checklist-btn--export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    padding: 10px 16px;
}
.cc-checklist-btn--export svg { flex: 0 0 auto; }

/* Dark mode – grid nav knoppen */
:root.cc-dark .cc-grid-nav__btn {
    background: var(--cc-wit);
    border-color: var(--cc-border);
    color: var(--cc-tekst);
}
:root.cc-dark .cc-grid-nav__btn:hover {
    background: #2c2c2c;
}


/* ═══════════════════════════════════════
   WP ADMIN BAR VERBERGEN OP CC PAGINA'S
═══════════════════════════════════════ */
body.cc-full-page #wpadminbar {
    display: none !important;
}
html body.cc-full-page.admin-bar,
html body.cc-full-page.admin-bar #page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
html body.cc-full-page.admin-bar {
    --wp-admin--admin-bar--height: 0px !important;
}

/* ═══════════════════════════════════════
   GRID KOLOM KLASSEN — winnen altijd
   (na alle andere regels incl. media queries)
═══════════════════════════════════════ */
.cc-kaarten-grid.cc-cols-1 {
    grid-template-columns: 1fr !important;
}
.cc-kaarten-grid.cc-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}
.cc-kaarten-grid.cc-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ═══════════════════════════════════════
   DEEL KNOP — naast hartje op de foto
═══════════════════════════════════════ */
.cc-kaart__share-btn {
    position: absolute !important;
    top: 10px !important;
    left: 52px !important;
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.92) !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    line-height: 0 !important;
    z-index: 3 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
    transition: transform .15s ease, background .15s ease !important;
    backdrop-filter: blur(4px) !important;
    color: #213041 !important;
}
.cc-kaart__share-btn:hover,
.cc-kaart__share-btn:focus-visible {
    transform: scale(1.12) !important;
    background: #fff !important;
    outline: none !important;
}
.cc-kaart__share-btn svg {
    width: 18px !important;
    height: 18px !important;
    color: currentColor !important;
    stroke: currentColor !important;
    flex: 0 0 auto !important;
}
:root.cc-dark .cc-kaart__share-btn {
    background: rgba(36,36,36,.92) !important;
    color: #fff !important;
}



