/*
Theme Name: Assink MX
Theme URI: https://assinkmx.nl
Author: Assink MX Training & Service
Description: Custom thema voor Assink MX Training & Service - motorcross trainingen in Nederland.
Version: 3.5
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: assink-mx
*/

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --red:    #df001e;
    --red-dk: #b3001a;
    --black:  #111111;
    --dark:   #1a1a1a;
    --grey:   #f4f4f4;
    --white:  #ffffff;
    --text:   #333333;
    --muted:  #666666;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 0;
    --transition: 0.2s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* WordPress afbeelding-uitlijning (classic editor) */
.alignleft  { float: left;  display: inline; margin: 0 20px 12px 0; }
.alignright { float: right; display: inline; margin: 0 0 12px 20px; }
.aligncenter { display: block; margin: 0 auto 12px; }
.alignnone  { display: inline; }

/* Zorgt dat tekst na een float-afbeelding netjes doorloopt */
.entry-content::after {
    content: '';
    display: table;
    clear: both;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--black);
    padding: 7px 0;
    font-size: 13px;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar__social { display: flex; align-items: center; gap: 10px; }

.top-bar__social a {
    color: #aaa;
    transition: color var(--transition);
    display: flex;
    align-items: center;
}
.top-bar__social a:hover { color: var(--red); }
.top-bar__social svg { width: 16px; height: 16px; fill: currentColor; }

.top-bar__contact { display: flex; align-items: center; gap: 20px; }

.top-bar__contact a {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
    font-size: 13px;
}
.top-bar__contact a:hover { color: var(--white); }
.top-bar__contact svg { width: 14px; height: 14px; fill: var(--red); flex-shrink: 0; }

/* Taalwisselaar */
.lang-switcher {
    position: relative;
}
.lang-switcher__current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #aaa;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 8px;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}
.lang-switcher__current:hover { color: var(--white); border-color: rgba(255,255,255,.5); }
.lang-switcher__current svg { fill: currentColor; margin-left: 2px; }
.lang-switcher__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,.1);
    list-style: none;
    margin: 0;
    padding: 4px 0;
    min-width: 80px;
    z-index: 999;
}
.lang-switcher__dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: #aaa;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    transition: color var(--transition);
}
.lang-switcher__dropdown li a:hover { color: var(--white); }
.lang-switcher.is-open .lang-switcher__dropdown { display: block; }
.lang-switcher.is-open .lang-switcher__current { color: var(--white); border-color: var(--red); }

/* ==========================================
   HEADER & NAV
   ========================================== */
.site-header {
    background: var(--red);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Rechterhelft: nav + cart + hamburger als één flex-groep */
.header-right {
    display: flex;
    align-items: center;
    /* geen position:relative — mobile nav positioneert t.o.v. .site-header (sticky) */
}

/* Logo */
.site-logo a { display: flex; align-items: center; }
.site-logo img,
.site-logo .custom-logo {
    height: 58px;
    width: auto;
    display: block;
    /* Logo heeft rode achtergrond – filter weg voor transparantie-effect */
    filter: drop-shadow(0 1px 3px rgba(0,0,0,.25));
    transition: opacity .2s;
}
.site-logo a:hover img,
.site-logo a:hover .custom-logo { opacity: .88; }

/* WordPress custom logo wrapper */
.site-logo .custom-logo-link { display: flex; align-items: center; }

.logo-text {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: .04em;
}

/* Primary nav */
.main-nav ul { display: flex; align-items: stretch; }
.main-nav ul li { position: relative; }

.main-nav ul li a {
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: background var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current-menu-ancestor > a { background: rgba(0,0,0,.22); }

/* Dropdown arrow */
.main-nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,.75);
    margin-left: 4px;
}

/* Sub-menu */
.main-nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 210px;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    z-index: 200;
}
.main-nav li:hover > .sub-menu { display: block; }

.main-nav .sub-menu li a {
    color: var(--text);
    font-size: 13px;
    padding: 11px 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav .sub-menu li a:hover {
    background: var(--red);
    color: var(--white);
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: transform .3s, opacity .3s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 82vh;
    min-height: 480px;
    overflow: hidden;
    background: var(--black);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}
.slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.slide__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.48);
}

/* placeholder when no image */
.slide__bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
}

.slide__content {
    position: absolute;
    bottom: 14%;
    left: 0;
    right: 0;
    padding: 0 5%;
    max-width: 700px;
    color: var(--white);
}

.slide__title {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: .02em;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.slide__text {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 520px;
    color: rgba(255,255,255,.88);
}

/* Slider controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.slider-arrow:hover { background: var(--red); }
.slider-arrow--prev { left: 12px; }
.slider-arrow--next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.slider-dot.is-active { background: var(--red); transform: scale(1.2); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 30px;
    cursor: pointer;
    border: none;
    transition: background var(--transition), transform var(--transition);
}
.btn--red {
    background: var(--red);
    color: var(--white);
}
.btn--red:hover { background: var(--red-dk); transform: translateY(-1px); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--text); }

.btn--outline-red {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}
.btn--outline-red:hover { background: var(--red); color: var(--white); }


/* ==========================================
   SECTIONS
   ========================================== */
.section { padding: 72px 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--dark); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

.section__header { margin-bottom: 40px; }
.section__header.is-center { text-align: center; }

.section__title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 3px;
    background: var(--red);
}
.section__header.is-center .section__title::after {
    left: 50%;
    transform: translateX(-50%);
}
.section--dark .section__title::after,
.section--red .section__title::after { background: var(--white); }

.section__subtitle {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
}
.section--dark .section__subtitle,
.section--red .section__subtitle { color: rgba(255,255,255,.7); }
.section__header.is-center .section__subtitle { margin: 0 auto; }

/* ==========================================
   TRAINING CARDS
   ========================================== */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.training-card {
    background: var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.training-card__img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
}

.training-card__img-placeholder {
    width: 100%;
    height: 230px;
    background: linear-gradient(135deg, #2d0000, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-card__body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.training-card__title {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
}
.training-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--red);
}

.training-card__text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

/* ==========================================
   PRICING CARDS (dark, frontpage trainingen)
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,.08);
    border-top: 3px solid rgba(255,255,255,.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
}

/* Featured card (Summercamp) */
.pricing-card--featured {
    border-color: var(--red);
    border-top-color: var(--red);
    border-width: 2px;
    border-top-width: 3px;
}

