/* ===== Tekenradar.be — Stylesheet ===== */

:root {
    --primary: #c2410c;
    --primary-dark: #9a3412;
    --primary-light: #f97316;
    --accent: #d35400;
    --accent-dark: #a04000;
    --link: #b5470d;
    --danger: #B71C1C;
    --success: #2e7d46;
    --bg: #faf6f3;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-soft: #f5ece6;
    --text: #241a14;
    --text-light: #4a3f39;
    --text-muted: #6a5b53;
    --border: #e3d6cd;
    --border-light: #efe5dd;
    --border-strong: #c9b6a8;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(120,53,15,0.08);
    --shadow-lg: 0 6px 24px rgba(120,53,15,0.14);
    --shadow-inset: inset 0 -1px 0 rgba(0,0,0,0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 2px; }

/* Keyboard accessibility */
*:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: none;
}

img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--primary); color: #fff; }
.btn-accent:hover { background: var(--primary-dark); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c1121f; color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--link); color: var(--link); }
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary, .btn-accent, .btn-danger { box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.btn-primary:hover, .btn-accent:hover, .btn-danger:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1.1rem; }

/* ===== Header ===== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 4px 16px -10px rgba(91,72,15,0.18);
    position: sticky;
    top: 0;
    z-index: 1100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    color: var(--text);
}
.logo:hover { color: var(--primary); }
.logo-icon { font-size: 1.6rem; }
.logo-text { letter-spacing: -0.5px; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a:not(.btn) { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.main-nav a:not(.btn):hover { color: var(--primary-dark); text-decoration: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.2s;
}

/* ===== Flash Messages ===== */
.flash {
    padding: 12px 20px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
}
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

/* ===== Main Content ===== */
.main-content {
    min-height: calc(100vh - 64px - 200px);
    padding: 40px 0;
}
.main-content .container { max-width: 800px; }

/* ===== MAP PAGE ===== */
/* On map page, the body scrolls so the SEO content & footer below the map are reachable */
body.map-page {
    /* keep default: scroll allowed */
}
.main-map {
    display: block;
    width: 100%;
}
.map-flex {
    display: flex;
    height: calc(100vh - 64px); /* viewport minus sticky header */
    width: 100%;
}

/* Sidebar */
.map-sidebar {
    width: 340px;
    min-width: 340px;
    background: var(--bg-white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 50;
    overflow-y: auto;
}
.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}
.sidebar-header .logo { margin-bottom: 4px; }
.sidebar-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.sidebar-actions {
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
}
.sidebar-actions .btn { justify-content: center; width: 100%; }

.sidebar-section {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}
.sidebar-section h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* Filters */
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}
.filter-item input[type="checkbox"] { accent-color: var(--primary); }
.filter-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.date-filters {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}
.date-filters input {
    flex: 1;
    min-width: 0;
    padding: 6px 6px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8rem;
    max-width: 50%;
}

/* Recent sightings in sidebar */
.recent-list { display: flex; flex-direction: column; gap: 8px; }
.recent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: var(--radius);
    transition: background 0.15s;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
}
.recent-item:hover { background: var(--bg); color: var(--text); }
.recent-icon { font-size: 1.3rem; line-height: 1; }
.recent-info { flex: 1; }
.recent-info strong { font-size: 0.85rem; display: block; }
.recent-info span { font-size: 0.75rem; color: var(--text-muted); }

/* Map container */
.map-container {
    flex: 1;
    position: relative;
}
#map { width: 100%; height: 100%; }

/* Custom Leaflet popup */
.hornet-popup { min-width: 220px; }
.hornet-popup .popup-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 6px;
}
.hornet-popup .popup-location {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.hornet-popup .popup-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.hornet-popup .popup-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}
.hornet-popup .popup-thumb {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 8px;
}
.hornet-popup .popup-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--link);
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Sidebar stats */
.sidebar-stats {
    display: flex;
    gap: 12px;
}
.sidebar-stat {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: var(--bg);
    border-radius: var(--radius);
}
.sidebar-stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-dark);
}
.sidebar-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sidebar close button */
.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0 4px;
    line-height: 1;
}
.sidebar-close:hover { color: var(--text); }

