/**
 * Defib24 Custom CSS v3.3.0
 *
 * Werkt met Kadence variabelen:
 *   --global-palette1 = #1A3A7C (donkerblauw)
 *   --global-palette2 = #E2192B (rood/CTA)
 *   --global-palette3 = #1A3A7C (koppen)
 *   --global-palette4 = #1A1A2E (tekst)
 *   --global-palette5 = #6B7280 (grijs)
 *   --global-palette6 = #E5E7EB (randen)
 *   --global-palette7 = #F5F7FA (achtergrond)
 *   --global-palette8 = #EBF1FF (lichtblauw)
 *   --global-palette9 = #FFFFFF (wit)
 */


/* ═══════ TOPBAR ═══════ */

.defib24-topbar {
    background: #1A3A7C !important;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 10px 24px;
    line-height: 1.4;
}


/* ═══════ SHOP HEADER ═══════ */

/* Header achtergrond en border */
body .site-header .site-main-header-wrap {
    background: #fff !important;
    border-bottom: 1px solid #E5E7EB !important;
}

/* Logo breedte */
body .site-header .site-branding img {
    max-width: 180px;
    height: auto;
}

/* Navigatie in header */
body .site-header .header-navigation .menu > li > a {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1A1A2E;
    padding: 8px 16px;
    transition: color 0.2s;
}
body .site-header .header-navigation .menu > li > a:hover,
body .site-header .header-navigation .menu > li.current-menu-item > a {
    color: #1A3A7C;
}

/* Header iconen (zoek, winkelwagen, account) */
body .site-header .header-search-toggle,
body .site-header .header-cart-button,
body .site-header .header-account-button {
    color: #1A1A2E !important;
    transition: color 0.2s;
}
body .site-header .header-search-toggle:hover,
body .site-header .header-cart-button:hover,
body .site-header .header-account-button:hover {
    color: #1A3A7C !important;
}

/* Winkelwagen icon — relative maken voor badge positie */
body .site-header .header-cart-button {
    position: relative !important;
}

/* Winkelwagen badge (aantal) — rond, gecentreerd, Kadence-proof */
body .site-header .header-cart-button .header-cart-total,
body .header-cart-button .header-cart-total {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: -6px !important;
    right: -10px !important;
    width: 20px !important;
    height: 20px !important;
    background: #E2192B !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    font-family: "Open Sans", sans-serif !important;
    border-radius: 50% !important;
    box-sizing: border-box !important;
    pointer-events: none !important;
}

/* ─── STICKY: topbar + header als twee lagen ─── */

