/* Karnex — paars basis + beperkte accenten (koel / warm / goud) */
:root {
    --black: #030208;
    --charcoal: #0c0614;
    --purple-core: #a020f0;
    --purple-neon: #bf00ff;
    --purple-bright: #d946ef;
    --purple-deep: #4c0d6b;
    --purple-muted: #9b6bb8;
    --purple-glow: rgba(191, 0, 255, 0.35);
    /* secundair: spaarzaam gebruikt i.c.m. paars */
    --accent-cool: #7dd3fc;
    --accent-cool-dim: #38bdf8;
    --accent-warm: #f9a8d4;
    --accent-warm-dim: #e879a8;
    --accent-gold: #e8c468;
    --text-muted: #a89bb8;
    --text-body: #f0e8f8;
    --font-display: "Metal Mania", "Impact", fantasy;
    --font-ui: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-ui);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--black);
    position: relative;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
}

/* Minimaal korreltje — te veel noise oogt vaag op scherp */
.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.018;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    padding-bottom: 0.75rem;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    overflow: visible;
    background: rgba(3, 2, 8, 0.97);
    border-bottom: 1px solid rgba(191, 0, 255, 0.32);
    box-shadow: 0 1px 0 0 rgba(125, 211, 252, 0.12);
    /* geen backdrop-filter — dat maakt alles wazig achter de header */
}