.pricing-card--featured:hover { border-color: var(--red); }

/* "Meest gekozen" badge */
.pricing-card__badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 14px;
    white-space: nowrap;
    z-index: 2;
}

/* Photo */
.pricing-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Body */
.pricing-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Title */
.pricing-card__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .02em;
    margin: 0;
}

/* Description */
.pricing-card__desc {
    font-size: .85rem;
    color: rgba(255,255,255,.48);
    line-height: 1.6;
    margin: 0;
}

/* Price block */
.pricing-card__price {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pricing-card__price-amount {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

/* Text-only price ("Op aanvraag") — smaller so it fits */
.pricing-card__price-amount--text {
    font-size: 1.5rem;
    letter-spacing: -.01em;
}

.pricing-card__price-per {
    font-size: .7rem;
    color: rgba(255,255,255,.38);
    line-height: 1.4;
}

/* Feature list */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}

.pricing-card__features li {
    font-size: .82rem;
    color: rgba(255,255,255,.62);
    padding-left: 20px;
    position: relative;
    line-height: 1.35;
}

.pricing-card__features li::before {
    content: '\2192'; /* → */
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* CTA button */
.pricing-card__btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: #2c2c2c;
    color: rgba(255,255,255,.65);
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: background var(--transition), color var(--transition);
    margin-top: auto;
}

.pricing-card__btn:hover {
    background: #3a3a3a;
    color: #fff;
}

.pricing-card__btn--red {
    background: var(--red);
    color: #fff;
}

.pricing-card__btn--red:hover {
    background: #b30019;
    color: #fff;
}

/* Responsive */
@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================
   TRAINER SECTION
   ========================================== */
.trainer-section {
    background: var(--dark);
    color: var(--white);
    padding: 72px 0;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trainer-image {
    width: 100%;
    height: auto;
    display: block;
}

.trainer-facts {
    margin-top: 24px;
}

.trainer-facts li {
    padding: 9px 0 9px 22px;
    position: relative;
    color: #ccc;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.trainer-facts li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--red);
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
    background: var(--dark);
    padding: 58px 0 42px;
    color: var(--white);
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.08;
}

.page-hero p {
    margin-top: 12px;
    font-size: 16px;
    color: rgba(255,255,255,.7);
    max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-bottom: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb__sep { color: rgba(255,255,255,.3); }

/* ==========================================
   PAGE CONTENT
   ========================================== */
.entry-content {
    max-width: 820px;
}

.entry-content h2 {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin: 36px 0 14px;
    color: var(--black);
}
.entry-content h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 28px 0 10px;
}
.entry-content p { margin-bottom: 16px; color: var(--muted); line-height: 1.75; }
.entry-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.entry-content ul li { margin-bottom: 6px; color: var(--muted); }

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
    background: var(--red);
    padding: 50px 0;
    color: var(--white);
    text-align: center;
}
.cta-strip h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.cta-strip p {
    font-size: 16px;
    margin-bottom: 26px;
    color: rgba(255,255,255,.85);
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--black);
    color: #999;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo { display: inline-block; }
.footer-logo img,
.footer-logo .custom-logo {
    height: 48px;
    width: auto;
    opacity: .75;
    transition: opacity .2s;
    filter: brightness(0) invert(1); /* wit maken op donkere footer */
}
.footer-logo:hover img,
.footer-logo:hover .custom-logo { opacity: 1; }
.footer-logo .custom-logo-link { display: block; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.footer-col p { font-size: 14px; line-height: 1.7; }

.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-col ul li a::before {
    content: '›';
    color: var(--red);
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.08);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: #888; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* ==========================================
   AGENDA TABLE
   ========================================== */
.agenda-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.agenda-table th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 18px;
    text-align: left;
}
.agenda-table td {
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
    color: var(--text);
}
.agenda-table tr:nth-child(even) td { background: var(--grey); }
.agenda-table tr:hover td { background: #fde8e8; }

.agenda-date { display: flex; flex-direction: column; line-height: 1; }
.agenda-date__dag   { font-size: 1.4rem; font-weight: 800; }
.agenda-date__maand { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

@media (max-width: 768px) {
    .agenda-table, .agenda-table thead, .agenda-table tbody, .agenda-table tr, .agenda-table td { display: block; width: 100%; }
    .agenda-table thead { display: none; }
    .agenda-table tr {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        margin-bottom: 14px;
        padding: 14px 16px;
        box-shadow: 0 2px 6px rgba(0,0,0,.04);
    }
    .agenda-table tr:nth-child(even) td,
    .agenda-table tr:hover td { background: transparent; }
    .agenda-table td {
        padding: 6px 0;
        border: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        text-align: right;
    }
    .agenda-table td::before {
        content: attr(data-label);
        font-family: var(--font-head);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-size: .72rem;
        color: var(--muted);
        flex-shrink: 0;
    }
    .agenda-table td[data-label=""]::before { content: none; }
    .agenda-table td[data-label="Training"] { display: block; text-align: left; padding-top: 0; }
    .agenda-table td[data-label="Training"]::before { display: block; margin-bottom: 4px; }
    .agenda-table td[data-label=""] { justify-content: stretch; padding-top: 10px; margin-top: 6px; border-top: 1px solid #eee; }
    .agenda-table td[data-label=""] .btn { width: 100%; text-align: center; padding: 12px !important; font-size: .9rem !important; }
    .agenda-date { flex-direction: row; align-items: baseline; gap: 6px; }
    .agenda-date__dag   { font-size: 1.1rem; }
    .agenda-date__maand { margin-top: 0; }
}

.agenda-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.agenda-badge--groep { background: var(--red); color: var(--white); }
.agenda-badge--summer { background: #e87e00; color: var(--white); }
.agenda-badge--winter { background: #1565c0; color: var(--white); }

/* ==========================================
   CONTACT
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-form label {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .05em;
    margin-bottom: 6px;
    color: var(--dark);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--white); }
.contact-info-label {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .05em;
    color: var(--muted);
    margin-bottom: 3px;
}
.contact-info-value { font-size: 15px; color: var(--text); }
.contact-info-value a { color: var(--text); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--red); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .trainer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trainer-image { width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar__inner { justify-content: center; flex-direction: column; gap: 4px; }

    .menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--red);
        box-shadow: 0 6px 16px rgba(0,0,0,.25);
        max-height: 80vh;
        overflow-y: auto;
    }
    .main-nav.is-open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav ul li a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.12); }

    .main-nav .sub-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,.25);
        box-shadow: none;
        min-width: 0;
    }
    .main-nav li.is-open > .sub-menu { display: block; }
    .main-nav .sub-menu li a { color: rgba(255,255,255,.85); padding-left: 36px; font-size: 13px; }
    .main-nav .sub-menu li a:hover { background: rgba(0,0,0,.2); color: var(--white); }

    .hero-slider { height: 60vh; }
    .slide__content { left: 0; padding: 0 20px; }
    .slide__text { font-size: 14px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 52px 0; }
}

@media (max-width: 480px) {
    .hero-slider { height: 70vh; min-height: 400px; }
    .training-grid { grid-template-columns: 1fr; }
    .slider-arrow { display: none; }
}

/* ==========================================
   PRICING BOX
   ========================================== */
.pricing-box {
    background: var(--white);
    border: 2px solid var(--red);
    padding: 36px 40px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-box__main {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
}

.pricing-box__label {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}

.pricing-box__price {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.pricing-box__period {
    font-size: 14px;
    color: var(--muted);
}

.pricing-box__details {
    list-style: none;
    border-top: 1px solid #eee;
    padding-top: 18px;
}

.pricing-box__details li {
    font-size: 14px;
    color: var(--muted);
    padding: 5px 0 5px 18px;
    position: relative;
}

.pricing-box__details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* ==========================================
   CAMP SKILLS GRID
   ========================================== */
.camp-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.camp-skill-block {
    background: var(--white);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.camp-skill-block h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--black);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

.camp-skill-block ul {
    list-style: none;
}

.camp-skill-block ul li {
    font-size: 14px;
    color: var(--muted);
    padding: 4px 0 4px 14px;
    position: relative;
}

.camp-skill-block ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* ==========================================
   ACCOMMODATION GRID
   ========================================== */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.accommodation-card {
    border: 1px solid rgba(255,255,255,.1);
    overflow: hidden;
}

.accommodation-card__header {
    background: var(--red);
    padding: 18px 24px;
}

.accommodation-card__header h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: .04em;
}

.accommodation-card__body {
    padding: 24px;
    background: rgba(255,255,255,.04);
}

.accommodation-card__body p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 16px;
}

.accommodation-card__body h4 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255,255,255,.5);
    margin: 16px 0 8px;
}

.accommodation-card__body ul {
    list-style: none;
    margin-bottom: 12px;
}

.accommodation-card__body ul li {
    font-size: 14px;
    color: #ccc;
    padding: 4px 0 4px 16px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.accommodation-card__body ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--red);
}

.price-list {
    list-style: none !important;
}

.price-list li {
    display: flex !important;
    justify-content: space-between;
    padding: 6px 0 !important;
}

.price-list li span:last-child {
    font-weight: 600;
    color: var(--white) !important;
}

/* ==========================================
   INFO BANNER
   ========================================== */
.info-banner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff8f0;
    border-left: 4px solid var(--red);
    padding: 24px 28px;
    max-width: 720px;
}

.info-banner__icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-banner__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.info-banner h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-banner p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}




/* ==========================================
   MEC SINGLE EVENT PAGINA
   ========================================== */

/* Titel staat in ev-hero, MEC herhaalt hem — verbergen */
.mec-single-title { display: none !important; }

/* Smalle page-hero: alleen breadcrumb */
.page-hero--slim { padding: 18px 0 16px; }

/* ── ev-hero: volledige breedte hero banner ─────────────── */
.ev-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 200px;
    border-radius: 0;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Canvas: het gekleurde vlak boven de strip — ghost wordt hierin ingeknipt */
.ev-hero__canvas {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Foto-achtergrond */
.ev-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.ev-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.12) 0%, rgba(0,0,0,.50) 55%, rgba(0,0,0,.82) 100%);
    z-index: 1;
}
.ev-hero--photo::before { display: none !important; }