/* Topbar plakt bovenaan */
.d24-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header plakt net onder de topbar (38px = topbar hoogte) */
body header.site-header {
    position: sticky !important;
    top: 38px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* WP admin bar correcties */
.admin-bar .d24-topbar {
    top: 32px;
}
.admin-bar header.site-header {
    top: 70px; /* 32px admin bar + 38px topbar */
}
@media (max-width: 782px) {
    .admin-bar .d24-topbar {
        top: 46px;
    }
    .admin-bar header.site-header {
        top: 84px; /* 46px admin bar + 38px topbar */
    }
}

/* Kadence eigen sticky uitzetten (wij regelen het) */
body .item-is-stuck .site-main-header-wrap,
body .site-header-inner-wrap.item-is-stuck {
    box-shadow: none !important;
}

/* Zoekmodal styling */
body .search-toggle-open .search-toggle-form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
body .search-toggle-open .search-toggle-form input[type="search"] {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
}
body .search-toggle-open .search-toggle-form input[type="search"]:focus {
    border-color: #1A3A7C;
    outline: none;
}


/* ═══════ HEADER ZOEKBALK ═══════ */

.d24-header-search {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.d24-search-form {
    display: flex;
    align-items: center;
    background: #F5F7FA;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 320px;
}
.d24-search-form:focus-within {
    border-color: #1A3A7C;
    box-shadow: 0 0 0 3px rgba(26, 58, 124, 0.1);
    background: #fff;
}
.d24-search-input {
    border: none !important;
    background: transparent !important;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #1A1A2E;
    padding: 8px 12px !important;
    flex: 1;
    outline: none !important;
    box-shadow: none !important;
    min-width: 0;
    height: auto !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}
.d24-search-input::placeholder {
    color: #9CA3AF;
    font-size: 13px;
}
.d24-search-btn {
    background: #1A3A7C !important;
    border: none !important;
    color: #fff !important;
    padding: 8px 12px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border-radius: 0 !important;
    min-height: 36px;
}
.d24-search-btn:hover {
    background: #2851A3 !important;
}
.d24-search-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive: kleinere zoekbalk op tablet */
@media (max-width: 1100px) {
    .d24-search-form {
        width: 240px;
    }
}
@media (max-width: 900px) {
    .d24-search-form {
        width: 180px;
    }
    .d24-search-input::placeholder {
        font-size: 12px;
    }
}


/* ═══════ BUTTONS ═══════ */

body .wp-block-button__link,
body .button:not(.button-secondary),
body button.button,
body input[type="submit"],
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce .button,
body .woocommerce #respond input#submit,
body .woocommerce a.button.checkout-button,
body .wc-block-components-button {
    background-color: #E2192B !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

body .wp-block-button__link:hover,
body .button:not(.button-secondary):hover,
body button.button:hover,
body input[type="submit"]:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce .button:hover,
body .woocommerce #respond input#submit:hover,
body .wc-block-components-button:hover {
    background-color: #C8101E !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Outline buttons */
body .wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent !important;
    color: #1A3A7C !important;
    border: 2px solid #1A3A7C !important;
}

body .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: #1A3A7C !important;
    color: #FFFFFF !important;
}

/* Winkelwagen button op productenlijst */
body .woocommerce ul.products li.product .button,
body .woocommerce ul.products li.product a.add_to_cart_button {
    background-color: #1A3A7C !important;
    font-size: 13px !important;
    padding: 10px 20px;
}

body .woocommerce ul.products li.product .button:hover,
body .woocommerce ul.products li.product a.add_to_cart_button:hover {
    background-color: #2851A3 !important;
}


/* ═══════ PRODUCTKAARTEN ═══════ */

.woocommerce ul.products li.product {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px;
    border: 1px solid #E5E7EB !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transform: translateY(-4px);
    border-color: #EBF1FF !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: "Nunito", sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #1A1A2E !important;
}

.woocommerce ul.products li.product .price {
    color: #1A3A7C !important;
    font-weight: 800 !important;
    font-size: 20px !important;
}

.woocommerce ul.products li.product .price del {
    color: #6B7280 !important;
    font-size: 14px !important;
}

.woocommerce ul.products li.product .price ins {
    color: #E2192B !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product a img {
    border-radius: 8px !important;
}

/* Sale badge */
body .woocommerce span.onsale {
    background-color: #E2192B !important;
    color: #fff !important;
    font-weight: 800;
    border-radius: 8px !important;
    padding: 6px 12px;
    font-size: 13px;
    min-width: auto !important;
    min-height: auto !important;
    line-height: 1.4;
}


/* ═══════ PRODUCT DETAIL ═══════ */

.woocommerce div.product .product_title {
    font-family: "Nunito", sans-serif !important;
    font-weight: 800 !important;
    font-size: 32px !important;
    color: #1A3A7C !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #1A3A7C !important;
    font-size: 28px !important;
    font-weight: 800 !important;
}

.woocommerce div.product .stock.in-stock {
    color: #00A651 !important;
    font-weight: 600;
}

.woocommerce .star-rating span::before {
    color: #FFB800 !important;
}


/* ═══════ WINKELWAGEN & CHECKOUT ═══════ */

.woocommerce-cart .cart-collaterals .cart_totals {
    background: #EBF1FF !important;
    border-radius: 16px !important;
    padding: 24px;
}

/* Fix: winkelwagen knop op productkaarten — niet te groot */
body .woocommerce ul.products li.product .button,
body .woocommerce ul.products li.product a.add_to_cart_button,
body .woocommerce ul.products li.product a.button {
    font-size: 13px !important;
    padding: 8px 16px !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

/* Fix: "In winkelwagen" tekst niet afknippen */
body .woocommerce ul.products li.product .button {
    text-align: center !important;
    width: auto !important;
}

/* Mini-cart in header — niet te groot */
body .header-cart-wrap .header-cart-button,
body .kadence-mini-cart-wrap,
body .widget_shopping_cart {
    max-width: 380px !important;
}

body .header-cart-wrap .header-cart-button .header-cart-total {
    font-size: 13px !important;
    font-weight: 600 !important;
}

/* Cart pagina — tabel netjes */
body .woocommerce-cart table.cart {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid #E5E7EB !important;
}

body .woocommerce-cart table.cart td,
body .woocommerce-cart table.cart th {
    padding: 16px !important;
    vertical-align: middle !important;
}

body .woocommerce-cart table.cart td.product-name a {
    color: #1A3A7C !important;
    font-weight: 600;
    text-decoration: none;
}

body .woocommerce-cart table.cart td.product-thumbnail img {
    border-radius: 8px !important;
    max-width: 80px !important;
}

/* WooCommerce block cart (nieuwere versies) */
body .wc-block-cart .wc-block-components-button {
    font-size: 15px !important;
    padding: 12px 24px !important;
    max-width: 100% !important;
}

body .wc-block-cart__main {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid #E5E7EB !important;
}

body .wc-block-cart__sidebar {
    background: #EBF1FF !important;
    border-radius: 16px !important;
    padding: 24px !important;
}

body .woocommerce form .form-row input.input-text,
body .woocommerce form .form-row textarea,
body .woocommerce form .form-row select {
    border: 2px solid #E5E7EB !important;
    border-radius: 8px !important;
    padding: 10px 14px;
    font-size: 14px;
}

body .woocommerce form .form-row input.input-text:focus,
body .woocommerce form .form-row textarea:focus {
    border-color: #3366CC !important;
    box-shadow: 0 0 0 3px rgba(51,102,204,0.12) !important;
    outline: none;
}

body .woocommerce #payment #place_order {
    font-size: 18px !important;
    padding: 16px 32px !important;
    width: 100%;
}


/* ═══════ FOOTER ═══════ */

/* Kadence standaard footer volledig verbergen */
body footer.site-footer {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
}
body .site-footer .site-top-footer-wrap,
body .site-footer .site-middle-footer-wrap,
body .site-footer .site-bottom-footer-wrap,
body .site-footer .site-info {
    display: none !important;
}

/* ─── DEFIB24 CUSTOM FOOTER ─── */
.d24-footer {
    background: #1A3A7C;
    color: rgba(255,255,255,0.85);
    font-family: "Open Sans", sans-serif;
    margin-top: 0;
}

.d24-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.d24-footer-title {
    font-family: "Nunito", sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 20px !important;
    letter-spacing: 0;
}

.d24-footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.d24-footer-contact span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

/* Footer menu's */
ul.d24-footer-menu,
.d24-footer-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.d24-footer-menu li,
.d24-footer-menu li {
    margin-bottom: 10px !important;
    padding: 0 !important;
}

ul.d24-footer-menu li a,
.d24-footer-menu li a,
.d24-footer-col a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

ul.d24-footer-menu li a:hover,
.d24-footer-menu li a:hover,
.d24-footer-col a:hover {
    color: #fff !important;
    padding-left: 4px;
}

/* Footer bottom bar */
.d24-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    text-align: center;
}

.d24-footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .d24-footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .d24-footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .d24-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
    }
    .d24-footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .d24-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