.logo-mark {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--purple-neon);
    text-shadow:
        2px 2px 0 #1a0528,
        0 0 14px rgba(191, 0, 255, 0.45);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.logo-mark:hover {
    color: #f5d0ff;
    text-shadow:
        2px 2px 0 #3d0a55,
        0 0 18px rgba(191, 0, 255, 0.65);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    overflow: visible;
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    flex-shrink: 0;
    color: #c4b8d4;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(191, 0, 255, 0.28);
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
        radial-gradient(circle at 70% 85%, rgba(191, 0, 255, 0.14) 0%, transparent 48%),
        linear-gradient(165deg, rgba(22, 10, 36, 0.95) 0%, rgba(4, 3, 12, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 12px rgba(0, 0, 0, 0.35);
    transition:
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.header-cart__ring {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: conic-gradient(
        from 210deg,
        rgba(232, 196, 104, 0.35),
        rgba(191, 0, 255, 0.25),
        rgba(125, 211, 252, 0.2),
        rgba(232, 196, 104, 0.35)
    );
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
    transition: opacity 0.25s ease;
}

.header-cart:hover .header-cart__ring {
    opacity: 1;
}

.header-cart:hover {
    color: #f8edd0;
    border-color: rgba(232, 196, 104, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(232, 196, 104, 0.12),
        0 6px 22px rgba(0, 0, 0, 0.45);
    transform: translateY(-1px);
}

.header-cart:hover .header-cart__svg {
    transform: scale(1.06);
}

.header-cart--has-items {
    border-color: rgba(232, 196, 104, 0.42);
    color: #fdf6e3;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 0 1px rgba(232, 196, 104, 0.15),
        0 4px 18px rgba(232, 196, 104, 0.12);
}

.header-cart--has-items .header-cart__ring {
    opacity: 0.55;
}

.header-cart__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.header-cart__svg {
    display: block;
    width: 21px;
    height: 21px;
    transition: transform 0.22s ease;
}

.header-cart__body {
    fill: none;
}

.header-cart__count {
    position: absolute;
    z-index: 2;
    top: 1px;
    right: 1px;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    font-size: 0.52rem;
    font-weight: 800;
    line-height: 1.15rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: #120818;
    background: linear-gradient(165deg, #fff4d4 0%, #e8c468 42%, #c9a24d 100%);
    border-radius: 999px;
    box-shadow:
        0 0 0 1.5px rgba(4, 3, 12, 0.85),
        0 2px 6px rgba(232, 196, 104, 0.45);
}

/* Taal: twee vlag-links (header, geen dropdown) */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    flex-shrink: 0;
    align-self: center;
    z-index: 5;
}

.lang-switch__sep {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-muted);
    opacity: 0.55;
    user-select: none;
    pointer-events: none;
    padding: 0 0.06rem;
}

.lang-switch__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    margin: -0.2rem;
    line-height: 0;
    text-decoration: none;
    background: none;
    border: none;
    opacity: 0.55;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.lang-switch__link:hover {
    opacity: 1;
}

.lang-switch__link.is-active {
    opacity: 1;
}

.lang-switch__link:focus-visible {
    outline: 2px solid rgba(232, 196, 104, 0.65);
    outline-offset: 3px;
    border-radius: 2px;
}

.lang-switch__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.lang-switch__link .lang-flag__svg {
    display: block;
    width: auto;
    height: 14px;
    border-radius: 2px;
    box-shadow: none;
}

.lang-drawer-opt__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 0;
}

.lang-flag__svg {
    display: block;
    width: auto;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.lang-drawer-opt__flag .lang-flag__svg {
    height: 22px;
}

.lang-drawer-block {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(191, 0, 255, 0.22);
}

.lang-drawer-block__title {
    margin: 0 0 0.65rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.lang-drawer-opt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-body);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(191, 0, 255, 0.25);
    border-radius: 2px;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.lang-drawer-opt:last-child {
    margin-bottom: 0;
}

.lang-drawer-opt:hover {
    border-color: rgba(125, 211, 252, 0.4);
    color: var(--accent-cool);
}

.lang-drawer-opt.is-active {
    border-color: rgba(232, 196, 104, 0.5);
    color: var(--accent-gold);
    box-shadow: inset 0 0 0 1px rgba(232, 196, 104, 0.15);
}

.nav-main {
    display: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-main a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-main a:hover {
    color: var(--accent-cool);
}

.nav-toggle {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    color: var(--purple-bright);
    background: rgba(26, 8, 40, 0.75);
    border: 2px solid rgba(191, 0, 255, 0.55);
    box-shadow: none;
    cursor: pointer;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: pointer;
}

.nav-backdrop[hidden] {
    display: none !important;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding:
        max(5rem, calc(env(safe-area-inset-top, 0px) + 3.25rem))
        max(1.5rem, env(safe-area-inset-right, 0px))
        max(2rem, env(safe-area-inset-bottom, 0px))
        max(1.5rem, env(safe-area-inset-left, 0px));
    width: min(19rem, calc(100vw - 2.5rem));
    min-width: 0;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(165deg, #14081c 0%, #030208 100%);
    border-left: 2px solid rgba(191, 0, 255, 0.45);
    box-shadow: -12px 0 0 rgba(0, 0, 0, 0.4);
}

/* [hidden] moet winnen: anders overschrijft `display: flex` hierboven het standaard gedrag en staat het menu altijd open op mobiel. */
.nav-drawer[hidden] {
    display: none !important;
}

.nav-drawer a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.2rem 0;
}

.nav-drawer a:hover {
    color: var(--accent-warm);
}

@media (min-width: 768px) {
    .nav-main {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .nav-drawer {
        display: none !important;
    }

    .lang-drawer-block {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1040px) {
    .nav-main a {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }
}

/* Main & sections */
.main {
    position: relative;
}

.section {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 1.25rem;
}

.section__inner {
    max-width: 960px;
    margin: 0 auto;
}

.section__inner--narrow {
    max-width: 640px;
}

.section--glow-center {
    background:
        radial-gradient(ellipse 70% 50% at 12% 28%, rgba(125, 211, 252, 0.07) 0%, transparent 48%),
        radial-gradient(ellipse 75% 55% at 22% 32%, rgba(160, 32, 240, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 70% 50% at 85% 70%, rgba(191, 0, 255, 0.12) 0%, transparent 52%),
        linear-gradient(180deg, #05030a 0%, #000 55%, #030208 100%);
}

.section--plum {
    background:
        radial-gradient(ellipse 55% 40% at 0% 50%, rgba(125, 211, 252, 0.05) 0%, transparent 45%),
        linear-gradient(90deg, rgba(160, 32, 240, 0.07) 0%, transparent 38%),
        linear-gradient(180deg, #0c0614 0%, #030208 48%, #05030a 100%);
    border-top: 2px solid rgba(125, 211, 252, 0.22);
}

.section--violet-shift {
    background:
        radial-gradient(ellipse 65% 45% at 100% 0%, rgba(249, 168, 212, 0.06) 0%, transparent 42%),
        linear-gradient(135deg, rgba(76, 13, 107, 0.22) 0%, transparent 42%),
        linear-gradient(180deg, #0a0610 0%, #050308 100%),
        radial-gradient(ellipse 80% 50% at 100% 100%, rgba(191, 0, 255, 0.08) 0%, transparent 48%);
    border-top: 2px solid rgba(249, 168, 212, 0.22);
}

.section--deep {
    background:
        radial-gradient(ellipse 55% 35% at 25% 90%, rgba(232, 196, 104, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #050308 0%, #0c0614 38%, #030208 100%),
        radial-gradient(ellipse 60% 40% at 18% 85%, rgba(160, 32, 240, 0.07) 0%, transparent 50%);
    border-top: 2px solid rgba(232, 196, 104, 0.22);
}

.section--magenta-rim {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    background:
        linear-gradient(125deg, rgba(191, 0, 255, 0.08) 0%, transparent 45%),
        linear-gradient(225deg, rgba(125, 211, 252, 0.05) 0%, transparent 38%),
        linear-gradient(315deg, rgba(249, 168, 212, 0.04) 0%, transparent 36%),
        #0a0612;
    border-bottom: 1px solid rgba(191, 0, 255, 0.22);
}

.section--merch-hero {
    padding: clamp(2.5rem, 6vw, 4rem) 1.25rem;
    background:
        radial-gradient(ellipse 60% 50% at 80% 0%, rgba(232, 196, 104, 0.09) 0%, transparent 45%),
        linear-gradient(180deg, #0a0814 0%, #05030a 100%);
    border-bottom: 1px solid rgba(232, 196, 104, 0.28);
}

.section--merch-hero .eyebrow {
    color: var(--accent-gold);
}

.section--merch-shelf {
    border-top: 2px solid rgba(232, 196, 104, 0.2);
}

.section__inner--merch {
    max-width: 1040px;
}

.merch-hero-cta {
    margin: 1.25rem 0 0;
}

.merch-config-hint {
    font-size: 0.88rem;
    max-width: 58ch;
}

.merch-grid {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 560px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .merch-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.merch-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: rgba(4, 3, 12, 0.92);
    border: 1px solid rgba(191, 0, 255, 0.28);
    border-left: 3px solid rgba(232, 196, 104, 0.55);
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 36px rgba(0, 0, 0, 0.4);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.merch-card:hover {
    border-color: rgba(232, 196, 104, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 40px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(232, 196, 104, 0.1);
}

.merch-card--pending {
    cursor: default;
    border-left-color: rgba(140, 130, 160, 0.4);
}

.merch-card__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #000;
    overflow: hidden;
}

.merch-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.merch-card__ph {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background:
        linear-gradient(145deg, rgba(76, 13, 107, 0.5) 0%, rgba(8, 4, 18, 0.95) 100%);
    border-bottom: 1px dashed rgba(232, 196, 104, 0.22);
}

.merch-card__body {
    padding: 1rem 1rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.merch-card__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f0e8f8;
}

.merch-card__blurb {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    flex: 1;
}

.merch-card__price {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.merch-card__pending-note {
    margin: 0;
    padding: 0 1rem 1.1rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.merch-card__pending-note--below {
    padding-top: 0.25rem;
    margin-top: -0.35rem;
}

.merch-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem 1.1rem;
    margin-top: auto;
}

.merch-card__actions .btn {
    font-size: 0.6rem;
    padding: 0.55rem 0.95rem;
}

.merch-add-cart.is-added {
    border-color: rgba(125, 211, 252, 0.55);
    color: var(--accent-cool);
    box-shadow: 0 0 14px rgba(125, 211, 252, 0.15);
}

/* Winkelwagen-pagina */
#cart .merch-flash {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cart-empty {
    position: relative;
    text-align: center;
    padding: clamp(2rem, 6vw, 3rem) 1.5rem clamp(2.25rem, 5vw, 3rem);
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 45% at 50% 0%, rgba(191, 0, 255, 0.1) 0%, transparent 55%),
        rgba(4, 3, 12, 0.75);
    border: 1px solid rgba(191, 0, 255, 0.28);
    clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 48px rgba(0, 0, 0, 0.4);
}

.cart-empty__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 196, 104, 0.12) 0%, transparent 62%);
    pointer-events: none;
}

.cart-empty__icon {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: rgba(232, 196, 104, 0.55);
    filter: drop-shadow(0 0 24px rgba(191, 0, 255, 0.25));
}

.cart-empty__lead {
    position: relative;
    margin: 0 auto 1.5rem;
    max-width: 36ch;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.cart-empty__cta {
    position: relative;
}

.cart-shell {
    padding: 0;
}

.cart-lines {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-line {
    position: relative;
    padding: 1rem 1.1rem 1.1rem;
    text-align: left;
    background: rgba(4, 3, 12, 0.88);
    border: 1px solid rgba(191, 0, 255, 0.28);
    border-left: 3px solid rgba(232, 196, 104, 0.45);
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 32px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-line:hover {
    border-color: rgba(125, 211, 252, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(191, 0, 255, 0.08);
}

.cart-line__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(191, 0, 255, 0.15);
}

.cart-line__title {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #f0e8f8;
}

.cart-line__remove {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.55rem;
    font-family: var(--font-ui);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-warm);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(249, 168, 212, 0.25);
    border-radius: 2px;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cart-line__remove:hover {
    color: #fff;
    border-color: rgba(249, 168, 212, 0.55);
    background: rgba(249, 168, 212, 0.08);
}

.cart-line__remove-x {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 400;
    opacity: 0.9;
}

.cart-line__remove-txt {
    display: none;
}

@media (min-width: 480px) {
    .cart-line__remove-txt {
        display: inline;
    }
}

.cart-line__body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 560px) {
    .cart-line__body {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.9fr);
        align-items: end;
        gap: 1.25rem;
    }
}

.cart-line__unit-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-bright);
}

.cart-line__unit {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.cart-line__sub {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent-gold);
}

.cart-line__subwrap {
    text-align: left;
}

@media (min-width: 560px) {
    .cart-line__subwrap {
        text-align: right;
    }
}

.cart-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(191, 0, 255, 0.4);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cart-stepper__btn {
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-body);
    cursor: pointer;
    background: transparent;
    border: none;
    transition: background 0.12s ease, color 0.12s ease;
}

.cart-stepper__btn:hover {
    background: rgba(191, 0, 255, 0.15);
    color: var(--accent-cool);
}

.cart-stepper__input {
    width: 2.85rem;
    min-width: 2.85rem;
    height: 2.35rem;
    padding: 0 0.2rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    color: #f0e8f8;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    border-left: 1px solid rgba(191, 0, 255, 0.25);
    border-right: 1px solid rgba(191, 0, 255, 0.25);
    box-sizing: border-box;
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-stepper__input::-webkit-outer-spin-button,
.cart-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-stepper__input:focus {
    background: rgba(191, 0, 255, 0.12);
    color: #fff;
}

.cart-stepper__input:focus-visible {
    outline: 2px solid rgba(232, 196, 104, 0.6);
    outline-offset: -2px;
}

.cart-summary {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(191, 0, 255, 0.22);
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.cart-total-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 1rem 1.15rem;
    margin-bottom: 0;
    background:
        linear-gradient(125deg, rgba(232, 196, 104, 0.08) 0%, transparent 42%),
        rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(232, 196, 104, 0.28);
    border-left: 4px solid rgba(232, 196, 104, 0.65);
    clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.cart-total-bar--excl {
    border-left-width: 3px;
    border-color: rgba(191, 0, 255, 0.32);
    background:
        linear-gradient(125deg, rgba(191, 0, 255, 0.06) 0%, transparent 45%),
        rgba(0, 0, 0, 0.3);
}

.cart-total-bar--incl {
    border-left-width: 4px;
    border-color: rgba(232, 196, 104, 0.38);
}

.cart-total-bar__label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cart-total-bar__amount {
    font-family: var(--font-ui);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent-gold);
    text-shadow: 0 0 24px rgba(232, 196, 104, 0.2);
}

.cart-total-bar__amount--excl {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
    color: rgba(245, 238, 255, 0.88);
    text-shadow: none;
}

.cart-pay-hint {
    margin: 0 0 1.1rem;
    max-width: 36rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(240, 232, 255, 0.72);
}

.cart-checkout-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cart-checkout-row .btn {
    min-width: 11rem;
}

.cart-no-keys {
    margin: 1rem 0 0;
    font-size: 0.82rem;
}

.cart-below {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 0.25rem;
}

.cart-below .cart-clear-all {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    opacity: 0.85;
}

.cart-below .cart-clear-all:hover {
    opacity: 1;
}

.section--cart {
    background:
        radial-gradient(ellipse 50% 35% at 100% 20%, rgba(125, 211, 252, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 45% 30% at 0% 80%, rgba(232, 196, 104, 0.04) 0%, transparent 48%);
}

.section__inner--cart {
    max-width: 640px;
}

.cart-page .cart-shell {
    margin-top: 0.25rem;
}

.merch-flash {
    margin: 0 auto 1.25rem;
    max-width: 960px;
    padding: 0.85rem 1.1rem;
    font-size: 0.88rem;
    border: 1px solid rgba(191, 0, 255, 0.35);
    clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    background: rgba(4, 3, 12, 0.9);
}

.merch-flash--ok {
    border-left: 3px solid rgba(125, 211, 252, 0.75);
    color: var(--text-body);
}

.merch-flash--cancel {
    border-left: 3px solid rgba(249, 168, 212, 0.55);
    color: var(--text-muted);
}

.merch-flash--return {
    border-left: 3px solid rgba(232, 196, 104, 0.65);
    color: var(--text-muted);
}

/* Hero */
.hero {
    padding: clamp(2rem, 5vw, 4rem) 1.25rem clamp(3rem, 8vw, 5rem);
}

.hero__grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr minmax(280px, 38%);
    }
}

.hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e070ff;
    text-shadow:
        3px 3px 0 #2d0a4a,
        0 0 20px rgba(191, 0, 255, 0.5);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.hero-title:hover {
    color: var(--purple-neon);
    text-shadow:
        3px 3px 0 #3d0a55,
        0 0 28px rgba(191, 0, 255, 0.65);
}

/* Hero: panel + badge + slogan (één blok, drie regels) */
.hero__panel {
    position: relative;
    z-index: 0;
    max-width: min(26rem, 100%);
    padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1.1rem, 2.8vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
    background:
        linear-gradient(155deg, rgba(160, 32, 240, 0.14) 0%, transparent 45%),
        linear-gradient(330deg, rgba(76, 13, 107, 0.2) 0%, transparent 42%),
        rgba(4, 3, 12, 0.88);
    border: 1px solid rgba(191, 0, 255, 0.28);
    border-left: 4px solid var(--purple-neon);
    clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero__panel-deco {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.hero__panel-deco--tl {
    top: 10px;
    left: 10px;
    border-top: 2px solid rgba(125, 211, 252, 0.75);
    border-left: 2px solid rgba(125, 211, 252, 0.75);
    opacity: 0.85;
}

.hero__panel-deco--br {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid rgba(249, 168, 212, 0.65);
    border-right: 2px solid rgba(249, 168, 212, 0.65);
    opacity: 0.85;
}

.hero-sub {
    margin: 0.65rem 0 0;
    line-height: 0;
}

.hero-sub__inner {
    display: inline-block;
    margin-top: 0;
    padding: 0.4rem 0.75rem;
    font-size: clamp(0.68rem, 1.6vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--purple-bright);
    border: 1px solid rgba(191, 0, 255, 0.55);
    background: linear-gradient(180deg, rgba(191, 0, 255, 0.14) 0%, rgba(0, 0, 0, 0.35) 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.slogan-unified {
    margin: 1rem 0 0;
    padding: 0.75rem 0.85rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(191, 0, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.slogan-unified__line {
    display: block;
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(0.68rem, 1.75vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.26em;
    line-height: 1.45;
    text-transform: uppercase;
    color: var(--text-body);
}

/* Slogan: koel → paars → warm (blijft bij het merk) */
.slogan-unified__line:nth-child(1) {
    color: #b8e8ff;
}

.slogan-unified__line:nth-child(2) {
    color: #f0d8ff;
}

.slogan-unified__line:nth-child(3) {
    color: #fbcfe8;
}

.hero-lead {
    position: relative;
    margin: 1.1rem 0 0;
    padding: 0.65rem 0 0.15rem 1rem;
    max-width: 38ch;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-lead::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    bottom: 0.15rem;
    width: 3px;
    border-radius: 1px;
    background: linear-gradient(
        180deg,
        var(--accent-cool-dim) 0%,
        var(--purple-neon) 45%,
        var(--accent-warm-dim) 100%
    );
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
    color: #050814;
    background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-cool-dim) 100%);
    border-color: rgba(56, 189, 248, 0.85);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #a5e8ff 0%, var(--accent-cool) 100%);
    border-color: var(--accent-cool);
    color: #050814;
}

.btn--ghost {
    color: var(--purple-bright);
    background: rgba(20, 8, 32, 0.65);
    border-color: var(--purple-neon);
}

.btn--ghost:hover {
    color: #fff;
    border-color: var(--accent-warm);
    background: rgba(50, 14, 40, 0.78);
}

.hero__poster {
    margin: 0;
    position: relative;
    border: 3px solid var(--purple-neon);
    box-shadow:
        5px 5px 0 rgba(125, 211, 252, 0.22),
        10px 10px 0 rgba(160, 32, 240, 0.28),
        0 16px 40px rgba(0, 0, 0, 0.75);
}

.hero__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(125, 211, 252, 0.06) 0%, transparent 40%, rgba(249, 168, 212, 0.05) 100%);
    pointer-events: none;
}

.hero__poster img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    image-rendering: auto;
}

/* Jagged dividers */
.lightning-divider {
    height: 24px;
    margin: 0;
    background: linear-gradient(
        90deg,
        rgba(76, 13, 107, 0.55) 0%,
        rgba(125, 211, 252, 0.35) 42%,
        rgba(191, 0, 255, 0.5) 58%,
        rgba(160, 32, 240, 0.45) 100%
    );
    clip-path: polygon(
        0 60%,
        8% 40%,
        15% 55%,
        22% 35%,
        30% 50%,
        38% 30%,
        45% 48%,
        52% 28%,
        60% 52%,
        68% 32%,
        75% 50%,
        82% 38%,
        90% 55%,
        100% 45%,
        100% 100%,
        0 100%
    );
    opacity: 1;
}

.lightning-divider--alt {
    clip-path: polygon(
        0 35%,
        10% 55%,
        18% 40%,
        26% 58%,
        34% 42%,
        42% 60%,
        50% 38%,
        58% 55%,
        66% 42%,
        74% 58%,
        82% 45%,
        92% 52%,
        100% 40%,
        100% 100%,
        0 100%
    );
    background: linear-gradient(
        90deg,
        rgba(191, 0, 255, 0.45) 0%,
        rgba(249, 168, 212, 0.35) 50%,
        rgba(232, 196, 104, 0.3) 100%
    );
}

/* Sectietitels: per blok licht verschillend, nog steeds donker/club */
.section--plum .section-title {
    color: #b8e8ff;
    text-shadow: 2px 2px 0 #1a0a24;
}

.section--violet-shift .section-title {
    color: #fbcfe8;
    text-shadow: 2px 2px 0 #1a0a24;
}

.section--deep .section-title {
    color: #fde8a8;
    text-shadow: 2px 2px 0 #1a0a24;
}

/* Typography blocks */
.section-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-ui);
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-bright);
    text-shadow: 2px 2px 0 #1a0a24;
}

.prose {
    margin: 0 0 1rem;
    color: var(--text-muted);
    max-width: 62ch;
}

.page-title {
    margin: 0.25rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f0d8ff;
    text-shadow:
        3px 3px 0 #2d0a4a,
        0 0 20px rgba(191, 0, 255, 0.32),
        0 0 28px rgba(125, 211, 252, 0.12);
}

.section--magenta-rim .eyebrow {
    color: var(--accent-cool);
}

.main--page .page-hero {
    padding-top: clamp(2rem, 6vw, 3.5rem);
}

/* Feature icons (minimal line style) */
.feature-icons {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .feature-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-icons li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
}

.icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(191, 0, 255, 0.65);
    box-shadow: none;
    position: relative;
}

.icon--lock {
    border-radius: 2px;
    border-color: rgba(125, 211, 252, 0.55);
}

.icon--lock::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    width: 12px;
    height: 8px;
    margin-left: -6px;
    border: 2px solid var(--accent-cool);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.icon--lock::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 10px;
    height: 8px;
    margin-left: -5px;
    background: var(--accent-cool-dim);
    border-radius: 1px;
}

.icon--skull {
    border-radius: 50% 50% 40% 40%;
    border-color: rgba(249, 168, 212, 0.45);
}

.icon--skull::before,
.icon--skull::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--accent-warm);
    border-radius: 50%;
}

.icon--skull::before {
    left: 6px;
}

.icon--skull::after {
    right: 6px;
}

.icon--pulse {
    border-radius: 2px;
    border-color: rgba(191, 0, 255, 0.7);
}

.icon--pulse::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
}

/* Show list */
.show-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-list__item {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.15rem;
    background: rgba(20, 12, 40, 0.75);
    border-left: 4px solid var(--purple-neon);
    border-bottom: 1px solid rgba(191, 0, 255, 0.22);
    box-shadow: none;
}

.show-list__item:nth-child(even) {
    border-left-color: var(--accent-warm-dim);
    background: rgba(22, 10, 28, 0.72);
    border-bottom-color: rgba(249, 168, 212, 0.15);
}

.show-list__date {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cool);
}

.show-list__city {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.show-list__venue {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.show-list__cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(191, 0, 255, 0.18);
}

.show-list__cta-btn {
    flex: 1 1 auto;
    width: 100%;
    max-width: 16rem;
    justify-content: center;
    text-align: center;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    padding: 0.55rem 0.85rem;
}

.contact-mail a {
    color: #fde8a8;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-shadow: none;
    border-bottom: 2px solid rgba(232, 196, 104, 0.45);
}

.contact-mail a:hover {
    color: #fff;
    border-bottom-color: var(--accent-gold);
}

/* Music page */
.embed-card {
    padding: 1.5rem;
    background: rgba(12, 6, 22, 0.9);
    border: 2px dashed rgba(140, 190, 240, 0.45);
}

.embed-placeholder {
    margin: 0 0 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.embed-hint {
    margin: 0;
    padding: 1rem;
    font-size: 0.75rem;
    overflow-x: auto;
    color: #b8e8ff;
    background: #0a0612;
    border: 1px solid rgba(125, 211, 252, 0.28);
}

.link-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-body);
    border: 2px solid var(--purple-neon);
    background: rgba(30, 6, 40, 0.5);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.chip:hover {
    background: rgba(20, 12, 36, 0.9);
}

.link-chips li:nth-child(1) .chip {
    border-color: rgba(125, 211, 252, 0.55);
    color: #dff6ff;
}

.link-chips li:nth-child(2) .chip {
    border-color: rgba(249, 168, 212, 0.55);
    color: #ffe8f3;
}

.link-chips li:nth-child(3) .chip {
    border-color: rgba(232, 196, 104, 0.5);
    color: #fff8e6;
}

/* Footer */
.site-footer {
    padding: 2rem 1.25rem 2.5rem;
    text-align: center;
    border-top: 2px solid rgba(191, 0, 255, 0.26);
    box-shadow: inset 0 1px 0 0 rgba(125, 211, 252, 0.08);
    background: linear-gradient(180deg, #020408 0%, #000 100%);
}

.footer-brand {
    margin: 0 0 0.5rem;
}

.footer-slogan {
    margin: 0 auto 0.85rem;
    max-width: 42rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.5;
}

.logo-inline {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-neon);
    text-shadow:
        2px 2px 0 #1a0528,
        0 0 14px rgba(191, 0, 255, 0.4);
}

.footer-copy {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* iCal download */
.ical-row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 1.5rem;
}

.ical-row__btn {
    flex-shrink: 0;
}

.ical-row__hint {
    margin: 0;
    flex: 1;
    min-width: min(100%, 220px);
    font-size: 0.82rem;
}

/* Social wall */
.social-intro {
    margin-bottom: 1.5rem;
}

.social-wall {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.85rem;
}

.social-wall__card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.85rem;
    text-decoration: none;
    color: var(--text-body);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left-width: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.social-wall__card:hover {
    background: rgba(20, 10, 36, 0.55);
}

.social-wall__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

/* Social: variatie, nog steeds gedempt (geen felle merk-kleuren) */
.social-wall__card--instagram {
    border-left-color: rgba(249, 168, 212, 0.75);
}

.social-wall__card--tiktok {
    border-left-color: rgba(125, 211, 252, 0.8);
}

.social-wall__card--youtube {
    border-left-color: rgba(191, 0, 255, 0.85);
}

.social-wall__card--soundcloud {
    border-left-color: rgba(232, 196, 104, 0.55);
}

.social-wall__card--spotify {
    border-left-color: rgba(167, 139, 250, 0.75);
}

.social-wall__card--facebook {
    border-left-color: rgba(96, 165, 250, 0.75);
}

/* Media: embed + gallery + live sets */
.embed-frame {
    border: 2px solid rgba(191, 0, 255, 0.45);
    background: #000;
    overflow: hidden;
}

.embed-frame iframe {
    display: block;
    width: 100%;
    vertical-align: middle;
}

.gallery-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.gallery-grid--placeholder {
    margin-top: 1rem;
}

.gallery-ph {
    min-height: 160px;
    background: linear-gradient(135deg, rgba(76, 13, 107, 0.55) 0%, rgba(8, 4, 18, 0.9) 100%);
    border: 1px dashed rgba(191, 0, 255, 0.3);
}

.gallery-item {
    overflow: hidden;
    border: 2px solid rgba(191, 0, 255, 0.25);
}

.gallery-item a {
    display: block;
    line-height: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-item a:hover img {
    transform: scale(1.04);
}

.livesets-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.livesets-list__item {
    border: 1px solid rgba(191, 0, 255, 0.25);
    background: rgba(10, 8, 24, 0.6);
}

.livesets-list__link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem 1rem;
    padding: 0.9rem 1rem;
    text-decoration: none;
    color: var(--text-body);
    transition: background 0.2s ease;
}

.livesets-list__link:hover {
    background: rgba(191, 0, 255, 0.08);
}

.livesets-list__title {
    font-weight: 700;
    letter-spacing: 0.06em;
}

.livesets-list__meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(125, 211, 252, 0.85);
}

/* 404 */
.body-404 {
    background: var(--black);
}

.main--404 {
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
}

.error-404 {
    width: 100%;
    padding: clamp(3rem, 10vw, 5rem) 1.25rem;
}

.error-404__inner {
    text-align: center;
}

.error-404 .eyebrow {
    color: var(--purple-bright);
}

.error-404__code {
    margin: 0.25rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(4rem, 18vw, 9rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--purple-neon);
    text-shadow:
        4px 4px 0 #1a0528,
        0 0 24px rgba(191, 0, 255, 0.35);
}

.error-404__text {
    margin: 0 auto 1.75rem;
    max-width: 36ch;
}

/* Bio: eigen “kast” voor meer vorm */
.bio-chassis {
    position: relative;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.1rem, 2.5vw, 1.5rem);
    background:
        linear-gradient(145deg, rgba(160, 32, 240, 0.08) 0%, transparent 50%),
        rgba(4, 3, 12, 0.55);
    border: 1px solid rgba(191, 0, 255, 0.22);
    border-right: 3px solid rgba(125, 211, 252, 0.35);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bio-chassis .section-title {
    margin-top: 0;
}

.bio-chassis .feature-icons {
    margin-bottom: 0;
}

.section__inner--social {
    max-width: 1100px;
}

.social-feeds-title {
    margin: 1.75rem 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--purple-bright);
}