/* Summercamp zon */
.ev-hero__sun {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 90%;
    pointer-events: none;
    z-index: 0;
    opacity: .85;
}

/* Eyebrow + titel */
.ev-hero__body {
    position: relative;
    z-index: 2;
    padding: 40px 32px 16px;
}
.ev-hero__eyebrow {
    display: block;
    font-family: var(--font-head);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 8px;
}
.ev-hero__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    text-shadow: 0 2px 20px rgba(0,0,0,.55);
    margin: 0;
}

/* Info-strip */
.ev-hero__strip {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.52);
    backdrop-filter: blur(4px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 24px;
    padding: 12px 32px;
}
.ev-hero__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.88);
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.ev-hero__meta svg { flex-shrink: 0; opacity: .7; }

/* Watermark ghost letter — ingesloten door ev-hero__canvas, raakt strip nooit */
.ev-hero__ghost {
    position: absolute;
    bottom: -8px;
    right: 20px;
    font-family: var(--font-head);
    font-size: clamp(80px, 16vw, 180px);
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -.06em;
    color: rgba(255,255,255,.07);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

@media (max-width: 767px) {
    .ev-hero        { min-height: 160px; margin-bottom: 24px; }
    .ev-hero__body  { padding: 20px 16px 10px; }
    .ev-hero__strip { padding: 9px 16px; gap: 5px 12px; }
    .ev-hero__meta  { font-size: .65rem; }
}

/* Niveau-badge in hero-strip */
.ev-hero__level {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.28);
    margin-left: auto;
}
.ev-hero__level--beginner  { background: #2e7d32; border-color: #2e7d32; }
.ev-hero__level--gemiddeld { background: #e87e00; border-color: #e87e00; }
.ev-hero__level--gevorderd { background: var(--red); border-color: var(--red); }
.ev-hero__level--expert    { background: #6a1b9a; border-color: #6a1b9a; }

/* ==========================================
   MEC SINGLE EVENT — LAYOUT (content + sidebar)
   ========================================== */
.assink-mec-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
.assink-mec-content { min-width: 0; }
.assink-mec-sidebar { min-width: 0; }

@media (max-width: 900px) {
    .assink-mec-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   MEC SINGLE EVENT — INFO CARD (sidebar)
   ========================================== */
.assink-mec-sidebar .ev-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 4px solid var(--red);
    padding: 0;
    margin-bottom: 24px;
    position: sticky;
    top: 24px;
}

.ev-card__price {
    background: var(--dark);
    color: #fff;
    padding: 20px 22px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.ev-card__price-amount {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: -.01em;
}
.ev-card__price-unit {
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}

.ev-card__facts {
    list-style: none;
    margin: 0;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 1px solid #eee;
}
.ev-card__fact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    line-height: 1.4;
    color: var(--text);
}
.ev-card__fact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--red);
    opacity: .85;
}
.ev-card__fact a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.15);
    transition: color var(--transition), border-color var(--transition);
}
.ev-card__fact a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}
.ev-card__fact small {
    color: var(--muted);
    font-size: .82rem;
}