/* Sidebar toggle button (visible when sidebar is collapsed) */
.sidebar-toggle {
    display: none;
    position: fixed;
    top: 80px;
    left: 12px;
    z-index: 1000;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    line-height: 1;
}
.sidebar-toggle:hover { background: var(--primary-dark); }

/* Sidebar collapsed state (desktop + mobile) */
.map-sidebar.collapsed {
    display: none;
}
.map-sidebar {
    transition: margin-left 0.2s;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}
.form-group .hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-white);
    transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}
textarea { min-height: 100px; resize: vertical; }

.form-errors {
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.form-errors ul { margin: 6px 0 0 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Map picker in form */
#location-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-top: 8px;
}
.location-search {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.location-search input { flex: 1; }

.file-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}
.file-upload:hover { border-color: var(--primary); }
.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.file-upload-label { color: var(--text-muted); font-size: 0.9rem; }
.file-upload-preview {
    max-width: 200px;
    margin-top: 12px;
    border-radius: var(--radius);
    display: none;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; }

/* ===== SIGHTING DETAIL ===== */
.sighting-detail { max-width: 700px; margin: 0 auto; }
.sighting-detail .detail-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.detail-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
}
.detail-meta { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }
.sighting-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sighting-info {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.sighting-info dt { font-weight: 600; color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 2px; }
.sighting-info dd { margin-bottom: 16px; font-size: 1rem; }
.sighting-info dd:last-child { margin-bottom: 0; }
#detail-map { width: 100%; height: 250px; border-radius: var(--radius); margin-bottom: 24px; }
.detail-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: #d4edda; color: #155724; }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 1100px; margin: 0 auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-card .stat-number { font-size: 2rem; font-weight: 700; color: var(--primary); }
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-muted); }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.admin-table th {
    background: var(--primary-dark);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
}
.admin-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    vertical-align: top;
}
.admin-table tr:hover td { background: var(--bg); }
.admin-table .actions { display: flex; gap: 6px; }

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
}
.pagination a, .pagination span {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    border: 1px solid var(--border);
}
.pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Login form */
.login-box {
    max-width: 400px;
    margin: 80px auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.login-box h1 { text-align: center; margin-bottom: 24px; }

/* ===== STATIC PAGES ===== */
.page-content h1 { font-size: 2rem; margin-bottom: 8px; color: var(--primary-dark); }
.page-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--primary-dark); }
.page-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text-light); }
.page-content ul { margin: 0 0 16px 24px; line-height: 1.8; color: var(--text-light); }

.hero-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.hero-banner {
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.hero-banner::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 110%, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.hero-banner > * { position: relative; z-index: 1; }
.hero-banner h1 { color: #fff; font-size: 2.2rem; text-shadow: 0 1px 2px rgba(0,0,0,0.18); }
.hero-banner p { color: rgba(255,255,255,0.95); font-size: 1.1rem; margin-top: 8px; }

/* ===== SIGHTING LIST ===== */
.sighting-list { display: flex; flex-direction: column; gap: 8px; }
.sighting-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s;
}
.sighting-list-item:hover { box-shadow: var(--shadow-lg); color: var(--text); }
.list-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}
.list-content { flex: 1; }
.list-content strong { font-size: 1rem; display: block; margin-bottom: 2px; }
.list-meta { font-size: 0.8rem; color: var(--text-muted); }
.list-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 6px; line-height: 1.5; }

/* ===== BLOG ===== */
.blog-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.blog-card {
    display: block;
    padding: 20px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.15s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); color: var(--text); }
.blog-card h2 { font-size: 1.2rem; margin-bottom: 4px; color: var(--primary-dark); }
.blog-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card p { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; line-height: 1.5; }