.social-links-label {
    margin: 2rem 0 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.social-feeds-note {
    margin: 1rem 0 0;
    max-width: 70ch;
    font-size: 0.82rem;
}

/* Social: alleen Instagram-embedblok */
.social-ig-block {
    max-width: 100%;
}

.feed-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: rgba(3, 2, 10, 0.88);
    border: 1px solid rgba(191, 0, 255, 0.28);
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 32px rgba(0, 0, 0, 0.35);
}

.feed-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid rgba(191, 0, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
}

.feed-card__tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f0d8ff;
}

.feed-card__hint {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.feed-card__body {
    flex: 1;
    padding: 0.75rem;
    min-height: 120px;
}

.feed-card__body--instagram {
    min-height: 200px;
}

.feed-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 1rem;
    text-align: center;
    border: 1px dashed rgba(191, 0, 255, 0.25);
    background: rgba(0, 0, 0, 0.25);
}

.feed-card__placeholder p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    max-width: 32ch;
}

.feed-card__embed--raw iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 420px;
    border: 0;
}

.feed-card__embed--raw {
    overflow: auto;
    max-height: 640px;
}

/* Ankers achter sticky header */
#listen,
#streaming,
#gallery,
#livesets,
#social,
#social-feeds,
#shop,
#cart,
#bio,
#shows,
#contact {
    scroll-margin-top: 5.5rem;
}