.ev-card__level {
    display: inline-block;
    padding: 2px 8px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
}
.ev-card__level--beginner  { background: #2e7d32; }
.ev-card__level--gemiddeld { background: #e87e00; }
.ev-card__level--gevorderd { background: var(--red); }
.ev-card__level--expert    { background: #6a1b9a; }

.ev-card__cta {
    display: block;
    margin: 18px 22px 0;
    padding: 14px 18px;
    background: var(--red);
    color: #fff !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: background var(--transition);
}
.ev-card__cta:hover { background: var(--red-dk); color: #fff !important; }

.ev-card__cta-secondary {
    display: block;
    margin: 8px 22px 0;
    padding: 10px 18px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .04em;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: border-color var(--transition), color var(--transition);
}
.ev-card__cta-secondary:hover { border-color: var(--red); color: var(--red); }

.ev-card__contact {
    margin: 18px 22px 22px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: .88rem;
    line-height: 1.5;
    color: var(--text);
}
.ev-card__contact-label {
    display: block;
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.ev-card__contact a { color: var(--text); text-decoration: none; }
.ev-card__contact a:hover { color: var(--red); }

@media (max-width: 900px) {
    .assink-mec-sidebar .ev-card { position: static; }
}

/* Tags-blok onder content (alleen tonen als gevuld) */
.assink-mec-content .mec-events-meta-group-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: .85rem;
    color: var(--muted);
}
.assink-mec-content .mec-events-meta-group-tags a {
    display: inline-block;
    padding: 3px 10px;
    margin: 0 4px 4px 0;
    background: #f4f4f4;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition);
}
.assink-mec-content .mec-events-meta-group-tags a:hover {
    background: var(--red);
    color: #fff;
}

/* ==========================================
   MEC LIJST WEERGAVE — EVENT KAARTJES
   ========================================== */

/* Maandscheider */
.mec-month-divider {
    position: relative;
    text-align: center;
    margin: 24px 0 12px;
    border: none !important;
}
.mec-month-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 0;
}
.mec-month-divider h5 {
    position: relative;
    z-index: 1;
    display: inline-block !important;
    padding: 0 16px;
    background: #fff;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0;
}
.mec-month-divider i { display: none; }

/* Titel hover */
article.mec-event-article .mec-event-title a:hover { color: var(--red); }

/* ==========================================
   AGENDA PAGINA
   ========================================== */

/* Filter balk */
.agenda-filter-bar {
    background: var(--dark);
    padding: 14px 0;
    border-bottom: 2px solid var(--red);
}
.agenda-filter-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.agenda-filter-bar__label {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .06em;
    color: #888;
}
.agenda-filter-bar__tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.agenda-tab {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: #aaa;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 7px 16px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.agenda-tab:hover { border-color: var(--red); color: var(--white); }
.agenda-tab.is-active { background: var(--red); border-color: var(--red); color: var(--white); }

/* JS-filter hulpklasse */
.agenda-hidden { display: none !important; }

/* ── ACD hero banner wrapper (event detailpagina) ── */
.event-acd-banner {
    width: 100%;
    margin-bottom: 20px;
}

/* ── ACD hero banner (event detailpagina) ── */
.acd--hero {
    height: 280px;
    border-radius: 8px;
    margin-bottom: 24px;
    padding-bottom: 44px; /* ruimte voor info-strip */
}
.acd--hero .acd__stripe { display: none; }
.acd--hero .acd__ghost { display: none; }
.acd--hero .acd__year {
    font-size: .72rem;
    letter-spacing: 4px;
    margin-bottom: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.acd--hero .acd__name {
    font-size: 2rem;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.acd--hero .acd__sun {
    height: 100%;
    opacity: .9;
}

/* Info strip */
.acd__info-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 18px;
    padding: 9px 16px;
    z-index: 3;
    backdrop-filter: blur(3px);
}
.acd__info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.92);
    font-family: var(--font-head);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}
.acd__info-item svg { opacity: .75; flex-shrink: 0; }

/* MEC sidebar info-box verbergen via JS (zie single-mec-events.php) */

/* Categorie dropdown */
.agenda-cat-select {
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 8px 36px 8px 14px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 200px;
}
.agenda-cat-select:focus {
    outline: 2px solid var(--red);
    border-color: var(--red);
}

/* ==========================================
   AGENDA — EVENTS LIJSTWEERGAVE
   ========================================== */
.agenda-events-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Maandgroep */
.agenda-month-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.agenda-month-label {
    font-family: var(--font-head);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

/* Event rij */
.agenda-event-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-left: none;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.agenda-event-row:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    transform: translateX(2px);
}

/* Gekleurde linker accent balk */
.agenda-event-row__accent {
    width: 5px;
    align-self: stretch;
    flex-shrink: 0;
}

/* Thumbnail / category design */
.agenda-event-row__thumb {
    width: 120px;
    height: 100%;
    min-height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    align-self: stretch;
}

.agenda-event-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Category design blokken ── */
.acd {
    width: 100%;
    height: 100%;
    min-height: 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 8px;
}

/* Summercamp */
.acd--summercamp {
    background: linear-gradient(135deg, #c0001a 0%, #df001e 60%, #ff2233 100%);
}

/* Diagonale racing stripes */
.acd--summercamp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent,
        transparent 6px,
        rgba(0,0,0,.1) 6px,
        rgba(0,0,0,.1) 8px
    );
    pointer-events: none;
}

/* SVG zon */
.acd__sun {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    pointer-events: none;
    z-index: 0;
}

/* Witte accent-balk onderaan */
.acd__stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.35);
}

