    /* ── Hero (solid oranje, titel in wit) ────────────────── */
    .kw-hero {
        background-color: #f36e22;
        padding: 60px 50px 50px;
        min-height: 220px;
    }
    @media (max-width: 600px) {
        .kw-hero { padding: 40px 20px 36px; min-height: 180px; }
    }
    .hero-back {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        color: #fff;
        text-decoration: none;
        flex-shrink: 0;
        transition: background .15s, transform .15s;
    }
    .hero-back:hover {
        background: rgba(255,255,255,.28);
        color: #fff;
        transform: translateX(-2px);
    }
    .hero-back i { font-size: 22px; }

    /* ── Content ────────────────────────────────────────── */
    .activity-wrap { padding-top: 32px; }

    .activity-card {
        background: var(--bs-card-bg, var(--bs-body-bg));
        border: 1px solid var(--bs-border-color);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 24px;
    }
    .activity-card-body { padding: 28px 32px; }
    @media (max-width: 575.98px) {
        .activity-card-body { padding: 22px 20px; }
    }

    .activity-section-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--bs-body-color);
        margin-bottom: 1rem;
    }

    .activity-rich { color: var(--bs-gray-700); font-size: 16px; line-height: 1.8; }
    .activity-rich > *:first-child { margin-top: 0; }
    .activity-rich > *:last-child  { margin-bottom: 0; }
    .activity-rich img { max-width: 100%; border-radius: 8px; margin: 1.25rem 0; display: block; }
    .activity-rich h2 { font-size: 1.25rem; font-weight: 700; color: var(--bs-body-color); margin-top: 2rem; margin-bottom: .5rem; }
    .activity-rich h3 { font-size: 1.05rem; font-weight: 600; color: var(--bs-body-color); margin-top: 1.5rem; margin-bottom: .4rem; }
    .activity-rich a  { color: #f36e22; }
    .activity-rich p  { margin-bottom: .9em; }

    /* Info-lijst in sidebar */
    .info-list { list-style: none; padding: 0; margin: 0; }
    .info-list li {
        display: flex; gap: 12px; align-items: flex-start;
        padding: 14px 0; border-bottom: 1px solid var(--bs-border-color);
    }
    .info-list li:last-child { border-bottom: 0; }
    .info-list .ki-outline,
    .info-list .ki-duotone { font-size: 18px; color: #f36e22; margin-top: 2px; }
    .info-list .info-label {
        font-size: 11px; font-weight: 700; text-transform: uppercase;
        letter-spacing: .5px; color: var(--bs-secondary-color); margin-bottom: 2px;
    }
    .info-list .info-value { font-size: 15px; font-weight: 600; color: var(--bs-body-color); line-height: 1.4; }
    .info-list .info-sub   { font-size: 13px; color: var(--bs-secondary-color); font-weight: 400; margin-top: 2px; }

    /* Gallery */
    .gallery-main { width: 100%; max-height: 460px; object-fit: cover; display: block; }
    .gallery-thumbs {
        display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto;
        background: var(--bs-tertiary-bg);
    }
    .gallery-thumb {
        width: 80px; height: 60px; flex-shrink: 0; border-radius: 6px;
        object-fit: cover; cursor: pointer; opacity: .55; transition: opacity .15s, border-color .15s;
        border: 2px solid transparent;
    }
    .gallery-thumb:hover { opacity: 1; }
    .gallery-thumb.active { opacity: 1; border-color: #f36e22; }

    /* Sidebar sticky */
    @media (min-width: 992px) {
        .activity-sidebar { position: sticky; top: 90px; }
    }

    /* Countdown — géén gradient, gewoon accent */
    .countdown-box {
        background: var(--bs-card-bg, var(--bs-body-bg));
        border: 1px solid var(--bs-border-color);
        border-radius: 10px;
        padding: 18px 22px;
        margin-bottom: 24px;
    }
    .countdown-label {
        font-size: 11px; font-weight: 700; text-transform: uppercase;
        letter-spacing: .5px; color: var(--bs-secondary-color);
    }
    .countdown-value {
        font-size: 28px; font-weight: 800; color: #f36e22; margin-top: 4px;
    }

    /* Capaciteit progress — platte balk, geen schaduw */
    .capaciteit-meta {
        display: flex; justify-content: space-between;
        font-size: 13px; color: var(--bs-gray-700); margin-bottom: 6px; font-weight: 500;
    }
    .capaciteit-bar { height: 4px; background: var(--bs-border-color); border-radius: 2px; overflow: hidden; }
    .capaciteit-bar-fill { height: 100%; background: #f36e22; border-radius: 2px; }

    /* Related cards */
    .related-card {
        display: block;
        background: var(--bs-card-bg, var(--bs-body-bg));
        border: 1px solid var(--bs-border-color); border-radius: 10px;
        overflow: hidden; text-decoration: none; color: inherit;
        transition: border-color .15s;
    }
    .related-card:hover { border-color: #f36e22; color: inherit; text-decoration: none; }
    .related-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
    .related-card-body { padding: 16px 18px; }
    .related-card-title { font-size: 15px; font-weight: 700; color: var(--bs-body-color); margin-bottom: 6px; line-height: 1.4; }
    .related-card-meta  { font-size: 13px; color: var(--bs-secondary-color); font-weight: 500; }

    /* Map & markers */
    .marker-location {
        background-color: var(--bs-body-bg); border-radius: 50%;
        padding: 10px; width: 45px; height: 45px;
    }
    .map-box {
        border: 1px solid var(--bs-border-color); border-radius: 10px; overflow: hidden;
        position: relative; z-index: 0;
    }
    #map { width: 100%; height: 400px; }
    .map-box .leaflet-pane,
    .map-box .leaflet-top,
    .map-box .leaflet-bottom { z-index: 1; }

    /* Marker-popup met winkelinfo */
    .map-box .leaflet-popup-content-wrapper { border-radius: 10px; }
    .map-box .leaflet-popup-content { margin: 14px 16px; }
    .activity-popup { min-width: 180px; }
    .activity-popup-name {
        font-size: 15px; font-weight: 700; color: var(--bs-body-color); line-height: 1.3;
    }
    .activity-popup-address {
        font-size: 13px; color: var(--bs-secondary-color); margin-top: 4px; line-height: 1.4;
    }
    .activity-popup-phone {
        display: inline-block; font-size: 13px; font-weight: 600;
        color: #f36e22; text-decoration: none; margin-top: 6px;
    }
    .activity-popup-phone:hover { text-decoration: underline; color: #f36e22; }
    .activity-popup-btn { display: block; width: 100%; margin-top: 12px; }