#cookies {
    scroll-margin-top: 5.5rem;
}

/* Footer — link naar cookieverklaring */
.footer-cookie {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
}

.footer-cookie a {
    color: rgba(232, 196, 104, 0.85);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.footer-cookie a:hover {
    color: rgba(249, 214, 160, 0.95);
}

/* Cookie-toestemmingsbalk */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    padding: 1rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, rgba(12, 6, 22, 0.97) 0%, rgba(6, 3, 14, 0.99) 100%);
    border-top: 2px solid rgba(191, 0, 255, 0.45);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.55);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.cookie-banner__textwrap {
    flex: 1 1 18rem;
    min-width: min(100%, 16rem);
}

.cookie-banner__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(248, 244, 255, 0.95);
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(200, 190, 220, 0.92);
}

.cookie-banner__statement {
    margin: 0.6rem 0 0;
    font-size: 0.85rem;
}

.cookie-banner__statement a {
    color: rgba(125, 211, 252, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cookie-banner__statement a:hover {
    color: rgba(186, 230, 253, 1);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    flex-shrink: 0;
}

body.cookie-banner-visible {
    padding-bottom: 9rem;
}

@media (min-width: 48rem) {
    body.cookie-banner-visible {
        padding-bottom: 6.5rem;
    }

    .cookie-banner__inner {
        align-items: center;
    }
}

.cookie-page__back {
    margin-top: 1.5rem;
}

/* Mobiel: secties + cookiebalk respecteren safe-area; ankers onder sticky header */
@media (max-width: 767px) {
    .section {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
        padding-bottom: max(clamp(3rem, 8vw, 5.5rem), env(safe-area-inset-bottom, 0px));
    }

    .hero {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }

    .cookie-banner {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    }

    body.cookie-banner-visible {
        padding-bottom: max(10rem, calc(9rem + env(safe-area-inset-bottom, 0px)));
    }

    #listen,
    #streaming,
    #gallery,
    #livesets,
    #social,
    #social-feeds,
    #shop,
    #cart,
    #bio,
    #shows,
    #contact,
    #home,
    #cookies {
        scroll-margin-top: calc(5.5rem + env(safe-area-inset-top, 0px));
    }

    .site-footer {
        padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }

    .feed-card__embed--raw iframe {
        max-width: 100%;
    }
}