/* ═══════ FORMULIEREN ═══════ */

body input[type="text"],
body input[type="email"],
body input[type="tel"],
body input[type="number"],
body input[type="password"],
body input[type="date"],
body textarea,
body select {
    border: 2px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

body input:focus,
body textarea:focus,
body select:focus {
    border-color: #3366CC !important;
    box-shadow: 0 0 0 3px rgba(51,102,204,0.12) !important;
    outline: none;
}


/* ═══════ MELDINGEN ═══════ */

.woocommerce-message { border-top-color: #00A651 !important; }
.woocommerce-message::before { color: #00A651 !important; }
.woocommerce-error { border-top-color: #E2192B !important; }
.woocommerce-info { border-top-color: #3366CC !important; }


/* ═══════════════════════════════════════════════
   HOMEPAGE TEMPLATE — d24_homepage shortcode
   Kleuren: blauw, rood, wit, grijs (GEEN oranje)
   Alle blokken: border-radius: 16px
   ═══════════════════════════════════════════════ */

.d24-home { max-width: 100%; overflow: hidden; }

/* ─── HERO ─── */
.d24-hero {
    max-width: 1280px;
    margin: 24px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-height: 400px;
}
.d24-hero-main {
    background: linear-gradient(135deg, #1A3A7C 0%, #2851A3 100%);
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.d24-hero-main h1 {
    font-family: "Nunito", sans-serif !important;
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.12;
    margin-bottom: 16px;
}
.d24-hero-main p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 28px;
}
.d24-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.d24-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}
.d24-btn-red {
    background: #E2192B !important;
    color: #fff !important;
}
.d24-btn-red:hover {
    background: #C8101E !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226,25,43,0.3);
}
.d24-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.4) !important;
}
.d24-btn-outline:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.1);
}
.d24-btn-white {
    background: #fff !important;
    color: #1A3A7C !important;
}
.d24-btn-white:hover {
    background: #EBF1FF !important;
    transform: translateY(-2px);
}
.d24-btn-blue {
    background: #1A3A7C !important;
    color: #fff !important;
}
.d24-btn-blue:hover {
    background: #2851A3 !important;
    transform: translateY(-2px);
}

.d24-hero-cards {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}
.d24-hero-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.d24-hero-card:hover {
    border-color: #3366CC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.d24-hero-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}
.d24-hero-card h3 {
    font-family: "Nunito", sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1A3A7C !important;
    margin-bottom: 4px;
}
.d24-hero-card p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

/* ─── USP BAR ─── */
.d24-usp-bar {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.d24-usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-right: 1px solid #F0F0F0;
}
.d24-usp-item:last-child { border-right: none; }
.d24-usp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: #EBF1FF;
}
.d24-usp-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1A3A7C;
}
.d24-usp-item span:not(.d24-usp-icon) span,
.d24-usp-item div span {
    font-size: 12px;
    color: #6B7280;
}