/* Table of contents */
.toc {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 16px 20px 16px 24px;
    margin-bottom: 28px;
}
.toc strong { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.toc ol { margin: 8px 0 0 20px; padding: 0; }
.toc li { font-size: 0.9rem; margin-bottom: 4px; line-height: 1.5; }
.toc a { color: var(--primary); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

.blog-article { max-width: 750px; margin: 0 auto; }
.blog-content { line-height: 1.9; color: var(--text-light); }
.blog-content h2 { font-size: 1.4rem; color: var(--primary-dark); margin: 32px 0 12px; }
.blog-content h3 { font-size: 1.15rem; color: var(--primary-dark); margin: 24px 0 8px; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 0 0 16px 24px; }
.blog-content li { margin-bottom: 6px; }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content blockquote {
    border-left: 4px solid var(--primary-light);
    padding: 12px 20px;
    margin: 16px 0;
    background: var(--bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #2a1f0c;
    color: rgba(255,255,255,0.92);
    padding: 48px 0 24px;
    border-top: 4px solid var(--primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-about .logo-icon,
.footer-about .logo-text { color: #fff; }
.footer-about p { font-size: 0.9rem; margin-top: 8px; line-height: 1.6; }
.footer-links h4 { color: #fff; margin-bottom: 12px; font-size: 0.95rem; }
.footer-links a {
    display: block;
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    padding: 3px 0;
}
.footer-links a:hover { color: var(--primary-light); text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== 404 ===== */
.not-found {
    text-align: center;
    padding: 80px 20px;
}
.not-found h1 { font-size: 5rem; color: var(--primary-dark); margin-bottom: 4px; }
.not-found p { font-size: 1.2rem; color: var(--text-light); margin: 16px 0 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { display: flex; }

    /* Mobile map layout: fixed heights instead of flex:1, so iOS Safari URL-bar
       resizing can't collapse the map to 0px. */
    .map-flex { flex-direction: column; height: auto; }
    .map-container {
        order: 1;
        flex: 0 0 55vh;
        height: 55vh;
        min-height: 320px;
    }
    .map-sidebar {
        width: 100%;
        min-width: 100%;
        order: 3;
        flex: 0 0 auto;
        max-height: none;
        border-right: none;
        border-top: 1px solid var(--border);
    }
    .sidebar-toggle { display: block; }
    .map-sidebar.collapsed { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    .admin-table { font-size: 0.8rem; }
    .admin-table th, .admin-table td { padding: 8px 10px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-banner { padding: 40px 16px; }
    .hero-banner h1 { font-size: 1.6rem; }
}

/* ===== Bundesland / Hotspot cards ===== */
.bundesland-grid a,
.hotspot-grid a {
    border: 1px solid var(--border) !important;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    box-shadow: 0 1px 2px rgba(91,72,15,0.06);
}
.bundesland-grid a:hover,
.hotspot-grid a:hover {
    transform: translateY(-2px);
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-lg);
    text-decoration: none !important;
}

/* ===== Page content links readability ===== */
.page-content a:not(.btn):not(.blog-card):not(.bundesland-card):not(.hotspot-card):not(.sighting-list-item),
.sighting-info a:not(.btn) { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
.page-content a:not(.btn):hover { color: var(--primary-dark); }

/* ===== Article body links ===== */
.blog-content a:not(.btn) { color: var(--link); }
.blog-content a:not(.btn):hover { color: var(--primary-dark); }

/* ===== TOC links ===== */
.toc a { color: var(--link); }
.toc a:hover { color: var(--primary-dark); }

/* ===== Sighting list items ===== */
.sighting-list li a:not(.btn) { color: var(--link); }
.sighting-list li a:not(.btn):hover { color: var(--primary-dark); }

/* Card-block links should NOT carry inline link styling */
.blog-card, .bundesland-grid a, .hotspot-grid a, .sighting-list-item, .recent-item {
    text-decoration: none !important;
    color: var(--text) !important;
}
.blog-card h2 { color: var(--primary-dark); }
.blog-card:hover h2 { color: var(--link); }
.blog-card .blog-date { color: var(--text-muted) !important; text-decoration: none !important; }

/* ===== Subtle section headings ===== */
.sidebar-section h3 { color: var(--text-light); font-weight: 700; }

/* ===== Detail meta improvements ===== */
.detail-meta { color: var(--text-light); }
.detail-status { letter-spacing: 0.2px; }
.status-pending { background: #fff3cd; color: #6b4f00; border: 1px solid #f0d878; }
.status-approved { background: #d4edda; color: #0f4419; border: 1px solid #a3d3b1; }

/* ===== Mobile scroll affordance between map and SEO =====
   Mobile-first: visible by default, hidden on desktop via min-width query. */
.mobile-scroll-hint {
    display: flex;
    order: 2;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.08);
}
.mobile-scroll-hint:hover,
.mobile-scroll-hint:focus { background: var(--primary-dark); color: #fff; }
.mobile-scroll-hint::after { content: "↓"; font-size: 1.1rem; }
@media (min-width: 769px) {
    .mobile-scroll-hint { display: none; }
}

/* ===== Map page intro (SEO content under the map) ===== */
.map-page-intro {
    padding: 60px 0 70px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}
.map-page-intro .container { max-width: 1100px; }
.map-page-intro h2 {
    font-size: 1.9rem;
    margin-bottom: 14px;
    color: var(--primary-dark);
}
.map-page-intro .lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 36px;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}
.intro-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 22px 24px;
    box-shadow: var(--shadow);
}
.intro-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--primary-dark);
}
.intro-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
    margin: 0 0 16px;
}
.intro-card .btn { margin-top: 4px; }
.intro-sources {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
}
.intro-sources h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--text);
}
.intro-sources p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0;
}
.intro-sources a { color: var(--link); }
.intro-sources a:hover { color: var(--primary-dark); }

@media (max-width: 800px) {
    .intro-grid { grid-template-columns: 1fr; }
    .map-page-intro { padding: 40px 0 50px; }
    .map-page-intro h2 { font-size: 1.5rem; }
}

/* Sidebar header tightened (logo now lives in main site header) */
body.map-page .sidebar-header { padding: 14px 20px 12px; position: relative; }
body.map-page .sidebar-header > strong { line-height: 1.2; }
body.map-page .sidebar-close {
    position: absolute; top: 12px; right: 12px;
    font-size: 0.8rem; color: var(--text-muted);
    background: none; border: none; cursor: pointer; padding: 4px;
}
body.map-page .sidebar-close:hover { color: var(--text); }

/* ===== Smoother focus + skip link ===== */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--accent); color: #fff;
    padding: 10px 16px; border-radius: var(--radius);
    z-index: 9999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Nav dropdown (blog categorieën) ===== */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-weight: 500; font-size: 0.95rem;
}
.nav-dropdown-chevron { transition: transform 0.18s; opacity: 0.7; }
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px; background: #fff;
    border: 1px solid var(--border, #e5e5e5);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 6px 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    z-index: 1200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown::after {
    content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
    pointer-events: none;
}
.nav-dropdown:hover::after, .nav-dropdown:focus-within::after { pointer-events: auto; }
.nav-dropdown-item {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; padding: 9px 18px;
    font-size: 0.92rem; color: var(--text, #333); line-height: 1.3;
    text-decoration: none;
}
.nav-dropdown-item:hover { background: #fdeee4; color: #c2410c; }
.nav-dropdown-all {
    font-weight: 600; border-bottom: 1px solid var(--border, #eee);
    margin-bottom: 4px; padding-bottom: 11px;
}
.nav-dropdown-count {
    background: rgba(46,125,50,0.10); color: #c2410c;
    font-size: 0.72rem; font-weight: 700;
    padding: 2px 9px; border-radius: 999px;
    min-width: 26px; text-align: center; flex-shrink: 0;
}

/* ===== Category pills (blog list) ===== */
.category-pills a.pill,
.page-content a.pill {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1.5px solid #D7CCC8;
    background: #fff;
    color: #1a2418 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.15s;
    line-height: 1.2;
}
.category-pills a.pill:hover,
.page-content a.pill:hover {
    border-color: #c2410c;
    background: #fdeee4;
    color: #9a3412 !important;
}
.category-pills a.pill-active,
.page-content a.pill-active {
    background: #c2410c;
    color: #fff !important;
    border-color: #c2410c;
    font-weight: 600;
}
.category-pills a.pill-active:hover,
.page-content a.pill-active:hover {
    background: #9a3412;
    color: #fff !important;
}

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #F1F8E9; border-top: 3px solid #c2410c;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    padding: 16px 20px; z-index: 9998;
    animation: cookieSlideUp 0.3s ease-out;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner__inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 280px; font-size: 0.92rem; color: #1a2418; line-height: 1.45; }
.cookie-banner__text a { color: #9a3412; text-decoration: underline; }
.cookie-banner__buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
    border: none; padding: 10px 20px; border-radius: 6px;
    font-size: 0.92rem; font-weight: 600; cursor: pointer;
    transition: all 0.15s;
}
.cookie-banner__btn--primary {
    background: #c2410c; color: #fff;
}
.cookie-banner__btn--primary:hover { background: #9a3412; }
.cookie-banner__btn--secondary {
    background: transparent; color: #5D4037;
    border: 1px solid #8D6E63;
}
.cookie-banner__btn--secondary:hover { background: rgba(141,110,99,0.08); }

@media (max-width: 600px) {
    .cookie-banner__inner { flex-direction: column; align-items: stretch; }
    .cookie-banner__buttons { width: 100%; justify-content: stretch; }
    .cookie-banner__btn { flex: 1; }
}

/* ===== Breadcrumbs ===== */
.breadcrumbs { margin: 0 0 16px; font-size: 0.88rem; color: var(--text-muted, #777); }
.breadcrumb-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list a { color: var(--text-muted, #777); text-decoration: none; }
.breadcrumb-list a:hover { color: #c2410c; text-decoration: underline; }
.breadcrumb-list [aria-current="page"] { color: var(--text, #333); font-weight: 500; }
.breadcrumb-sep { color: #aaa; }

/* ===== Hero banner (home + landing pages) ===== */
.home-hero {
    background: linear-gradient(135deg, #fdeee4 0%, #f5d9c6 100%);
    padding: 56px 20px 64px;
    border-bottom: 3px solid #c2410c;
}
.home-hero__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.home-hero h1 { margin: 0 0 14px; font-size: 2.4rem; color: #9a3412; line-height: 1.1; font-weight: 800; }
.home-hero p.lead { font-size: 1.15rem; color: #1a2418; line-height: 1.45; margin: 0 0 18px; max-width: 620px; }
.home-hero__stats { display: flex; gap: 24px; flex-wrap: wrap; }
.home-hero__stat strong { display: block; font-size: 1.8rem; color: #9a3412; font-weight: 800; line-height: 1; }
.home-hero__stat span { font-size: 0.85rem; color: #5D4037; text-transform: uppercase; letter-spacing: 0.5px; }
.home-hero__cta { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.home-hero__icon { width: 180px; height: 180px; flex-shrink: 0; }
@media (max-width: 760px) {
    .home-hero__inner { grid-template-columns: 1fr; text-align: center; }
    .home-hero__stats { justify-content: center; }
    .home-hero__icon { display: none; }
    .home-hero h1 { font-size: 1.8rem; }
}

/* ===== 404 page ===== */
.not-found {
    max-width: 600px; margin: 60px auto; padding: 40px 24px; text-align: center;
}
.not-found h1 {
    font-size: 6rem; margin: 0; color: #c2410c; line-height: 1; font-weight: 800;
}
.not-found h2 { font-size: 1.4rem; margin: 8px 0 16px; color: #5D4037; }
.not-found p { color: var(--text-muted, #666); margin-bottom: 24px; }
.not-found__links {
    margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px; text-align: left;
}
.not-found__links a {
    display: block; padding: 14px 18px; background: #fff;
    border: 1px solid var(--border, #eee); border-radius: 8px;
    color: var(--text, #333); text-decoration: none;
    transition: border-color 0.15s, transform 0.15s;
}
.not-found__links a:hover {
    border-color: #c2410c; transform: translateY(-1px);
}
.not-found__links strong { display: block; color: #9a3412; margin-bottom: 4px; }
.not-found__links span { font-size: 0.85rem; color: var(--text-muted, #888); }

/* ===== Blog card v2 — image-left layout ===== */
.blog-list { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }

.blog-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bg-white, #fff);
    border: 1px solid var(--border, #eee);
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.18s, transform 0.18s;
}
.blog-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}
.blog-card__image {
    width: 100%; height: 100%;
    min-height: 170px;
    object-fit: cover;
    display: block;
    background: #fdeee4;
}
.blog-card__body { padding: 18px 22px; display: flex; flex-direction: column; justify-content: center; }
.blog-card h2 { font-size: 1.15rem; margin: 0 0 6px; color: var(--primary-dark, #9a3412); line-height: 1.3; }
.blog-card .blog-date { font-size: 0.78rem; color: var(--text-muted, #888); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 8px; }
.blog-card p { font-size: 0.92rem; color: var(--text-light, #555); margin: 0; line-height: 1.5; }

/* Cards zonder image: enkel kolom */
.blog-card:not(:has(.blog-card__image)) { grid-template-columns: 1fr; }
.blog-card:not(:has(.blog-card__image)) .blog-card__body { padding: 22px 26px; }

@media (max-width: 640px) {
    .blog-card { grid-template-columns: 1fr; }
    .blog-card__image { aspect-ratio: 16/9; min-height: 0; height: auto; }
    .blog-card__body { padding: 16px 20px; }
}

/* ===== Blog featured image (detail page) ===== */
.blog-featured {
    margin: 0 0 28px;
}
.blog-featured img {
    width: 100%; height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===== Affiliate box + property CTA + content callout ===== */
.affiliate-box, .property-cta {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 28px 0;
}
.affiliate-box h3, .property-cta h3 { color: var(--primary-dark); margin: 0 0 8px; font-size: 1.1rem; }
.affiliate-intro { margin: 0 0 10px; }
.affiliate-list { list-style: none; padding: 0; margin: 0 0 12px; display: flex; flex-direction: column; gap: 6px; }
.affiliate-list a { font-weight: 600; color: var(--link); }
.affiliate-disclosure { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.property-cta-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

.content-callout {
    background: #FFF8E1;
    border: 1px solid #F4D58D;
    border-left: 4px solid #E0A020;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin: 22px 0;
}
.content-callout strong { color: #7a5b00; }

.compare-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 24px 0;
}
.compare-cols .compare-col {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
}
.compare-cols .compare-col h3 { color: var(--primary-dark); margin: 0 0 8px; font-size: 1.05rem; }
@media (max-width: 640px) { .compare-cols { grid-template-columns: 1fr; } }

.faq-accordion { margin: 20px 0; }
.faq-accordion details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--bg-white);
}
.faq-accordion summary {
    cursor: pointer;
    padding: 14px 18px;
    font-weight: 600;
    color: var(--primary-dark);
    list-style: none;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion details[open] summary { border-bottom: 1px solid var(--border-light); }
.faq-accordion .faq-body { padding: 6px 18px 16px; }

/* Horizontale scroll-wrapper voor brede tabellen (mobiel) */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ===== Tekenradar additions ===== */
.honesty-note{background:#fdeee4;border:1px solid var(--border-strong);border-left:4px solid var(--accent);border-radius:var(--radius);padding:14px 16px;margin:0 0 1.5rem;font-size:.92rem;color:var(--text-light)}
.honesty-note strong{color:var(--primary-dark)}
.risk-legend{display:flex;flex-direction:column;gap:6px;margin:.25rem 0 .5rem;font-size:.82rem;color:var(--text-light)}
.risk-legend__item{display:flex;align-items:center;gap:8px}
.risk-dot{width:14px;height:14px;border-radius:3px;flex:0 0 auto;border:1px solid rgba(0,0,0,.15)}
.sidebar-note{font-size:.78rem;color:var(--text-muted);margin-top:.35rem}
.popup-src{font-size:.72rem;color:var(--text-muted);font-style:italic;margin:2px 0}
.medical-disclaimer{background:#fff6f0;border:1px solid var(--border-strong);border-left:4px solid var(--danger);border-radius:var(--radius);padding:12px 16px;margin:1.25rem 0;font-size:.9rem;color:var(--text-light)}
.medical-disclaimer strong{color:var(--danger)}
/* footer: 1 rij, 4 gelijke kolommen */
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
@media(max-width:780px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}
/* Leaflet layer-control leesbaarheid */
.leaflet-control-layers label{color:#241a14;font-size:.85rem}
/* ===== Bol.com affiliate box + toast (self-contained, theme-agnostic) — 2026-06-11 ===== */
.aff-box{
    background:#fff;border:1px solid #e5e7eb;border-left:4px solid #1f2937;border-radius:12px;
    padding:16px 18px;margin:28px 0;box-shadow:0 1px 3px rgba(0,0,0,.06);
}
.aff-box__head{display:flex;align-items:center;gap:8px;margin-bottom:6px;}
.aff-box__tag{
    font-size:.66rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
    color:#6b7280;border:1px solid #e5e7eb;border-radius:4px;padding:1px 6px;
}
.aff-box__title{font-size:1.05rem;color:#111827;line-height:1.3;}
.aff-box__intro{font-size:.9rem;color:#4b5563;margin:4px 0 12px;}
.aff-box__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;}
.aff-item{display:flex;align-items:center;gap:12px;background:#f9fafb;border-radius:10px;padding:10px 12px;}
.aff-item__icon{font-size:1.5rem;flex-shrink:0;line-height:1;}
.aff-item__body{flex:1;min-width:0;}
.aff-item__name{font-weight:600;color:#111827;font-size:.92rem;text-decoration:none;display:block;}
.aff-item__name:hover{color:#1f2937;text-decoration:underline;}
.aff-item__meta{display:flex;align-items:center;gap:8px;margin-top:3px;flex-wrap:wrap;}
.aff-item__badge{font-size:.72rem;color:#15803d;font-weight:600;}
.aff-item__price{font-size:.85rem;font-weight:700;color:#111827;}
.aff-item__btn{
    flex-shrink:0;background:#1f2937;color:#fff;text-decoration:none;font-size:.85rem;font-weight:600;
    padding:8px 12px;border-radius:8px;white-space:nowrap;
}
.aff-item__btn:hover{background:#111827;color:#fff;}
.aff-box__disclosure{font-size:.7rem;color:#9ca3af;margin:12px 0 0;}

.aff-box--compact{margin:0;padding:12px 14px;box-shadow:none;}
.aff-box--compact .aff-box__title{font-size:.95rem;}
.aff-box--compact .aff-box__intro{font-size:.82rem;margin-bottom:10px;}
.aff-box--compact .aff-item{padding:8px 10px;gap:9px;}
.aff-box--compact .aff-item__icon{font-size:1.25rem;}
.aff-box--compact .aff-item__name{font-size:.85rem;}
.aff-box--compact .aff-item__btn{padding:6px 9px;font-size:.78rem;}

@media (max-width:480px){
    .aff-item{flex-wrap:wrap;}
    .aff-item__btn{width:100%;text-align:center;}
}

/* ===== Slide-in toast ===== */
.aff-toast{
    position:fixed;right:18px;bottom:18px;z-index:1200;width:340px;max-width:calc(100vw - 24px);
    background:#fff;border:1px solid #e5e7eb;border-left:4px solid #1f2937;border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);padding:16px 16px 12px;
    transform:translateY(140%);opacity:0;transition:transform .35s cubic-bezier(.16,.84,.44,1),opacity .35s ease;
}
.aff-toast--visible{transform:translateY(0);opacity:1;}
.aff-toast__close{
    position:absolute;top:6px;right:8px;border:none;background:none;cursor:pointer;
    font-size:1.4rem;line-height:1;color:#9ca3af;
}
.aff-toast__close:hover{color:#111827;}
.aff-toast__head{display:flex;align-items:center;gap:8px;margin:0 18px 6px 0;}
.aff-toast__title{font-size:1rem;color:#111827;line-height:1.3;}
.aff-toast__intro{font-size:.82rem;color:#4b5563;margin:0 0 10px;}

@media (max-width:560px){
    .aff-toast{right:8px;left:8px;bottom:8px;width:auto;}
    .aff-toast .aff-box__list .aff-item:nth-of-type(n+2){display:none;}
    .aff-toast__intro{margin-bottom:8px;}
}
@media (prefers-reduced-motion:reduce){
    .aff-toast{transition:opacity .2s ease;transform:none;}
}

/* ===== Bol affiliate Tier1 v2 (productfoto + sterren + voorraad + CTA) — override ===== */
.aff-box__list{display:flex;flex-direction:column;gap:10px}
.aff-item{display:flex;align-items:flex-start;gap:13px;background:#f6f7f9;border:1px solid #eef0f2;border-radius:10px;padding:12px}
.aff-item__thumb{flex-shrink:0;width:72px;height:72px;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #ececec;border-radius:8px;overflow:hidden;text-decoration:none}
.aff-item__thumb img{width:100%;height:100%;object-fit:contain;display:block}
.aff-item__icon{font-size:1.9rem}
.aff-item__body{flex:1;min-width:0;display:flex;flex-direction:column;align-items:flex-start;gap:5px}
.aff-item__name{font-weight:600;color:#1a1a2e;font-size:.92rem;text-decoration:none;line-height:1.33;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.aff-item__rating{display:flex;align-items:center;gap:5px}
.aff-stars{color:#f5a623;font-size:.82rem;letter-spacing:1px;line-height:1}
.aff-rcount{font-size:.72rem;color:#888}
.aff-item__priceline{display:flex;align-items:baseline;gap:9px;flex-wrap:wrap}
.aff-item__price{font-size:1.05rem;font-weight:800;color:#1a1a2e}
.aff-item__stock{font-size:.74rem;color:#1f8a4c;font-weight:600;white-space:nowrap}
.aff-item__badge{display:none}
.aff-item__btn{display:inline-block;margin-top:3px;background:#e76f2a;color:#fff;text-decoration:none;font-size:.85rem;font-weight:700;padding:9px 15px;border-radius:8px;white-space:nowrap;box-shadow:0 2px 6px rgba(231,111,42,.3)}
.aff-item__btn:hover{background:#cf5d1d;color:#fff}
.aff-box--compact .aff-item{padding:10px}
.aff-box--compact .aff-item__thumb{width:56px;height:56px}
.aff-toast .aff-item__btn{display:block;width:100%;text-align:center}
@media(max-width:560px){.aff-toast{left:10px;right:10px;bottom:10px;width:auto;max-width:none}.aff-toast .aff-box__list .aff-item:nth-of-type(n+2){display:none}}
/* aff-bulletproof: weersta site-brede `.page-content a:not(.btn)` link-overrides (blauw+underline op knop) */
.aff-box a.aff-item__btn{background:#e76f2a !important;color:#fff !important;text-decoration:none !important}
.aff-box a.aff-item__btn:hover{background:#cf5d1d !important;color:#fff !important;text-decoration:none !important}
.aff-box a.aff-item__name{color:#1a1a2e !important;text-decoration:none !important}
.aff-box a.aff-item__name:hover{text-decoration:underline !important}
.aff-box a.aff-item__thumb{text-decoration:none !important}