/* Ghost watermark */
.acd__ghost {
    position: absolute;
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    color: rgba(255,255,255,.1);
    bottom: -12px;
    right: -4px;
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    user-select: none;
}

.acd__year {
    font-family: var(--font-head);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.acd__name {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    letter-spacing: .03em;
    position: relative;
    z-index: 1;
}

/* ── Wintercamp ── */
.acd--wintercamp {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 55%, #1e88e5 100%);
}
.acd--wintercamp::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent, transparent 7px,
            rgba(255,255,255,.07) 7px, rgba(255,255,255,.07) 9px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent, transparent 7px,
            rgba(255,255,255,.07) 7px, rgba(255,255,255,.07) 9px
        );
    pointer-events: none;
}

/* ── Groepstraining ── */
.acd--groepstraining {
    background: linear-gradient(160deg, #263238 0%, #37474f 55%, #546e7a 100%);
}
.acd--groepstraining::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 8px,
        rgba(255,255,255,.06) 8px, rgba(255,255,255,.06) 9px
    );
    pointer-events: none;
}

/* ── Clubtraining ── */
.acd--clubtraining {
    background: linear-gradient(135deg, #004d40 0%, #00695c 55%, #00897b 100%);
}
.acd--clubtraining::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent, transparent 7px,
        rgba(255,255,255,.07) 7px, rgba(255,255,255,.07) 9px
    );
    pointer-events: none;
}

/* ── Jeugdtraining ── */
.acd--jeugdtraining {
    background: linear-gradient(135deg, #bf5700 0%, #e87e00 55%, #ff9800 100%);
}
.acd--jeugdtraining::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 6px,
        rgba(0,0,0,.1) 6px, rgba(0,0,0,.1) 8px
    );
    pointer-events: none;
}

/* ── Rookie training ── */
.acd--rookie {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 55%, #43a047 100%);
}
.acd--rookie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent, transparent 10px,
        rgba(255,255,255,.06) 10px, rgba(255,255,255,.06) 12px
    );
    pointer-events: none;
}

/* ── MTC training ── */
.acd--mtc {
    background: linear-gradient(135deg, #4a0072 0%, #6a1b9a 55%, #8e24aa 100%);
}
.acd--mtc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -65deg,
        transparent, transparent 5px,
        rgba(255,255,255,.09) 5px, rgba(255,255,255,.09) 8px
    );
    pointer-events: none;
}

/* ── Clubwedstrijd ── */
.acd--clubwedstrijd {
    background: linear-gradient(135deg, #1a237e 0%, #283593 55%, #3949ab 100%);
}
.acd--clubwedstrijd::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent, transparent 6px,
        rgba(255,255,255,.08) 6px, rgba(255,255,255,.08) 8px
    );
    pointer-events: none;
}

/* ── MX Weekend ── */
.acd--mxweekend {
    background: linear-gradient(135deg, #bf360c 0%, #e64a19 55%, #ff5722 100%);
}
.acd--mxweekend::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent, transparent 7px,
        rgba(0,0,0,.1) 7px, rgba(0,0,0,.1) 9px
    );
    pointer-events: none;
}

/* ── Generic fallback ── */
.acd--generic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -52deg,
        transparent, transparent 6px,
        rgba(0,0,0,.1) 6px, rgba(0,0,0,.1) 8px
    );
    pointer-events: none;
}

/* Categorie badge kolom – verborgen (label vervangen door design block) */
.agenda-event-row__cat {
    display: none;
}

.agenda-event-row__badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 12px;
    white-space: nowrap;
}

/* Info kolom (titel + datum) */
.agenda-event-row__info {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.agenda-event-row__title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.agenda-event-row__date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--muted);
}

.agenda-event-row__date svg { opacity: .5; flex-shrink: 0; }

/* Rechter kolom (prijs + knop) */
.agenda-event-row__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    flex-shrink: 0;
    border-left: 1px solid #f0f0f0;
}

.agenda-event-row__price {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--black);
    white-space: nowrap;
    line-height: 1;
}

.agenda-event-row__price span {
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .05em;
}

.agenda-event-row__price--muted {
    font-size: .8rem;
    font-style: italic;
    font-weight: 800;
    color: #999;
}

.agenda-event-row__btn {
    white-space: nowrap;
    padding: 8px 18px;
    font-size: .75rem;
    font-style: italic;
    font-weight: 800;
    letter-spacing: .08em;
}

/* Responsive */
@media (max-width: 760px) {
    .agenda-event-row {
        flex-wrap: wrap;
    }
    .agenda-event-row__accent { width: 100%; height: 4px; }
    .agenda-event-row__cat { width: auto; padding: 12px 16px 0; }
    .agenda-event-row__info { padding: 8px 16px; }
    .agenda-event-row__right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        padding: 12px 16px;
        justify-content: space-between;
    }
}

/* ==========================================
   WOOCOMMERCE — ALGEMEEN
   ========================================== */
.wc-page-wrapper { padding: 48px 0 72px; }

/* ==========================================
   WOOCOMMERCE — SHOP GRID
   Scoped op .wc-page-wrapper voor hoge specificiteit.
   Werkt zowel met onze template-override als WooCommerce standaard markup.
   ========================================== */

/* Grid container */
.wc-page-wrapper ul.products,
.wc-page-wrapper .wc-products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 28px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    clear: both;
}

/* Grid items: verwijder WooCommerce float/width */
.wc-page-wrapper ul.products li.product,
.wc-page-wrapper ul.products li,
.wc-page-wrapper .wc-products-grid li,
.wc-page-wrapper .wc-products-grid > * {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    padding: 0 !important;
    clear: none !important;
}

/* Verwijder WooCommerce eigen paginatitel — we gebruiken page-hero */
.woocommerce-products-header { display: none !important; }

/* Verberg productafbeelding op single productpagina */
.single-product .woocommerce-product-gallery { display: none !important; }

/* Notices vol breed */
.woocommerce-notices-wrapper { width: 100%; }