/* ─── SECTIES ─── */
.d24-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}
.d24-section-grey {
    background: #F5F7FA;
    max-width: 100%;
    padding-left: calc((100% - 1232px) / 2);
    padding-right: calc((100% - 1232px) / 2);
}
.d24-section-title {
    font-family: "Nunito", sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1A3A7C !important;
    text-align: center;
    margin-bottom: 40px;
}

/* ─── MERKEN GRID ─── */
.d24-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.d24-brand-tile {
    background: #F5F7FA;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.d24-brand-tile:hover {
    border-color: #3366CC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.d24-brand-abbr {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 18px;
}
/* Merklogo als afbeelding (vervangt d24-brand-abbr) */
.d24-brand-tile img.d24-brand-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 4px;
}
.d24-brand-tile strong {
    font-size: 14px;
    color: #1A1A2E;
}
.d24-brand-tile > span:last-child {
    font-size: 12px;
    color: #6B7280;
}

/* ─── STAPPEN ─── */
.d24-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.d24-step {
    text-align: center;
    background: #F5F7FA;
    border-radius: 16px;
    padding: 40px 24px;
}
.d24-step-nr {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #1A3A7C;
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.d24-step h3 {
    font-family: "Nunito", sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #1A3A7C !important;
    margin-bottom: 8px;
}
.d24-step p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* ─── BUNDEL BANNER (rood, GEEN oranje) ─── */
.d24-banner {
    background: linear-gradient(135deg, #E2192B 0%, #C8101E 100%);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    border-radius: 0;
}
.d24-banner h2 {
    font-family: "Nunito", sans-serif !important;
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 12px;
}
.d24-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 28px;
}

/* ─── NIEUWSBRIEF ─── */
.d24-newsletter {
    background: #1A3A7C;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
}
.d24-newsletter h2 {
    font-family: "Nunito", sans-serif !important;
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 12px;
}
.d24-newsletter p {
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 28px;
}
.d24-newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 8px;
}
.d24-newsletter-form input {
    flex: 1;
    height: 48px;
    border-radius: 8px !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    padding: 0 16px;
    font-size: 14px;
}
.d24-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.d24-newsletter-form input:focus {
    border-color: #E2192B !important;
    background: rgba(255,255,255,0.12) !important;
}
.d24-newsletter-form button {
    height: 48px;
    padding: 0 24px;
    background: #E2192B !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.d24-newsletter-form button:hover {
    background: #C8101E !important;
}

/* ─── AED REGISTRATIE ─── */
.d24-register-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #EBF1FF;
    border-radius: 16px;
    padding: 48px;
}
.d24-register-cta h2 {
    font-family: "Nunito", sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1A3A7C !important;
    margin-bottom: 16px;
}
.d24-register-cta > div:first-child p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}
.d24-register-visual {
    text-align: center;
}
.d24-register-icon {
    font-size: 64px;
    margin-bottom: 20px;
}
.d24-register-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.d24-register-checks span {
    font-size: 14px;
    font-weight: 600;
    color: #1A3A7C;
}

