        /* ── Hero (full-bleed) ───────────────────────────────────── */
        .winkel-hero {
            width: 100%;
            padding: calc(var(--bs-app-header-height, 78px) + 2.5rem) 0 3.5rem;
        }
        .winkel-hero-title {
            font-size: 42px;
            line-height: 1.15;
        }
        .winkel-hero-address {
            opacity: .9;
        }

        /* ── Hero status-pill (open/gesloten) ────────────────────── */
        .winkel-hero-status {
            display: inline-flex;
            align-items: center;
            gap: .8rem;
            padding: .65rem 1.1rem .65rem .9rem;
            background: rgba(255, 255, 255, .14);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 999px;
            color: #fff;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }
        .winkel-hero-status[hidden] { display: none; }
        .winkel-hero-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            flex-shrink: 0;
            position: relative;
        }
        .winkel-hero-status.is-open .winkel-hero-status-dot {
            background: #22c55e;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, .55);
            animation: winkel-status-pulse 2s ease-out infinite;
        }
        .winkel-hero-status.is-closed .winkel-hero-status-dot {
            background: #ef4444;
        }
        @keyframes winkel-status-pulse {
            0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
            70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
            100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
        .winkel-hero-status-info { line-height: 1.2; }
        .winkel-hero-status-text {
            font-weight: 700;
            font-size: 15px;
            letter-spacing: .01em;
        }
        .winkel-hero-status-sub {
            font-size: 12px;
            font-weight: 500;
            opacity: .85;
            margin-top: 2px;
        }
        .winkel-hero-status-sub:empty { display: none; }
        @media (max-width: 575.98px) {
            .winkel-hero {
                padding: calc(var(--bs-app-header-height, 70px) + 1.5rem) 0 2rem;
            }
            .winkel-hero-title {
                font-size: 32px;
            }
        }

        .winkel-section-title {
            font-size: 32px;
        }
        @media (max-width: 575.98px) {
            .winkel-section-title {
                font-size: 26px;
            }
        }

        .hero-orange {
            background-color: #f36e22;
            color: #fff;
        }
        .hero-back-link {
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: color .15s, transform .15s;
        }
        .hero-back-link:hover {
            color: #fff;
            transform: translateX(-2px);
        }
        .hero-chip {
            background-color: rgba(255, 255, 255, .18);
            border: 1px solid rgba(255, 255, 255, .3);
        }
        .winkel-chip {
            background: var(--bs-card-bg);
        }

        /* ── Body-paneel ─────────────────────────────────────────── */
        .winkel-info-card .card-body {
            padding: 1.5rem;
        }
        @media (min-width: 992px) {
            .winkel-info-card .card-body {
                padding: 1.75rem 2rem;
            }
        }

        .winkel-aside {
            position: sticky;
            top: calc(var(--bs-app-header-height, 78px) + 1rem);
        }
        .winkel-aside .winkel-info-card .card-body {
            padding-left: 1.75rem;
            padding-right: 1.75rem;
        }
        .winkel-aside .winkel-info-card .winkel-section-subtitle {
            padding-left: .85rem;
            padding-right: .85rem;
        }

        /* ── Sub-section ─────────────────────────────────────────── */
        .winkel-section + .winkel-section {
            border-top: 1px solid var(--bs-border-color);
            padding-top: 1.25rem;
            margin-top: 1.25rem;
        }
        .winkel-section-subtitle {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
            color: #f36e22;
            margin-bottom: .75rem;
        }

        /* ── Thumbnail-strook ─────────────────────────────────────── */
        .winkel-thumb-strip {
            display: flex;
            gap: .5rem;
            overflow-x: auto;
            padding-bottom: .25rem;
            scrollbar-width: thin;
        }
        .winkel-thumb {
            flex: 0 0 auto;
            width: 240px;
            height: 168px;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bs-tertiary-bg);
            display: block;
        }
        .winkel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .2s ease;
        }
        .winkel-thumb:hover img {
            transform: scale(1.05);
        }

        /* ── Meta-row ─────────────────────────────────────────────── */
        .winkel-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem 1.5rem;
            font-size: 14px;
        }
        .winkel-meta-item {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            color: var(--bs-body-color);
            text-decoration: none;
            font-weight: 600;
        }
        a.winkel-meta-item:hover {
            color: #f36e22;
        }

        /* ── Aanbod-tags ──────────────────────────────────────────── */
        .winkel-aanbod-tag {
            display: inline-flex;
            align-items: center;
            padding: .35rem .75rem;
            border-radius: 10px;
            background: color-mix(in srgb, #f36e22 10%, transparent);
            color: #c44e10;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
        }
        [data-bs-theme="dark"] .winkel-aanbod-tag {
            background: color-mix(in srgb, #f36e22 22%, transparent);
            color: #ffb27a;
        }

        /* ── Faciliteit-rij ───────────────────────────────────────── */
        .winkel-facility {
            display: flex;
            align-items: center;
            gap: .65rem;
            font-size: 14px;
            font-weight: 600;
            color: var(--bs-body-color);
        }
        .winkel-facility i {
            width: 20px;
            text-align: center;
            color: #f36e22;
        }
        .winkel-facility.is-absent {
            color: var(--bs-secondary-color);
        }
        .winkel-facility.is-absent i {
            color: var(--bs-secondary-color);
        }
        a.winkel-facility-link {
            text-decoration: none;
            color: var(--bs-body-color);
            transition: color .15s ease;
        }
        a.winkel-facility-link:hover {
            color: #f36e22;
            text-decoration: underline;
        }

        /* ── Rich body ────────────────────────────────────────────── */
        .winkel-rich { font-size: 1rem; }
        .winkel-rich img { max-width: 100%; border-radius: 8px; margin: .75rem 0; }
        .winkel-rich > *:first-child { margin-top: 0; }
        .winkel-rich > *:last-child  { margin-bottom: 0; }

        /* ── Openingsuren ─────────────────────────────────────────── */
        .openingsuren-table { font-size: 14px; }
        .openingsuren-table tr { border-bottom: 1px solid var(--bs-border-color); }
        .openingsuren-table tr:last-child { border-bottom: 0; }
        .openingsuren-table td { padding: .55rem .25rem; vertical-align: middle; }
        .openingsuren-table td:first-child { padding-left: .85rem; }
        .openingsuren-table td:last-child  { padding-right: .85rem; }
        .openingsuren-table tr.is-today td {
            background: color-mix(in srgb, #f36e22 8%, transparent);
            color: #f36e22 !important;
            font-weight: 700;
            padding-top: .85rem;
            padding-bottom: .85rem;
        }
        .openingsuren-table tr.is-today td:first-child {
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }
        .openingsuren-table tr.is-today td:last-child {
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }
        .openingsuren-table tr.is-today { border-bottom-color: transparent; }

        /* ── Kaart (sticky aside) ─────────────────────────────────── */
        .winkel-map-card {
            position: relative;
        }
        #winkel-map {
            min-height: 300px;
            height: 300px;
            width: 100%;
            position: relative;
            z-index: 0;
        }
        #winkel-map .leaflet-pane,
        #winkel-map .leaflet-top,
        #winkel-map .leaflet-bottom { z-index: 1; }
        .winkel-map-route {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 5;
        }
        .marker-location {
            background-color: var(--bs-card-bg, var(--bs-body-bg));
            border-radius: 50%;
            padding: 8px;
            width: 45px; height: 45px;
            border: 2px solid #f36e22;
        }

        /* ── Activiteiten ─────────────────────────────────────────── */
        .activity-card {
            border: 1px solid var(--bs-border-color);
            transition: border-color .15s, transform .15s, box-shadow .15s;
        }
        .activity-card:hover {
            border-color: #f36e22;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(243, 110, 34, .08);
        }

        /* ── Centra block ─────────────────────────────────────────── */
        .centra-card { background: #f3e1da; }
        [data-bs-theme="dark"] .centra-card { background: #2a1f18; }
        .centra-body > *:first-child { margin-top: 0; }
        .centra-body > *:last-child  { margin-bottom: 0; }

        /* ── Nearby winkels ──────────────────────────────────────── */
        .nearby-loc-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--bs-border-color);
            border-radius: 10px;
            overflow: hidden;
            background: var(--bs-card-bg);
            text-decoration: none;
            color: inherit;
            transition: border-color .15s, transform .15s, box-shadow .15s;
        }
        .nearby-loc-card:hover {
            border-color: #f36e22;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(243, 110, 34, .08);
            color: inherit;
        }
        .nearby-loc-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            background: var(--bs-tertiary-bg);
            overflow: hidden;
        }
        .nearby-loc-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .nearby-loc-thumb-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bs-secondary-color);
            font-size: 32px;
        }
        .nearby-loc-distance {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(17, 24, 39, .75);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 10px;
            letter-spacing: .02em;
        }
        .nearby-loc-body {
            padding: 1rem 1.1rem 1.1rem;
        }
        .nearby-loc-name {
            margin-bottom: .25rem;
        }
        .nearby-loc-address {
            line-height: 1.4;
        }
        #winkel-use-my-location.is-active {
            border-color: #f36e22 !important;
            color: #f36e22;
        }