/* Toolbar: resultaat-telling + sortering */
.wc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 12px;
}
.woocommerce-result-count { font-size: 14px; color: var(--muted); margin: 0; }
.woocommerce-ordering { margin: 0; }
.woocommerce-ordering select {
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.woocommerce-ordering select:focus { border-color: var(--red); }

.woocommerce::before,
.woocommerce::after { display: none; }


/* Berichten (notices) */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 14px 20px 14px 50px;
    margin-bottom: 24px;
    border-left: 4px solid var(--red);
    background: #fff8f8;
    position: relative;
    font-size: 14px;
    list-style: none;
}
.woocommerce-message::before { content: '✓'; position: absolute; left: 18px; color: var(--red); font-weight: 700; }
.woocommerce-info { border-color: #1565c0; background: #f0f4ff; }
.woocommerce-info::before { content: 'i'; position: absolute; left: 18px; color: #1565c0; font-weight: 700; font-style: italic; }
.woocommerce-error { border-color: #c62828; background: #fff8f8; }
.woocommerce-error::before { content: '!'; position: absolute; left: 18px; color: #c62828; font-weight: 700; }

.woocommerce-notices-wrapper { margin-bottom: 24px; }

/* WC Breadcrumbs */
.wc-breadcrumb { margin-bottom: 14px; }

/* ==========================================
   HEADER CART
   ========================================== */
/* Cart wrapper: naadloos naast de laatste nav-item */
.header-cart-wrap {
    display: flex;
    align-items: stretch; /* zelfde hoogte als nav-links */
    margin-left: 4px;
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 0 14px;
    background: transparent;
    transition: opacity var(--transition);
}
.header-cart:hover { opacity: .75; }
.header-cart svg { display: block; }

.header-cart__count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--white);
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 10px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ==========================================
   WOOCOMMERCE — PRODUCT CARD
   ========================================== */
.wc-product-card {
    background: var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s;
}
.wc-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.13);
}

.wc-product-card__img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--grey);
    aspect-ratio: 1 / 1;
    height: auto;
}
/* Eventuele tussenwrappers (figure, picture etc.) ook op vaste hoogte zetten */
.wc-product-card__img-wrap > figure,
.wc-product-card__img-wrap > picture {
    height: 100%;
    display: block;
}
.wc-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s;
    display: block;
}
.wc-product-card:hover .wc-product-card__img-wrap img { transform: scale(1.04); }

.wc-product-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d0000, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-product-card__badge {
    position: absolute;
    top: 12px;
    left: 0;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    padding: 4px 10px;
}

.wc-product-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wc-product-card__cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.wc-product-card__title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}
.wc-product-card__title a { color: var(--black); transition: color var(--transition); }
.wc-product-card__title a:hover { color: var(--red); }

.wc-product-card__price {
    margin-bottom: 16px;
    margin-top: auto;
}
.wc-product-card__price .price {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
}
.wc-product-card__price .price del {
    color: #aaa;
    font-size: 1rem;
    margin-right: 6px;
}
.wc-product-card__price .price ins { text-decoration: none; }

/* Add to cart knop in grid */
.wc-product-card .button,
.wc-product-card .add_to_cart_button {
    display: block;
    width: 100%;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 11px 16px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.wc-product-card .button:hover,
.wc-product-card .add_to_cart_button:hover { background: var(--red-dk); color: var(--white); }
.wc-product-card .added_to_cart { display: none; }

/* ==========================================
   WOOCOMMERCE — SINGLE PRODUCT
   ========================================== */
.single-product .wc-main-content .container { max-width: 1100px; }

.woocommerce-product-gallery {
    position: relative;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-product .summary {
    padding-left: 48px;
}

.single-product .product_title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}

.single-product .price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
}
.single-product .price del { color: #aaa; font-size: 1.3rem; margin-right: 8px; }
.single-product .price ins { text-decoration: none; }

.woocommerce-product-details__short-description {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

/* Hoeveelheid + toevoegen */
.single-product .quantity input {
    width: 64px;
    height: 44px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-body);
    padding: 0 8px;
    outline: none;
}
.single-product .quantity input:focus { border-color: var(--red); }

.single-product .single_add_to_cart_button {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    height: 44px;
}
.single-product .single_add_to_cart_button:hover { background: var(--red-dk); }

.single-product .cart { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }

/* Tabs (beschrijving, reviews) */
.woocommerce-tabs ul.tabs {
    list-style: none;
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 28px;
}
.woocommerce-tabs ul.tabs li { margin: 0; }
.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 22px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .05em;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--transition);
}
.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.woocommerce-Tabs-panel { font-size: 15px; color: var(--muted); line-height: 1.75; }
.woocommerce-Tabs-panel h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }

/* Product meta */
.product_meta { font-size: 13px; color: #999; margin-top: 16px; }
.product_meta span { display: block; margin-bottom: 4px; }
.product_meta a { color: var(--red); }

/* ==========================================
   WOOCOMMERCE — WINKELWAGEN
   ========================================== */
.woocommerce-cart table.cart {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-cart table.cart th {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 16px;
    font-size: 13px;
    text-align: left;
}
.woocommerce-cart table.cart td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}
.woocommerce-cart table.cart .product-thumbnail img {
    width: 72px;
    height: 72px;
    object-fit: cover;
}
.woocommerce-cart table.cart .product-name a {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--black);
}
.woocommerce-cart table.cart .product-name a:hover { color: var(--red); }
.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--red); }
.woocommerce-cart table.cart .quantity input { width: 60px; height: 38px; border: 1px solid #ddd; text-align: center; font-size: 15px; }

.cart-collaterals { margin-top: 32px; }
.cart_totals h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th,
.cart_totals table td { padding: 11px 0; border-bottom: 1px solid #eee; font-size: 15px; }
.cart_totals table th { font-weight: 600; color: var(--text); }
.cart_totals table .order-total td { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--red); }

.wc-proceed-to-checkout .checkout-button,
a.checkout-button,
.checkout-button {
    display: block !important;
    width: 100% !important;
    background: var(--red) !important;
    color: var(--white) !important;
    font-family: var(--font-head) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    padding: 16px !important;
    text-align: center !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    transition: background var(--transition) !important;
    border-radius: 0 !important;
}
.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button:hover,
.checkout-button:hover { background: var(--red-dk) !important; color: var(--white) !important; }

/* ==========================================
   WOOCOMMERCE — CHECKOUT
   ========================================== */
.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.woocommerce-checkout .form-row label {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .05em;
    margin-bottom: 5px;
    color: var(--dark);
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
    border-radius: 0;
    appearance: none;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus { border-color: var(--red); }

#place_order {
    display: block;
    width: 100%;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 16px;
}
#place_order:hover { background: var(--red-dk); }

/* Order review tabel in checkout */
#order_review table { width: 100%; border-collapse: collapse; font-size: 14px; }
#order_review table th,
#order_review table td { padding: 10px 0; border-bottom: 1px solid #eee; }
#order_review table th { font-weight: 600; }
#order_review .order-total td { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--red); }

/* ==========================================
   WOOCOMMERCE — MIJN ACCOUNT
   ========================================== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 220px;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: calc(100% - 260px);
}

.woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 11px 16px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .05em;
    color: var(--text);
    border-bottom: 1px solid #eee;
    transition: color var(--transition), background var(--transition);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--red);
    background: #fdf0f0;
}

.woocommerce-MyAccount-content h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

/* ==========================================
   WOOCOMMERCE — PAGINERING + SORTERING
   ========================================== */
.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #ddd;
    color: var(--text);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.woocommerce-pagination ul li a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.woocommerce-pagination ul li span.current { background: var(--red); color: var(--white); border-color: var(--red); }

/* ==========================================
   RESPONSIVE — WOOCOMMERCE
   ========================================== */
@media (max-width: 900px) {
    .woocommerce-checkout .col2-set { grid-template-columns: 1fr; gap: 24px; }
    .woocommerce-account .woocommerce-MyAccount-navigation { float: none; width: 100%; margin-bottom: 24px; }
    .woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; }
    .single-product .summary { padding-left: 0; margin-top: 24px; }
}

@media (max-width: 600px) {
    .wc-page-wrapper ul.products,
    .wc-page-wrapper .wc-products-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ==========================================
   UTILITIES
   ========================================== */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.text-red { color: var(--red); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================
   CONTACT PAGINA
   ========================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #ccc;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.contact-info-icon svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--red);
    display: block;
}

.contact-info-item .contact-info-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-info-item .contact-info-value {
    color: var(--text);
}

.contact-info-item .contact-info-value a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-info-item .contact-info-value a:hover { color: var(--red); }

/* CF7 formulier stijl */
.contact-form-wrap .wpcf7 { color: #ccc; }

.contact-form-wrap .wpcf7 p { margin-bottom: 18px; }

.contact-form-wrap .wpcf7 label {
    display: block;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 select,
.contact-form-wrap .wpcf7 textarea {
    width: 100%;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-bottom: 2px solid #ccc;
    color: var(--black);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color var(--transition);
    box-sizing: border-box;
}

.contact-form-wrap .wpcf7 input[type="text"]:focus,
.contact-form-wrap .wpcf7 input[type="email"]:focus,
.contact-form-wrap .wpcf7 input[type="tel"]:focus,
.contact-form-wrap .wpcf7 select:focus,
.contact-form-wrap .wpcf7 textarea:focus {
    border-color: var(--red);
    background: #fff;
}

.contact-form-wrap .wpcf7 textarea { min-height: 140px; resize: vertical; }

.contact-form-wrap .wpcf7 input[type="submit"] {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 0;
}

.contact-form-wrap .wpcf7 input[type="submit"]:hover {
    background: var(--red-dk);
}

.contact-form-wrap .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-left: 4px solid var(--red);
    font-size: .9rem;
}

.contact-form-wrap .wpcf7-mail-sent-ok {
    border-color: #2e7d32;
    background: rgba(46,125,50,.1);
    color: #81c784;
}

.contact-form-wrap .wpcf7-validation-errors,
.contact-form-wrap .wpcf7-mail-sent-ng,
.contact-form-wrap .wpcf7-spam-blocked {
    border-color: var(--red);
    background: rgba(223,0,30,.08);
    color: #ef9a9a;
}

.contact-form-wrap .wpcf7-not-valid-tip {
    color: #ef9a9a;
    font-size: .8rem;
    margin-top: 4px;
    display: block;
}

.contact-form-wrap .wpcf7-form-control-wrap { display: block; }

/* Responsive contact */
@media (max-width: 860px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   SITE HERO
   ========================================== */
.site-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: stretch;
}

.site-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
}

.site-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.15) 100%),
        linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 40%);
}

.site-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 64px;
    padding-top: 20px;
    padding-bottom: 64px;
    min-height: 78vh;
}

.site-hero__content { max-width: 660px; }

.site-hero__eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    padding-left: 14px;
    border-left: 3px solid var(--red);
    margin-bottom: 24px;
}

.site-hero__title {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 0;
}

.site-hero__title-accent {
    display: block;
    font-size: clamp(1.4rem, 3.2vw, 2.8rem);
    color: var(--red);
    letter-spacing: .06em;
    font-weight: 800;
    margin-top: 8px;
}

.site-hero__desc {
    color: rgba(255,255,255,.72);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 28px 0 40px;
    max-width: 500px;
}

.site-hero__btns {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.site-hero__btn-ghost {
    color: rgba(255,255,255,.85);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-decoration: none;
    transition: color var(--transition);
}

.site-hero__btn-ghost:hover { color: #fff; }

.site-hero__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 36px;
    max-width: 500px;
}

.site-hero__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 24px;
}

.site-hero__stat + .site-hero__stat {
    padding-left: 24px;
    padding-right: 24px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.site-hero__stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.site-hero__stat-num em {
    font-style: normal;
    font-size: 1.1rem;
    color: var(--red);
}

.site-hero__stat-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.45);
}

@media (max-width: 640px) {
    .site-hero { min-height: 100svh; }
    .site-hero__inner { min-height: 100svh; padding-top: 110px; gap: 40px; }
    .site-hero__stats { gap: 0; max-width: 100%; }
}

/* ==========================================
   SUMMERCAMP 2026 PROMO BANNER
   ========================================== */