/* ─── HOMEPAGE RESPONSIVE ─── */
@media (max-width: 1024px) {
    .d24-brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .d24-hero { grid-template-columns: 1fr; min-height: auto; }
    .d24-hero-main { padding: 32px; }
    .d24-hero-main h1 { font-size: 28px !important; }
    .d24-hero-cards { grid-template-rows: auto; }
    .d24-usp-bar { grid-template-columns: repeat(2, 1fr); }
    .d24-usp-item { border-right: none; border-bottom: 1px solid #F0F0F0; }
    .d24-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .d24-steps { grid-template-columns: 1fr; }
    .d24-register-cta { grid-template-columns: 1fr; }
    .d24-newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
    .d24-usp-bar { grid-template-columns: 1fr; }
    .d24-brands-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════ CATEGORY & ARCHIVE PAGES ═══════ */

.woocommerce-page.archive,
.woocommerce-page.taxonomy-product_cat {
    background: #F5F7FA !important;
}

.woocommerce .archive-header {
    background: #FFFFFF !important;
    padding: 40px 24px !important;
    border-bottom: 1px solid #E5E7EB !important;
    margin-bottom: 40px;
}

.woocommerce .archive-header h1 {
    font-family: "Nunito", sans-serif !important;
    font-weight: 900 !important;
    font-size: 36px !important;
    color: #1A3A7C !important;
    margin-bottom: 12px;
}

.woocommerce .archive-description {
    font-size: 16px !important;
    color: #6B7280 !important;
    line-height: 1.6;
}

.woocommerce-result-count,
.woocommerce-ordering {
    background: #FFFFFF !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    border: 1px solid #E5E7EB !important;
    font-size: 14px !important;
}

.woocommerce-result-count {
    color: #1A1A2E !important;
}

.woocommerce-ordering select {
    background: #F5F7FA !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 6px !important;
    color: #1A1A2E !important;
    padding: 6px 10px !important;
    font-size: 14px !important;
}

/* Sidebar filters */
.woocommerce .sidebar-primary .widget,
.woocommerce .sidebar-primary .woocommerce-widget-layered-nav {
    background: #FFFFFF !important;
    padding: 20px !important;
    border-radius: 12px !important;
    border: 1px solid #E5E7EB !important;
    margin-bottom: 16px;
}

.woocommerce .sidebar-primary .widget-title,
.woocommerce .sidebar-primary .woocommerce-widget-layered-nav h3 {
    font-family: "Nunito", sans-serif !important;
    font-weight: 700 !important;
    color: #1A3A7C !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
}

.woocommerce .sidebar-primary .widget ul li a,
.woocommerce .sidebar-primary .woocommerce-widget-layered-nav ul li a {
    color: #1A1A2E !important;
    font-size: 14px !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce .sidebar-primary .widget ul li a:hover,
.woocommerce .sidebar-primary .woocommerce-widget-layered-nav ul li a:hover {
    color: #1A3A7C !important;
    font-weight: 600;
}

/* Price filter slider */
.woocommerce .price-filter .price_slider {
    background: #E5E7EB !important;
    height: 4px !important;
    border-radius: 2px;
}

.woocommerce .price-filter .price_slider_amount {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 13px !important;
    color: #1A1A2E !important;
    margin-bottom: 12px;
}

.woocommerce .price-filter .price_slider_amount button {
    background: #1A3A7C !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
    cursor: pointer;
}


/* ═══════ PRODUCT DETAIL - ENHANCED ═══════ */

.woocommerce div.product {
    background: #FFFFFF !important;
}

.woocommerce .product-gallery {
    background: #F5F7FA !important;
    padding: 20px !important;
    border-radius: 16px !important;
}

.woocommerce div.product .product-gallery img,
.woocommerce div.product .woocommerce-product-gallery img {
    border-radius: 12px !important;
    display: block;
    max-width: 100%;
    height: auto;
}

.woocommerce div.product .product-gallery .woocommerce-product-gallery__wrapper {
    background: #FFFFFF !important;
    border-radius: 12px !important;
}

.woocommerce div.product .woocommerce-product-gallery__trigger {
    background: #E2192B !important;
    border-radius: 8px !important;
}
.woocommerce div.product .woocommerce-product-gallery__trigger:after {
    color: #fff !important;
}

/* SKU verbergen in hele shop */
.product_meta .sku_wrapper,
.woocommerce .product_meta .sku_wrapper {
    display: none !important;
}

.woocommerce div.product .entry-summary {
    padding: 40px 40px;
}

.woocommerce div.product .product_title {
    margin-bottom: 16px !important;
    line-height: 1.3;
}

.woocommerce div.product > .product_meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
    font-size: 13px;
    color: #6B7280;
}

.woocommerce div.product > .product_meta span {
    display: inline-block;
    margin-right: 20px;
}

.woocommerce div.product .product_meta a {
    color: #1A3A7C !important;
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    text-decoration: underline;
}

/* Stock status */
.woocommerce div.product p.stock {
    background: #EBF1FF !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    color: #1A3A7C !important;
    font-weight: 600;
    border: none !important;
}

/* Add to cart section */
.woocommerce div.product .single_add_to_cart_button,
.woocommerce div.product button.single_add_to_cart_button {
    width: 100% !important;
    padding: 18px 32px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    background-color: #E2192B !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce div.product .single_add_to_cart_button:hover,
.woocommerce div.product button.single_add_to_cart_button:hover {
    background-color: #C8101E !important;
    box-shadow: 0 4px 12px rgba(226, 25, 43, 0.3);
    transform: translateY(-2px);
}

/* Quantity selector */
.woocommerce div.product .quantity {
    margin-bottom: 20px;
}

.woocommerce div.product .quantity input.qty {
    width: 80px !important;
    padding: 8px 12px !important;
    border: 2px solid #E5E7EB !important;
    border-radius: 6px !important;
    text-align: center;
    font-size: 16px !important;
}

.woocommerce div.product .quantity input.qty:focus {
    border-color: #1A3A7C !important;
    box-shadow: 0 0 0 3px rgba(26, 58, 124, 0.12) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 40px;
}

.woocommerce div.product .woocommerce-tabs .nav-tabs {
    border-bottom: 2px solid #E5E7EB !important;
    margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .nav-tabs li {
    margin-bottom: -2px;
}

.woocommerce div.product .woocommerce-tabs .nav-tabs li a {
    background: transparent !important;
    color: #1A1A2E !important;
    border: none !important;
    padding: 12px 16px !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs .nav-tabs li a:hover {
    color: #1A3A7C !important;
}

.woocommerce div.product .woocommerce-tabs .nav-tabs li.active a {
    color: #1A3A7C !important;
    border-bottom: 2px solid #E2192B !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 18px !important;
    margin-bottom: 12px;
}

/* Reviews */
.woocommerce #reviews .comment-text {
    background: #F5F7FA !important;
    padding: 16px !important;
    border-radius: 8px !important;
    border-left: 4px solid #1A3A7C !important;
}

.woocommerce #reviews .review-meta {
    margin-bottom: 12px;
}

.woocommerce #reviews .reviewer {
    font-weight: 700 !important;
    color: #1A1A2E !important;
}

.woocommerce #reviews .review-date {
    font-size: 13px;
    color: #6B7280;
}

.woocommerce #respond textarea {
    border: 2px solid #E5E7EB !important;
    border-radius: 8px !important;
    font-family: "Open Sans", sans-serif;
}