.sc-promo {
    background: #111;
    border-top: 4px solid var(--red);
    border-bottom: 4px solid var(--red);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

/* Subtiele diagonale achtergrondstreep */
.sc-promo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -60deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,.015) 40px,
        rgba(255,255,255,.015) 42px
    );
    pointer-events: none;
}

.sc-promo__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sc-promo__left { flex: 1; min-width: 200px; }

.sc-promo__label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sc-promo__label::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: sc-pulse 1.4s ease-in-out infinite;
}

@keyframes sc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.7); }
}

.sc-promo__title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    letter-spacing: -.01em;
}

.sc-promo__title span { color: var(--red); }

.sc-promo__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sc-promo__meta span {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .05em;
}

.sc-promo__meta span + span::before {
    content: '|';
    margin-right: 16px;
    opacity: .3;
}

.sc-promo__divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

.sc-promo__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sc-promo__groups {
    display: flex;
    gap: 8px;
}

.sc-promo__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--red);
}

.sc-promo__group strong {
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}

.sc-promo__group em {
    font-style: normal;
    font-size: .68rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .04em;
}

.sc-promo__btn {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 14px 28px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition);
}

.sc-promo__btn:hover { background: #b30019; color: #fff; }

@media (max-width: 760px) {
    .sc-promo__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .sc-promo__divider { display: none; }
    .sc-promo__right { width: 100%; }
    .sc-promo__btn { width: 100%; text-align: center; }
}

/* ==========================================
   SUMMERCAMP — HERO
   ========================================== */
.sc-hero {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.sc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.75) 40%, rgba(0,0,0,.35) 100%);
    z-index: 1;
}

/* ==========================================
   SUMMERCAMP — INTRO GRID
   ========================================== */
.sc-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.sc-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 4px;
}

.sc-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.5;
}

.sc-highlight-item svg {
    flex-shrink: 0;
    fill: var(--red);
    margin-top: 2px;
}

@media (max-width: 760px) {
    .sc-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================
   SUMMERCAMP — PROGRAMMA WEKEN
   ========================================== */
.sc-weeks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

.sc-week-card {
    background: #1c1c1c !important;
    border: 1px solid rgba(255,255,255,.08);
    border-top: 3px solid var(--red);
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.sc-week-card:hover {
    background: #242424 !important;
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.16);
}

.sc-week-card__number {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.sc-week-card__dates {
    font-size: .88rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 4px;
}

.sc-week-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 8px 0 4px;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: 100%;
}

.sc-week-card__price-amt {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.sc-week-card__price-per {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
}

.sc-week-card__groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
}

/* Knop: "Inschrijven" hoofdtekst + groepsnaam subtekst */
.sc-week-card__groups .btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1;
    border-radius: 100px;
}

.sc-week-card__btn-action {
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sc-week-card__btn-group {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .75;
}

@media (max-width: 860px) {
    .sc-weeks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .sc-weeks-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   SUMMERCAMP — FLYER DOWNLOAD
   ========================================== */
.sc-flyer-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.sc-flyer-img img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e5e5e5;
}

.sc-flyer-info h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 12px;
}

.sc-flyer-info p {
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .sc-flyer-section { grid-template-columns: 1fr; }
    .sc-flyer-img { max-width: 200px; }
}

/* ----- Node-port aanpassingen ----- */
/* Footer-logo: in WP rendert the_custom_logo() de img groter; onze
   statische img viel terug op de 48px-regel. We geven 'm dezelfde
   visuele prominentie als de live site. */
.footer-logo {
    display: block;
}
.footer-logo img,
.footer-logo .custom-logo {
    height: auto;
    width: 100%;
    max-width: 220px;
    opacity: 1;
    filter: none;
}

/* Inschrijfformulier op /event/:id */
.amx-form { display: block; margin-top: 8px; }
.amx-form h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--black);
    margin: 28px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.amx-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    margin-bottom: 4px;
}
.amx-form .field { margin: 0 0 4px; }
.amx-form .field > label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 6px;
}
.amx-form .field input[type="text"],
.amx-form .field input[type="email"],
.amx-form .field input[type="tel"],
.amx-form .field input[type="number"],
.amx-form .field input[type="date"],
.amx-form .field input[type="url"],
.amx-form .field select,
.amx-form .field textarea {
    width: 100%;
    padding: 11px 13px;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    color: var(--black);
    background: var(--white);
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    transition: border-color .15s, box-shadow .15s;
}
.amx-form .field input:focus,
.amx-form .field select:focus,
.amx-form .field textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(223,0,30,.12);
}
.amx-form .field textarea {
    resize: vertical;
    min-height: 90px;
}
.amx-form .field input[type="checkbox"],
.amx-form .field input[type="radio"] {
    width: auto;
    accent-color: var(--red);
}
.amx-form .checkbox {
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
    cursor: pointer;
}
@media (max-width: 640px) {
    .amx-form .form-grid { grid-template-columns: 1fr; }
}

/* Agenda categorie-filter (dropdown) */
.agenda-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: #1c1c1c
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
        no-repeat right 14px center;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: var(--white);
    font: 600 13px/1 var(--font-head, inherit);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 11px 38px 11px 16px;
    min-width: 220px;
    cursor: pointer;
    transition: border-color .15s, background-color .15s;
}
.agenda-filter-select:hover  { border-color: var(--red); }
.agenda-filter-select:focus  { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(223,0,30,.18); }
.agenda-filter-select option { background: #1c1c1c; color: var(--white); }
@media (max-width: 640px) {
    .agenda-filter-select { width: 100%; min-width: 0; }
}

/* Betaalmethode-cards in inschrijfformulier */
.amx-pay-methods { margin: 8px 0 4px; }
.amx-pay-option {
    flex: 1 1 220px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.amx-pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.amx-pay-option:hover { border-color: var(--red); }
.amx-pay-option:has(input:checked) {
    border-color: var(--red);
    background: rgba(223,0,30,.05);
    box-shadow: 0 0 0 3px rgba(223,0,30,.12);
}
.amx-pay-option__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 48px;
    height: 32px;
}
.amx-pay-option__icon img { max-width: 100%; max-height: 100%; height: auto; display: block; }
.amx-pay-option__inner { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.amx-pay-option__name  { font-weight: 700; font-size: 15px; color: var(--black); }
.amx-pay-option__sub   { font-size: 12px; color: var(--muted); }