.woocommerce #respond textarea:focus {
    border-color: #1A3A7C !important;
    box-shadow: 0 0 0 3px rgba(26, 58, 124, 0.12) !important;
}

/* Related products */
.woocommerce div.related {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.woocommerce div.related h2 {
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 24px;
}

.woocommerce div.related .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px !important;
}

/* Trust signals bar */
.d24-trust-signals {
    background: #EBF1FF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.d24-trust-signals-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #1A1A2E;
}

.d24-trust-signals-item strong {
    display: block;
    font-weight: 700;
    color: #1A3A7C;
}

/* Groene vinkjes in trust signals */
.d24-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #00A651;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

/* Breadcrumbs */
.woocommerce nav.woocommerce-breadcrumb {
    margin-bottom: 20px;
    padding: 12px 0;
    font-size: 13px;
}

.woocommerce nav.woocommerce-breadcrumb a {
    color: #1A3A7C !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce nav.woocommerce-breadcrumb a:hover {
    color: #E2192B !important;
}

.woocommerce nav.woocommerce-breadcrumb > span {
    color: #6B7280;
}


/* ═══════ RESPONSIVE ═══════ */

@media (max-width: 768px) {
    .woocommerce ul.products li.product { padding: 12px; }
    .woocommerce div.product .product_title { font-size: 26px !important; }
    .woocommerce div.product p.price { font-size: 24px !important; }
    .woocommerce div.product .entry-summary { padding: 20px 16px; }
    .d24-trust-signals { grid-template-columns: 1fr 1fr; }
    .woocommerce .archive-header { padding: 24px 16px !important; }
    .woocommerce .archive-header h1 { font-size: 28px !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   ════════════════════ V3.9.1 — TOEVOEGINGEN ═══════════════════════
   2026-05-06 — Edwin feedback verwerkt:
     #2 USP icoontjes rood (was lichtblauw)
     #3 Brands met logo-fallback (afkorting tot logo_url ingevuld)
     #4 Producten 5 kolommen + nette zij-padding
     #5 Blog "Leer más →" CTA per artikel
   ═══════════════════════════════════════════════════════════════════ */


/* ─── 1. WooCommerce prijsweergave ─── */
.woocommerce-price-suffix {
    display: block;
    font-size: 0.78em;
    font-weight: 400;
    opacity: 0.75;
    margin-top: 2px;
}


/* ─── 2. Hoofdmenu in hoofdletters ─── */
.header-menu-container .menu > li > a,
.header-navigation .menu > li > a,
nav.primary-menu > ul > li > a {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ─── 3. AED-modelpagina featured image ─── */
.aed-modelo .entry-hero img.wp-post-image,
.aed-modelo .post-thumbnail img.wp-post-image,
.aed-modelo .wp-block-post-featured-image img {
    width: 100%; max-width: 720px; height: 360px;
    object-fit: contain; display: block; margin: 0 auto 24px;
    background: #FFFFFF; border-radius: 12px;
}
@media (max-width: 768px) {
    .aed-modelo .entry-hero img.wp-post-image,
    .aed-modelo .post-thumbnail img.wp-post-image,
    .aed-modelo .wp-block-post-featured-image img { height: 240px; }
}


/* ─── 4. HOMEPAGE HERO BANNER ─── */
.d24-hero-banner {
    position: relative; width: 100vw;
    margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    min-height: 520px; display: flex; align-items: center;
    background-size: cover; background-position: center right; background-repeat: no-repeat;
    color: #ffffff; font-family: "Open Sans", system-ui, -apple-system, sans-serif; overflow: hidden;
}
.d24-hero-banner__inner { width: 100%; max-width: 1240px; margin: 0 auto; padding: 88px 24px; box-sizing: border-box; }
.d24-hero-banner__content { max-width: 640px; }
.d24-hero-banner__eyebrow {
    display: inline-block; background: #E2192B; color: #fff !important;
    font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 9999px; margin-bottom: 18px;
}
.d24-hero-banner__title {
    font-family: "Nunito", system-ui, sans-serif; font-weight: 900;
    font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.01em;
    color: #ffffff !important; margin: 0 0 16px 0;
}
.d24-hero-banner__title-accent { color: #E2192B !important; }
.d24-hero-banner__subtitle {
    font-size: clamp(16px, 1.4vw, 19px); line-height: 1.5;
    color: rgba(255,255,255,.92) !important; margin: 0 0 28px 0;
}
.d24-hero-banner__usps { list-style: none; margin: 0 0 32px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.d24-hero-banner__usps li {
    position: relative; padding-left: 32px; font-size: 15px; font-weight: 600;
    color: #fff !important; display: flex; align-items: center;
}
.d24-hero-banner__usps li::before {
    content: ""; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%); width: 22px; height: 22px;
    border-radius: 50%; background: #00A651;
}
.d24-hero-banner__usps li::after {
    content: ""; position: absolute; left: 8px; top: 50%;
    width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0;
    transform: translateY(-65%) rotate(45deg);
}
.d24-hero-banner__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.d24-hero-banner__btn {
    display: inline-block; font-family: "Open Sans", sans-serif; font-weight: 700; font-size: 16px;
    text-decoration: none; padding: 14px 30px; border-radius: 8px; border: 2px solid transparent;
    transition: background 120ms ease-out, transform 120ms ease-out;
}
.d24-hero-banner__btn--primary { background: #E2192B; color: #fff !important; }
.d24-hero-banner__btn--primary:hover { background: #C8101E; transform: translateY(-1px); }
.d24-hero-banner__btn--secondary { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.65); }
.d24-hero-banner__btn--secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; }
@media (max-width: 768px) {
    .d24-hero-banner { min-height: 460px; background-position: center; text-align: center; }
    .d24-hero-banner__inner { padding: 60px 20px; }
    .d24-hero-banner__content { margin: 0 auto; }
    .d24-hero-banner__usps, .d24-hero-banner__cta { justify-content: center; }
}


/* ─── 5. USP-bar (FEEDBACK #2: rood i.p.v. blauw) ─── */
.d24-usp-bar .d24-usp-icon {
    flex: 0 0 44px; width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #FFE5E8;          /* lichte rode tint */
    border: 1px solid #FCD0D6;    /* zachte rode rand */
    border-radius: 12px;          /* afgerond vierkant zoals v3.8.0 */
    color: #E2192B;               /* defib24 rood */
    font-size: 22px;
}


/* ─── 6. Step-nummer "Cómo funciona" ─── */
.d24-step-nr {
    width: 52px; height: 52px; border-radius: 50%;
    background: #E2192B; color: #fff;
    font-family: "Nunito", sans-serif; font-weight: 800; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px auto;
}


/* ─── 7. Knoppen-set ─── */
.d24-btn {
    display: inline-block; font-family: "Open Sans", sans-serif;
    font-weight: 700; font-size: 16px; text-decoration: none;
    padding: 14px 30px; border-radius: 8px;
    transition: background 120ms ease-out, transform 120ms ease-out;
}
.d24-btn-outline { background: transparent; color: #1A3A7C !important; border: 2px solid #1A3A7C; }
.d24-btn-outline:hover { background: #1A3A7C; color: #fff !important; }
.d24-btn-white { background: #fff; color: #1A3A7C !important; }
.d24-btn-white:hover { background: #f0f2f5; }
.d24-btn-red { background: #E2192B; color: #fff !important; }
.d24-btn-red:hover { background: #C8101E; transform: translateY(-1px); }


/* ─── 8. Sectie-titels homepage ─── */
.d24-section { padding: 60px 0; }
.d24-section-grey { background: #f7f8fa; }
.d24-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.d24-section-title {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #1A3A7C;
    margin: 0 0 36px 0;
}


/* ─── 9. Brands grid (FEEDBACK #3: logo-fallback) ─── */
.d24-brands-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.d24-brand-tile {
    background: #F5F7FA; border: 2px solid transparent; border-radius: 16px;
    padding: 24px 14px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    min-height: 140px; justify-content: center;
}
.d24-brand-tile:hover {
    border-color: #E2192B;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.d24-brand-tile img.d24-brand-logo {
    width: 120px; height: 60px; object-fit: contain; margin-bottom: 4px;
}
.d24-brand-abbr {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: "Nunito", sans-serif; font-weight: 900; font-size: 18px;
    margin-bottom: 4px;
}
.d24-brand-tile strong { font-size: 14px; color: #1A1A2E; }
.d24-brand-tile span { font-size: 12px; color: #6B7280; }
@media (max-width: 900px) { .d24-brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .d24-brands-grid { grid-template-columns: repeat(2, 1fr); } }


/* ─── 10. WooCommerce productrij (FEEDBACK #4: 5 cols + zij-padding) ─── */
.d24-section-grey .woocommerce {
    margin: 0 !important;
}
.d24-section-grey .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.d24-section-grey .woocommerce ul.products::before,
.d24-section-grey .woocommerce ul.products::after { display: none !important; }
.d24-section-grey .woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
@media (max-width: 1100px) {
    .d24-section-grey .woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 900px) {
    .d24-section-grey .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 600px) {
    .d24-section-grey .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ─── 11. Blog-grid (FEEDBACK #5: "Leer más" CTA per kaart) ─── */
.d24-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.d24-blog-card {
    background: #fff; border: 1px solid #e1e5ea; border-radius: 10px;
    overflow: hidden; padding: 0;
    display: flex; flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.d24-blog-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.08); transform: translateY(-2px); }
.d24-blog-thumb { display: block; }
.d24-blog-thumb img { width: 100%; height: auto; display: block; }
.d24-blog-body {
    padding: 16px 18px 20px;
    display: flex; flex-direction: column; flex: 1;
}
.d24-blog-title { font-size: 17px; line-height: 1.3; margin: 0 0 6px; font-weight: 700; }
.d24-blog-title a { color: #1A3A7C; text-decoration: none; }
.d24-blog-title a:hover { color: #E2192B; }
.d24-blog-date { display: block; color: #6B7280; font-size: 13px; margin-bottom: 10px; }
.d24-blog-excerpt { color: #4a5568; font-size: 14px; line-height: 1.55; margin: 0 0 14px; flex: 1; }
.d24-blog-readmore {
    color: #E2192B; font-weight: 700; font-size: 14px;
    text-decoration: none; margin-top: auto; align-self: flex-start;
    transition: color 0.15s;
}
.d24-blog-readmore:hover { color: #C8101E; text-decoration: underline; }
@media (max-width: 768px) { .d24-blog-grid { grid-template-columns: 1fr; } }


/* ─── 12. Register-CTA ─── */
.d24-register-cta { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: center; max-width: 1200px; margin: 0 auto; }
.d24-register-visual { text-align: center; }
.d24-register-icon { font-size: 64px; line-height: 1; margin-bottom: 16px; }
.d24-register-checks { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.d24-register-checks span { font-size: 14px; color: #1A3A7C; font-weight: 600; }


/* ─── 13. FAQ-accordion (Kadence-stijl) ─── */
.entry-content details[itemtype*="Question"] {
    background: var(--global-palette7, #f7f8fa);
    border: 1px solid var(--global-palette8, #e1e5ea);
    border-radius: 6px; margin-bottom: 10px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.entry-content details[itemtype*="Question"]:hover { border-color: var(--global-palette1, #1976d2); }
.entry-content details[itemtype*="Question"][open] {
    background: #fff; border-color: var(--global-palette1, #1976d2);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.entry-content details[itemtype*="Question"] summary {
    cursor: pointer; padding: 16px 52px 16px 20px;
    font-weight: 600; font-size: 1rem; color: var(--global-palette6, #222);
    position: relative; list-style: none; outline: none; user-select: none;
    transition: color 0.15s;
}
.entry-content details[itemtype*="Question"] summary:hover { color: var(--global-palette1, #1976d2); }
.entry-content details[itemtype*="Question"] summary::-webkit-details-marker { display: none; }
.entry-content details[itemtype*="Question"] summary::after {
    content: ""; position: absolute; right: 22px; top: 50%;
    width: 9px; height: 9px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: translateY(-75%) rotate(45deg);
    transition: transform 0.25s;
}
.entry-content details[itemtype*="Question"][open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.entry-content details[itemtype*="Question"] > div {
    padding: 0 20px 18px 20px; color: var(--global-palette5, #4a5568); line-height: 1.65;
}
.entry-content details[itemtype*="Question"] > div p { margin: 0; }


/* ════════════════════ EINDE V3.9.1 TOEVOEGINGEN ══════════════════ */
