/* ==========================================================================
   Header — navigatie, topbar, megamenu & mobiel menu
   ========================================================================== */
    :root {
        --header-primary: #a0c040;
        --header-primary-dark: #a0c040;
        --header-primary-light: #a0c040;
        --header-secondary: #2b2926;
        --header-white: #ffffff;
        --header-gray: #7a726a;
        --header-light-bg: #faf7f4;
        --header-surface-soft: #fdfbf9;
        --header-border: rgba(43, 41, 38, 0.08);
        --header-border-strong: rgba(43, 41, 38, 0.14);
        --header-primary-rgb: 160, 192, 64;
    }

    /* ==========================================
       HEADER WRAPPER
    ========================================== */
    .lc-header {
        position: relative;
        z-index: 9999;
        transition: none;
    }

    /* Transparent = over lichte hero. Achtergrond semi-transparant wit, tekst donker. */


    .lc-header--scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 30px rgba(43, 41, 38, 0.08);
        border-bottom: 1px solid var(--header-border);
    }

    .lc-header--scrolled .lc-topbar {
        display: none;
    }

    .lc-header--scrolled .lc-header__logo-text,
    .lc-header--transparent .lc-header__logo-text {
        color: var(--header-secondary);
    }

    .lc-header--scrolled .lc-header__nav-link,
    .lc-header--transparent .lc-header__nav-link {
        color: var(--header-secondary);
    }

    .lc-header--scrolled .lc-header__nav-link:hover,
    .lc-header--transparent .lc-header__nav-link:hover {
        color: var(--header-primary);
        background: rgba(var(--header-primary-rgb), 0.06);
    }

    .lc-header--scrolled .lc-header__icon-btn,
    .lc-header--transparent .lc-header__icon-btn {
        color: var(--header-secondary);
    }

    .lc-header--transparent .lc-header__nav-link--active::after {
        background: var(--header-primary);
    }

    .lc-header--transparent .lc-header__icon-btn:hover {
        background: rgba(var(--header-primary-rgb), 0.06);
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__usp {
        color: var(--header-gray);
    }

    .lc-header--transparent .lc-topbar__usp--link:hover {
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__usp-icon {
        color: var(--header-primary);
    }

    .lc-header--transparent .lc-topbar__divider {
        background: var(--header-border);
    }

    /* ==========================================
       TOP BAR (USP Bar) - Minimal, transparent
    ========================================== */
    .lc-topbar {
        background: transparent;
        padding: 10px 0;
        transition: all 0.3s ease;
    }

    .lc-topbar__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .lc-topbar__usps {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .lc-topbar__usp {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 500;
        color: var(--header-secondary);
    }

    .lc-topbar__usp--link {
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .lc-topbar__usp--link:hover {
        color: var(--header-primary);
    }

    .lc-topbar__usp-icon {
        width: 14px;
        height: 14px;
        color: var(--header-primary);
    }

    .lc-topbar__divider {
        width: 1px;
        height: 12px;
        background: rgba(3, 32, 56, 0.15);
    }

    /* ==========================================
       MAIN HEADER
    ========================================== */
    .lc-header__main {
        padding: 0px;
        transition: padding 0.3s ease;
    }

    .lc-header--scrolled .lc-header__main {
        padding: 12px 0;
        border-radius: 0;
    }

    .lc-header__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo */
    .lc-header__logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        z-index: 10;
    }

    .lc-header__logo img {
        height: 125px;
        width: auto;
        transition: all 0.3s ease;
    }

    .lc-header--scrolled .lc-header__logo img {
        height: 50px;
    }

    .lc-header__logo-text {
        font-size: 24px;
        font-weight: 800;
        color: var(--header-secondary);
        letter-spacing: -0.5px;
        transition: color 0.3s ease;
    }

    .lc-header__logo-accent {
        color: var(--header-primary);
    }

    /* Navigation — right-aligned */
    .lc-header__nav {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .lc-header__nav-item {
        position: relative;
    }

    .lc-header__nav-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 18px;
        font-size: 15px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .lc-header__nav-link:hover {
        color: var(--header-primary);
    }

    .lc-header__nav-link svg {
        width: 12px;
        height: 12px;
        transition: transform 0.3s ease;
    }

    .lc-header__nav-item:hover .lc-header__nav-link svg {
        transform: rotate(180deg);
    }

    /* Active indicator */
    .lc-header__nav-link--active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: linear-gradient(90deg, var(--header-primary), var(--header-primary-light));
        border-radius: 2px;
    }

    /* Right Actions */
    .lc-header__actions {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .lc-header__actions-divider {
        width: 1px;
        height: 26px;
        background: var(--header-border);
        margin: 0 8px;
        flex-shrink: 0;
    }

    /* Icon buttons (cart, account) */
    .lc-header__icon-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid transparent;
        border-radius: 12px;
        color: var(--header-secondary);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        text-decoration: none;
        position: relative;
    }

    .lc-header__icon-btn:hover,
    .lc-header__icon-btn:focus-visible {
        background: var(--header-light-bg);
        border-color: var(--header-border);
        color: var(--header-primary);
        transform: translateY(-2px);
        outline: none;
        box-shadow: 0 8px 20px rgba(var(--header-primary-rgb), 0.1);
    }

    .lc-header__icon-btn svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.3s ease;
    }

    .lc-header__icon-btn:hover svg {
        transform: scale(1.08);
    }

    /* Focus-visible keyboard outline */
    .lc-header__icon-btn:focus-visible {
        outline: 2px solid var(--header-primary);
        outline-offset: 3px;
    }

    /* Cart badge */
    .lc-header__cart-badge {
        position: absolute;
        top: 4px;
        right: 4px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        font-size: 10px;
        font-weight: 800;
        color: var(--header-white);
        background: var(--header-primary);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--header-white);
        box-shadow: 0 4px 10px rgba(var(--header-primary-rgb), 0.4);
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .lc-header__icon-btn--empty .lc-header__cart-badge {
        display: none;
    }

    /* Account dropdown wrapper */
    .lc-header__account {
        position: relative;
    }

    .lc-header__account-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 260px;
        background: var(--header-white);
        border-radius: 16px;
        box-shadow:
            0 24px 60px rgba(43, 41, 38, 0.14),
            0 4px 12px rgba(43, 41, 38, 0.06);
        border: 1px solid var(--header-border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        padding: 18px;
        z-index: 100;
        box-sizing: border-box;
    }
    .lc-header__account-dropdown *,
    .lc-header__account-dropdown *::before,
    .lc-header__account-dropdown *::after {
        box-sizing: border-box;
    }

    .lc-header__account:hover .lc-header__account-dropdown,
    .lc-header__account:focus-within .lc-header__account-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lc-header__account-dropdown::before {
        content: '';
        position: absolute;
        top: -7px;
        right: 18px;
        width: 12px;
        height: 12px;
        background: var(--header-white);
        border-top: 1px solid var(--header-border);
        border-left: 1px solid var(--header-border);
        transform: rotate(45deg);
    }

    .lc-header__account-title {
        display: block;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--header-primary);
        padding: 4px 8px 12px;
        border-bottom: 1px solid var(--header-border);
        margin-bottom: 8px;
    }

    .lc-header__account-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 12px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.25s ease;
    }

    .lc-header__account-link:hover,
    .lc-header__account-link:focus-visible {
        background: var(--header-light-bg);
        color: var(--header-primary);
        transform: translateX(3px);
        outline: none;
    }

    .lc-header__account-link svg {
        width: 16px;
        height: 16px;
        color: var(--header-primary);
        flex-shrink: 0;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .lc-header__account-footer {
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid var(--header-border);
        width: 100%;
    }

    .lc-header__account-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--header-white);
        background: var(--header-primary);
        border-radius: 10px;
        text-decoration: none;
        transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
        box-shadow: 0 6px 16px rgba(var(--header-primary-rgb), 0.25);
        box-sizing: border-box;
    }

    .lc-header__account-cta:hover {
        background: var(--header-primary-dark);
        box-shadow: 0 10px 24px rgba(var(--header-primary-rgb), 0.35);
    }

    .lc-header__account-cta svg {
        width: 14px;
        height: 14px;
    }

    .lc-header__account-link:hover svg {
        color: var(--header-primary);
    }

    .lc-header__cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        font-size: 14px;
        font-weight: 700;
        color: var(--header-white);
        background: var(--header-primary);
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 0 10px 30px rgba(var(--header-primary-rgb), 0.28);
        position: relative;
        overflow: hidden;
    }

    .lc-header__cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 50%);
        pointer-events: none;
    }

    .lc-header__cta:hover {
        transform: translateY(-3px);
        background: var(--header-primary-dark);
        box-shadow: 0 16px 44px rgba(var(--header-primary-rgb), 0.38), 0 0 0 4px rgba(var(--header-primary-rgb), 0.08);
    }

    .lc-header__cta svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
    }

    .lc-header__cta:hover svg {
        transform: translateX(4px);
    }

    /* Mobile Toggle — uniek staggered design, transparant, rechts uitgelijnd */
    .lc-header__mobile-toggle {
        display: none;
        width: 44px;
        height: 44px;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 6px;
        background: transparent;
        border: none;
        padding: 0;
        margin-left: auto;
        cursor: pointer;
    }

    .lc-header__mobile-toggle span {
        height: 2px;
        background: var(--header-secondary);
        border-radius: 2px;
        transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                    opacity 0.2s ease;
    }

    /* Unieke, ongelijke staaflengtes */
    .lc-header__mobile-toggle span:nth-child(1) { width: 28px; }
    .lc-header__mobile-toggle span:nth-child(2) { width: 17px; }
    .lc-header__mobile-toggle span:nth-child(3) { width: 23px; }

    .lc-header__mobile-toggle:hover span { width: 28px; }

    /* Actief = vloeiend kruis */
    .lc-header__mobile-toggle.is-active span { width: 26px; }
    .lc-header__mobile-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .lc-header__mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    .lc-header__mobile-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ==========================================
       MEGA MENU
    ========================================== */
    .lc-megamenu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 900px;
        background: var(--header-white);
        border-radius: 20px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        z-index: 100;
        overflow: hidden;
    }

    .lc-header__nav-item:hover .lc-megamenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Mega Menu - Wide version for vloeren */
    .lc-megamenu--wide {
        width: 1100px;
        left: -250%;
        transform: translateY(10px);
    }

    .lc-header__nav-item:hover .lc-megamenu--wide {
        transform: translateY(0);
    }

    .lc-megamenu__inner {
        display: grid;
        grid-template-columns: 350px 1fr;
    }

    /* Categories sidebar */
    .lc-megamenu__categories {
        background: var(--header-light-bg);
        padding: 20px;
        border-right: 1px solid #e5e7eb;
    }

    .lc-megamenu__category-title {
        font-size: 11px;
        font-weight: 700;
        color: var(--header-gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .lc-megamenu__category-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .lc-megamenu__category-item {
        margin-bottom: 2px;
    }

    .lc-megamenu__category-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .lc-megamenu__category-link:hover {
        background: var(--header-white);
        color: var(--header-primary);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .lc-megamenu__category-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-white);
        border-radius: 10px;
        color: var(--header-primary);
        transition: all 0.3s ease;
    }

    .lc-megamenu__category-link:hover .lc-megamenu__category-icon {
        background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
        color: var(--header-white);
    }

    .lc-megamenu__category-icon svg {
        width: 20px;
        height: 20px;
    }

    .lc-megamenu__category-arrow {
        margin-left: auto;
        width: 16px;
        height: 16px;
        color: #cbd5e1;
        transition: all 0.3s ease;
    }

    .lc-megamenu__category-link:hover .lc-megamenu__category-arrow {
        color: var(--header-primary);
        transform: translateX(4px);
    }

    /* Active category state */
    .lc-megamenu__category-link.is-active {
        background: var(--header-white);
        color: var(--header-primary);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .lc-megamenu__category-link.is-active .lc-megamenu__category-icon {
        background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
        color: var(--header-white);
    }

    .lc-megamenu__category-link.is-active .lc-megamenu__category-arrow {
        color: var(--header-primary);
        transform: translateX(4px);
    }

    /* Content area */
    .lc-megamenu__content {
        padding: 30px;
    }

    /* Featured panels - hidden by default */
    .lc-megamenu__featured-panel {
        display: none;
    }

    .lc-megamenu__featured-panel.is-active {
        display: block;
        animation: fadeInPanel 0.3s ease;
    }

    @keyframes fadeInPanel {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .lc-megamenu__section-title {
        font-size: 11px;
        font-weight: 700;
        color: var(--header-gray);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }

    /* Featured products grid */
    .lc-megamenu__featured {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 24px;
    }

    .lc-megamenu__product {
        display: block;
        text-decoration: none;
        border-radius: 16px;
        overflow: hidden;
        background: var(--header-light-bg);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .lc-megamenu__product:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(239, 122, 23, 0.12);
    }

    .lc-megamenu__product-image {
        aspect-ratio: 4/3;
        overflow: hidden;
    }

    .lc-megamenu__product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .lc-megamenu__product:hover .lc-megamenu__product-image img {
        transform: scale(1.08);
    }

    .lc-megamenu__product-info {
        padding: 16px;
    }

    .lc-megamenu__product-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--header-secondary);
        margin: 0 0 6px 0;
    }

    .lc-megamenu__product-price {
        font-size: 13px;
        font-weight: 600;
        color: var(--header-primary);
    }

    /* Bottom CTA bar */
    .lc-megamenu__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .lc-megamenu__footer-text {
        font-size: 14px;
        color: var(--header-gray);
    }

    .lc-megamenu__footer-text strong {
        color: var(--header-secondary);
    }

    .lc-megamenu__footer-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-primary);
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .lc-megamenu__footer-link:hover {
        gap: 12px;
    }

    .lc-megamenu__footer-link svg {
        width: 16px;
        height: 16px;
    }

    /* Simple mega menu (for smaller dropdowns) */
    .lc-megamenu--simple {
        width: 280px;
        padding: 16px;
    }

    .lc-megamenu--simple .lc-megamenu__inner {
        display: block;
    }

    .lc-megamenu__simple-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .lc-megamenu__simple-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .lc-megamenu__simple-link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .lc-megamenu__simple-link svg {
        width: 18px;
        height: 18px;
        color: var(--header-primary);
    }

    /* ==========================================
       MOBILE MENU
    ========================================== */
    .lc-mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: var(--header-white);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .lc-mobile-menu.is-active {
        right: 0;
    }

    .lc-mobile-menu__overlay {
        position: fixed;
        inset: 0;
        background: rgba(3, 32, 56, 0.6);
        backdrop-filter: blur(4px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .lc-mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #e5e7eb;
    }

    .lc-mobile-menu__logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        line-height: 0;
    }
    .lc-mobile-menu__logo img {
        height: 60px;
        width: auto;
        display: block;
    }

    .lc-mobile-menu__close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-light-bg);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__close:hover {
        background: var(--header-primary);
        color: var(--header-white);
    }

    .lc-mobile-menu__close svg {
        width: 20px;
        height: 20px;
    }

    /* ════════════════════════════════════════════════
       MOBILE NAV — modern editorial, magazine-stijl
       ════════════════════════════════════════════════ */
    .lc-mobile-menu__nav {
        position: relative;
        padding: 20px 18px 12px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1;
    }
    /* Subtiel visgraat-motief op de achtergrond */
    .lc-mobile-menu__nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
            135deg,
            transparent 0 22px,
            rgba(43, 41, 38, .025) 22px 23px,
            transparent 23px 45px
        );
        pointer-events: none;
        z-index: -1;
    }

    /* Elke item is een eigen card — identieke vormgeving */
    .lc-mobile-menu__item {
        position: relative;
        border: 1px solid var(--header-border);
        border-radius: 16px;
        background: var(--header-white);
        overflow: hidden;
        opacity: 0;
        transform: translateY(8px);
        transition:
            border-color .3s ease,
            box-shadow .35s ease,
            transform .35s cubic-bezier(.22,1,.36,1),
            background .25s ease,
            opacity .35s ease;
    }
    /* Stagger fade-in zodra de mobiele menu open is */
    .lc-mobile-menu.is-active .lc-mobile-menu__item {
        opacity: 1;
        transform: translateY(0);
    }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(1) { transition-delay: .05s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(2) { transition-delay: .10s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(3) { transition-delay: .15s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(4) { transition-delay: .20s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(5) { transition-delay: .25s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(6) { transition-delay: .30s; }
    .lc-mobile-menu.is-active .lc-mobile-menu__item:nth-child(7) { transition-delay: .35s; }

    /* Linker accent-stroke — verschijnt bij hover/open */
    .lc-mobile-menu__item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--header-primary);
        border-radius: 0 3px 3px 0;
        transform: translateY(-50%);
        transition: height .35s cubic-bezier(.22,1,.36,1);
        z-index: 2;
    }
    .lc-mobile-menu__item:hover {
        border-color: rgba(var(--header-primary-rgb), .35);
        box-shadow:
            0 14px 32px -22px rgba(var(--header-primary-rgb), .45),
            0 0 0 4px rgba(var(--header-primary-rgb), .04);
        transform: translateY(-1px);
    }
    .lc-mobile-menu__item:hover::before {
        height: 60%;
    }
    .lc-mobile-menu__item.is-open {
        border-color: rgba(var(--header-primary-rgb), .50);
        background:
            linear-gradient(135deg, var(--header-surface-soft) 0%, var(--header-white) 100%);
        box-shadow:
            0 18px 40px -26px rgba(var(--header-primary-rgb), .50),
            inset 0 0 0 1px rgba(var(--header-primary-rgb), .15);
    }
    .lc-mobile-menu__item.is-open::before {
        height: 80%;
    }

    /* Top-level link / toggle — identieke dimensies voor ALLE items */
    .lc-mobile-menu__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        min-height: 68px;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -.005em;
        color: var(--header-secondary);
        text-decoration: none;
        background: none;
        border: none;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        cursor: pointer;
        font-family: inherit;
        line-height: 1.3;
        transition: color .25s ease;
    }
    .lc-mobile-menu__link:hover,
    .lc-mobile-menu__link:focus-visible {
        color: var(--header-primary);
        outline: none;
    }
    /* Reset button-styling specifiek (Safari) */
    button.lc-mobile-menu__link {
        appearance: none;
        -webkit-appearance: none;
        margin: 0;
        padding: 14px 18px;
    }

    .lc-mobile-menu__link-inner {
        display: inline-flex;
        align-items: center;
        gap: 14px;
    }
    /* Branded icon-tile — identieke maat als chevron/arrow tile */
    .lc-mobile-menu__link-icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,
            rgba(var(--header-primary-rgb), .14) 0%,
            rgba(var(--header-primary-rgb), .06) 100%);
        border: 1px solid rgba(var(--header-primary-rgb), .14);
        border-radius: 12px;
        color: var(--header-primary);
        flex-shrink: 0;
        position: relative;
        transition:
            background .3s ease,
            color .3s ease,
            transform .35s cubic-bezier(.22,1,.36,1),
            box-shadow .3s ease,
            border-color .3s ease;
    }
    .lc-mobile-menu__link-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(135deg, var(--header-primary), #82a032);
        opacity: 0;
        transition: opacity .3s ease;
        z-index: 0;
    }
    .lc-mobile-menu__link-icon svg {
        width: 18px;
        height: 18px;
        position: relative;
        z-index: 1;
    }
    .lc-mobile-menu__link:hover .lc-mobile-menu__link-icon,
    .lc-mobile-menu__item.is-open .lc-mobile-menu__link-icon {
        color: var(--header-white);
        transform: rotate(-4deg) scale(1.05);
        box-shadow: 0 8px 20px -10px rgba(var(--header-primary-rgb), .55);
    }
    .lc-mobile-menu__link:hover .lc-mobile-menu__link-icon::after,
    .lc-mobile-menu__item.is-open .lc-mobile-menu__link-icon::after {
        opacity: 1;
    }

    /* Chevron / arrow tiles — identiek aan icon-tile (40×40, radius 12) */
    .lc-mobile-menu__chev,
    .lc-mobile-menu__arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        color: var(--header-secondary);
        background: var(--header-light-bg);
        border: 1px solid var(--header-border-strong);
        flex-shrink: 0;
        transition:
            transform .35s cubic-bezier(.22,1,.36,1),
            background .25s ease,
            color .25s ease,
            border-color .25s ease;
    }
    .lc-mobile-menu__chev svg,
    .lc-mobile-menu__arrow svg {
        width: 18px;
        height: 18px;
    }
    .lc-mobile-menu__chev svg path,
    .lc-mobile-menu__arrow svg path {
        stroke-width: 2.2 !important;
    }
    .lc-mobile-menu__item.is-open .lc-mobile-menu__chev {
        transform: rotate(180deg);
        background: var(--header-primary);
        color: var(--header-white);
        border-color: var(--header-primary);
    }
    .lc-mobile-menu__link:hover .lc-mobile-menu__arrow {
        background: var(--header-primary);
        color: var(--header-white);
        border-color: var(--header-primary);
        transform: translateX(4px);
    }

    /* ────────────  Submenu — moderne uitvouw  ──────────── */
    .lc-mobile-submenu {
        display: none;
        padding: 4px 18px 18px;
        margin-top: -4px;
    }
    .lc-mobile-menu__item.is-open .lc-mobile-submenu {
        display: block;
        animation: lcMmExpand .4s cubic-bezier(.22,1,.36,1) both;
    }
    @keyframes lcMmExpand {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .lc-mobile-submenu__group + .lc-mobile-submenu__group {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--header-border);
    }
    .lc-mobile-submenu__group-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 4px 0 12px;
        padding-left: 2px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .24em;
        text-transform: uppercase;
        color: var(--header-primary);
    }
    .lc-mobile-submenu__group-title::before {
        content: '';
        width: 18px;
        height: 1px;
        background: var(--header-primary);
        flex-shrink: 0;
    }
    .lc-mobile-submenu__group-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, rgba(var(--header-primary-rgb), .3), transparent);
        margin-left: 4px;
    }

    .lc-mobile-submenu__link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition:
            background .25s ease,
            color .25s ease,
            transform .25s ease,
            padding-left .25s ease;
        position: relative;
    }
    .lc-mobile-submenu__link::before {
        content: '';
        width: 6px;
        height: 1px;
        background: currentColor;
        opacity: .45;
        flex-shrink: 0;
        transition: width .25s ease, opacity .25s ease;
    }
    .lc-mobile-submenu__link:hover {
        background: rgba(var(--header-primary-rgb), .08);
        color: var(--header-primary);
        padding-left: 16px;
    }
    .lc-mobile-submenu__link:hover::before {
        width: 16px;
        opacity: 1;
    }

    /* Afspraak-CTA wrapper */
    .lc-mobile-menu__cta-wrap {
        padding: 22px 24px 18px;
    }
    .lc-mobile-menu__cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile contact — gebrande pills */
    .lc-mobile-menu__contact {
        padding: 20px 24px 28px;
        border-top: 1px solid var(--header-border);
        background: var(--header-surface-soft);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .lc-mobile-menu__contact-label {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--header-gray);
        margin-bottom: 4px;
    }
    .lc-mobile-menu__contact-item {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 12px 14px;
        background: var(--header-white);
        border: 1px solid var(--header-border);
        border-radius: 12px;
        text-decoration: none;
        color: var(--header-secondary);
        transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .lc-mobile-menu__contact-item:hover {
        border-color: rgba(var(--header-primary-rgb), .35);
        transform: translateY(-1px);
        box-shadow: 0 10px 22px -14px rgba(var(--header-primary-rgb), .35);
    }
    .lc-mobile-menu__contact-ico {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(var(--header-primary-rgb), .12);
        color: var(--header-primary);
        border-radius: 10px;
    }
    .lc-mobile-menu__contact-ico svg {
        width: 20px;
        height: 20px;
    }
    .lc-mobile-menu__contact-text {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }
    .lc-mobile-menu__contact-kicker {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--header-gray);
    }
    .lc-mobile-menu__contact-value {
        font-size: 14px;
        font-weight: 700;
        color: var(--header-secondary);
    }

    /* Mobile menu actions (cart & account) */
    .lc-mobile-menu__actions {
        display: flex;
        gap: 12px;
        padding: 0 24px;
        margin-bottom: 16px;
    }

    .lc-mobile-menu__action-link {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        background: var(--header-light-bg);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .lc-mobile-menu__action-link:hover {
        background: rgba(239, 122, 23, 0.1);
        color: var(--header-primary);
    }

    .lc-mobile-menu__action-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-white);
        border-radius: 10px;
        color: var(--header-primary);
        position: relative;
    }

    .lc-mobile-menu__action-icon svg {
        width: 18px;
        height: 18px;
    }

    .lc-mobile-menu__action-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        font-size: 10px;
        font-weight: 700;
        color: var(--header-white);
        background: var(--header-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1200px) {
        .lc-megamenu--wide {
            width: 900px;
        }

        .lc-megamenu__featured {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 1024px) {
        .lc-header__nav,
        .lc-header__account-dropdown {
            display: none;
        }

        .lc-header__mobile-toggle {
            display: flex;
        }

        .lc-topbar {
            display: none;
        }

        .lc-header__logo img {
            height: 78px;
        }
    }

    @media (max-width: 768px) {
        .lc-topbar {
            display: none;
        }

        .lc-header__container {
            padding: 0 18px;
        }

        .lc-header__cta {
            display: none;
        }

        .lc-header__logo img {
            height: 62px;
        }

        .lc-mobile-menu {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .lc-header__logo img {
            height: 50px;
        }

        .lc-header__logo-text {
            font-size: 20px;
        }
    }

    /* Header spacer */
    .lc-header-spacer {
        height: 120px;
    }

    @media (max-width: 1024px) {
        .lc-header-spacer {
            height: 80px;
        }
    }

    @media (max-width: 768px) {
        .lc-header-spacer {
            height: 70px;
        }
    }

    /* ==========================================
       GANEZZA MEGAMENU — Hero Slider aesthetic
       Warm cream + pink accents, SVG icon tiles
       in the products column + promo panel right.
    ========================================== */
    .lc-header__nav {
        position: relative;
    }

    .lc-header__nav-item--static {
        position: static;
    }

    .lc-megamenu--azr {
        width: min(1340px, calc(100vw - 40px));
        left: 50%;
        top: calc(70% + 16px);
        transform: translateX(-50%) translateY(10px);
        padding: 0;
        background: var(--header-white);
        border-radius: 24px;
        box-shadow:
            0 40px 80px rgba(43, 41, 38, 0.14),
            0 8px 20px rgba(43, 41, 38, 0.06);
        border: 1px solid var(--header-border);
        overflow: hidden;
    }

    .lc-header__nav-item--static:hover .lc-megamenu--azr,
    .lc-header__nav-item--static:focus-within .lc-megamenu--azr {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    /* Tiny arrow pointer (decor) */
    .lc-megamenu--azr::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        width: 14px;
        height: 14px;
        background: var(--header-white);
        transform: translateX(-50%) rotate(45deg);
        border-top: 1px solid var(--header-border);
        border-left: 1px solid var(--header-border);
        border-radius: 2px;
    }

    .lc-megamenu--azr .lc-megamenu__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 0;
        padding: 0;
        position: relative;
    }

    /* ── LEFT: link columns ── */
    .lc-megamenu__cols {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
        padding: 36px 40px 40px;
        position: relative;
    }

    .lc-megamenu__col {
        min-width: 0;
    }

    .lc-megamenu__col-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #7a726a;
        margin: 0 0 18px 0;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--header-border);
    }

    .lc-megamenu__col-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 2px;
    }

    /* ── Products column: 2-col grid of icon tiles ── */
    .lc-megamenu__col--products .lc-megamenu__col-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 14px;
    }

    .lc-megamenu__col--products .lc-megamenu__col-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 9px 10px 9px 8px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .lc-megamenu__col--products .lc-megamenu__col-link::before {
        display: none;
    }

    .lc-megamenu__col-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-light-bg);
        border: 1px solid var(--header-border);
        border-radius: 10px;
        color: #7a726a;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .lc-megamenu__col-icon svg {
        width: 18px;
        height: 18px;
        stroke-width: 1.6;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .lc-megamenu__col--products .lc-megamenu__col-link:hover,
    .lc-megamenu__col--products .lc-megamenu__col-link:focus-visible {
        background: var(--header-light-bg);
        color: var(--header-primary);
        outline: none;
        transform: none;
    }
    .lc-megamenu__col--products .lc-megamenu__col-link:hover .lc-megamenu__col-icon,
    .lc-megamenu__col--products .lc-megamenu__col-link:focus-visible .lc-megamenu__col-icon {
        background: var(--header-primary);
        color: var(--header-white);
        border-color: var(--header-primary);
        transform: rotate(-4deg) scale(1.05);
        box-shadow: 0 6px 16px rgba(var(--header-primary-rgb), 0.3);
    }

    /* ── Standard (non-products) column links ── */
    .lc-megamenu__col-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        color: var(--header-secondary);
        text-decoration: none;
        transition: color 0.25s ease, transform 0.25s ease;
    }
    .lc-megamenu__col-link::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #e5e1da;
        flex-shrink: 0;
        transition: all 0.25s ease;
    }
    .lc-megamenu__col-link:hover,
    .lc-megamenu__col-link:focus-visible {
        color: var(--header-primary);
        transform: translateX(4px);
        outline: none;
    }
    .lc-megamenu__col-link:hover::before,
    .lc-megamenu__col-link:focus-visible::before {
        background: var(--header-primary);
        transform: scale(1.4);
    }
    .lc-megamenu__col-link--sub {
        font-size: 13px;
        padding-left: 14px;
        color: var(--header-gray);
    }

    /* Advies arrow variant */
    .lc-megamenu__col--advice .lc-megamenu__col-link {
        padding: 10px 0;
    }
    .lc-megamenu__col--advice .lc-megamenu__col-link::before {
        display: none;
    }
    .lc-megamenu__col--advice .lc-megamenu__col-link::after {
        content: '';
        width: 14px;
        height: 1px;
        background: var(--header-border-strong);
        margin-left: auto;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    .lc-megamenu__col--advice .lc-megamenu__col-link:hover::after,
    .lc-megamenu__col--advice .lc-megamenu__col-link:focus-visible::after {
        background: var(--header-primary);
        width: 22px;
    }

    /* ══════════════════════════════════
       PROMO PANEL (right side)
    ══════════════════════════════════ */
    .lc-megamenu__promo {
        position: relative;
        padding: 36px 36px 40px;
        background: var(--header-light-bg);
        border-left: 1px solid var(--header-border);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    /* decorative glow */
    .lc-megamenu__promo::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(var(--header-primary-rgb), 0.12), transparent 70%);
        pointer-events: none;
    }

    .lc-megamenu__promo-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        align-self: flex-start;
        padding: 6px 14px;
        background: var(--header-white);
        border: 1px solid rgba(var(--header-primary-rgb), 0.2);
        border-radius: 100px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: var(--header-primary);
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
    }
    .lc-megamenu__promo-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--header-primary);
        box-shadow: 0 0 8px rgba(var(--header-primary-rgb), 0.5);
    }

    .lc-megamenu__promo-image {
        position: relative;
        width: 100%;
        height: 150px;
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 18px;
        box-shadow: 0 14px 32px rgba(43, 41, 38, 0.12);
        z-index: 1;
    }
    .lc-megamenu__promo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .lc-megamenu__promo-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(43, 41, 38, 0.2));
        pointer-events: none;
    }
    .lc-megamenu__promo-image--placeholder {
        background: linear-gradient(135deg, var(--header-primary), var(--header-primary-dark));
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.3);
    }
    .lc-megamenu__promo-image--placeholder svg {
        width: 56px;
        height: 56px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .lc-megamenu__promo-title {
        font-size: 19px;
        font-weight: 800;
        line-height: 1.25;
        color: var(--header-secondary);
        margin: 0 0 10px 0;
        letter-spacing: -0.4px;
        position: relative;
        z-index: 1;
    }

    .lc-megamenu__promo-desc {
        font-size: 13px;
        line-height: 1.6;
        color: var(--header-gray);
        margin: 0 0 18px 0;
        position: relative;
        z-index: 1;
    }

    .lc-megamenu__promo-usps {
        list-style: none;
        margin: 0 0 22px 0;
        padding: 0;
        display: grid;
        gap: 10px;
        position: relative;
        z-index: 1;
    }
    .lc-megamenu__promo-usp {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        font-weight: 600;
        color: var(--header-secondary);
    }
    .lc-megamenu__promo-usp-check {
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--header-white);
        border: 1px solid rgba(var(--header-primary-rgb), 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--header-primary);
    }
    .lc-megamenu__promo-usp-check svg {
        width: 10px;
        height: 10px;
        fill: none;
        stroke: currentColor;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .lc-megamenu__promo-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 22px;
        background: var(--header-primary);
        color: var(--header-white);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        box-shadow: 0 10px 28px rgba(var(--header-primary-rgb), 0.3);
        position: relative;
        overflow: hidden;
        margin-top: auto;
    }
    .lc-megamenu__promo-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 50%);
        pointer-events: none;
    }
    .lc-megamenu__promo-cta:hover {
        background: var(--header-primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(var(--header-primary-rgb), 0.4);
    }
    .lc-megamenu__promo-cta svg {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }
    .lc-megamenu__promo-cta:hover svg {
        transform: translateX(4px);
    }

    /* Keyboard focus reset for nav link */
    .lc-header__nav-link:focus-visible {
        outline: 2px solid var(--header-primary);
        outline-offset: 3px;
    }

    /* Responsive stacks */
    @media (max-width: 1380px) {
        .lc-megamenu--azr { width: min(1220px, calc(100vw - 40px)); }
        .lc-megamenu__cols { padding: 32px 32px 36px; gap: 28px; }
        .lc-megamenu__promo { padding: 32px 28px 36px; }
    }
    @media (max-width: 1200px) {
        .lc-megamenu--azr .lc-megamenu__inner {
            grid-template-columns: minmax(0, 1fr) 280px;
        }
        .lc-megamenu__cols { grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
    }
    @media (max-width: 1100px) {
        .lc-megamenu--azr { width: min(900px, calc(100vw - 40px)); }
        .lc-megamenu--azr .lc-megamenu__inner {
            grid-template-columns: 1fr;
        }
        .lc-megamenu__cols {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .lc-megamenu__col--products .lc-megamenu__col-list {
            grid-template-columns: 1fr;
        }
        .lc-megamenu__promo { border-left: none; border-top: 1px solid var(--header-border); }
    }

    /* ==========================================
       MOBILE SUBMENU — grouped sections
    ========================================== */
    .lc-mobile-submenu__group {
        padding: 12px 0 16px;
    }
    .lc-mobile-submenu__group + .lc-mobile-submenu__group {
        border-top: 1px solid #f1f5f9;
    }
    .lc-mobile-submenu__group-title {
        display: block;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: var(--header-primary);
        padding: 4px 0 10px;
    }
    /* Mobile link reset — no inline onclick */
    .lc-mobile-menu__toggle {
        width: 100%;
        background: none;
        border: none;
        padding: 0;
        text-align: left;
        cursor: pointer;
        font: inherit;
        color: inherit;
    }

/* ==========================================================================
   Sticky footer CTA — uitklapbare bottom bar
   ========================================================================== */
    .rk-sticky-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9998;
        opacity: 0;
        transform: translateY(30px) scale(.96);
        transform-origin: bottom right;
        pointer-events: none;
        transition:
            opacity .55s cubic-bezier(.22,1,.36,1),
            transform .55s cubic-bezier(.22,1,.36,1);
        max-width: calc(100vw - 32px);
    }
    .rk-sticky-cta--visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .rk-sticky-cta__inner {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 10px 8px 8px;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(18px) saturate(140%);
        -webkit-backdrop-filter: blur(18px) saturate(140%);
        border: 1px solid rgba(43,41,38,.08);
        border-radius: 100px;
        box-shadow:
            0 24px 52px -16px rgba(43,41,38,.32),
            0 10px 24px -8px rgba(160,192,64,.14),
            0 1px 0 rgba(255,255,255,.8) inset;
        font-family: 'DM Sans','Poppins',system-ui,sans-serif;
        position: relative;
    }

    /* Toggle button — chevron (open) / phone (collapsed) */
    .rk-sticky-cta__toggle {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #faf7f4;
        border: 1px solid rgba(43,41,38,.08);
        color: #2b2926;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: background .3s, color .3s, transform .3s;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
    }
    .rk-sticky-cta__toggle:hover {
        background: #a0c040;
        color: #ffffff;
        transform: scale(1.05);
    }
    .rk-sticky-cta__toggle svg {
        width: 18px;
        height: 18px;
        position: absolute;
        transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
    }
    .rk-sticky-cta__toggle-icon--open  { opacity: 1; transform: rotate(0) scale(1); }
    .rk-sticky-cta__toggle-icon--close { opacity: 0; transform: rotate(-90deg) scale(.5); }
    .rk-sticky-cta--collapsed .rk-sticky-cta__toggle-icon--open  { opacity: 0; transform: rotate(90deg) scale(.5); }
    .rk-sticky-cta--collapsed .rk-sticky-cta__toggle-icon--close { opacity: 1; transform: rotate(0) scale(1); }

    /* Body — collapses horizontally */
    .rk-sticky-cta__body {
        display: flex;
        align-items: center;
        gap: 18px;
        padding-right: 4px;
        max-width: 820px;
        overflow: hidden;
        transition:
            max-width .55s cubic-bezier(.22,1,.36,1),
            opacity .35s ease,
            gap .45s ease,
            padding-right .45s ease;
    }
    .rk-sticky-cta--collapsed .rk-sticky-cta__body {
        max-width: 0;
        opacity: 0;
        gap: 0;
        padding-right: 0;
    }
    .rk-sticky-cta--collapsed .rk-sticky-cta__inner {
        padding: 8px;
    }

    /* Left block: logo + phone */
    .rk-sticky-cta__left {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-left: 8px;
        flex-shrink: 0;
    }
    .rk-sticky-cta__logo {
        height: 30px;
        width: auto;
        flex-shrink: 0;
        object-fit: contain;
    }
    .rk-sticky-cta__phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #2b2926;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
        transition: color .3s;
        padding: 6px 10px 6px 14px;
        border-left: 1px solid rgba(43,41,38,.1);
    }
    .rk-sticky-cta__phone svg {
        width: 14px;
        height: 14px;
        color: #a0c040;
        flex-shrink: 0;
    }
    .rk-sticky-cta__phone:hover { color: #a0c040; }

    /* Right block: afspraak pill + WhatsApp */
    .rk-sticky-cta__right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    /* dc-cta-btn — compact double-line version */
    .dc-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 8px 8px 8px 20px;
        background: #2b2926;
        color: #ffffff;
        text-decoration: none;
        border-radius: 100px;
        transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
        box-shadow: 0 10px 24px -10px rgba(43,41,38,.4);
        position: relative;
        overflow: hidden;
    }
    .dc-cta-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #a0c040;
        transform: translateX(-100%);
        transition: transform .45s cubic-bezier(.22,1,.36,1);
        z-index: 0;
    }
    .dc-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px -10px rgba(160,192,64,.45);
        color: #ffffff;
    }
    .dc-cta-btn:hover::before { transform: translateX(0); }
    .dc-cta-btn__text,
    .dc-cta-btn__arrow {
        position: relative;
        z-index: 1;
    }
    .dc-cta-btn__text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        line-height: 1;
        text-align: left;
    }
    .dc-cta-btn__label {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .18em;
        text-transform: uppercase;
        opacity: .72;
    }
    .dc-cta-btn__title {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .02em;
    }
    .dc-cta-btn__arrow {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,.16);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s;
    }
    .dc-cta-btn:hover .dc-cta-btn__arrow {
        transform: translateX(4px);
        background: rgba(255,255,255,.28);
    }
    .dc-cta-btn__arrow svg {
        width: 14px;
        height: 14px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* WhatsApp button */
    .rk-sticky-cta__wa {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 18px;
        background: #25D366;
        color: #ffffff;
        text-decoration: none;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .04em;
        transition: background .3s, transform .3s, box-shadow .3s;
        box-shadow: 0 8px 18px -6px rgba(37,211,102,.45);
        white-space: nowrap;
    }
    .rk-sticky-cta__wa:hover {
        background: #1DA851;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 14px 26px -8px rgba(37,211,102,.55);
    }
    .rk-sticky-cta__wa svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Live pulse dot on toggle */
    .rk-sticky-cta__toggle::before {
        content: '';
        position: absolute;
        top: -2px;
        right: -2px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #a0c040;
        border: 2px solid #ffffff;
        box-shadow: 0 0 0 0 rgba(160,192,64,.55);
        animation: rkStickyPulse 2s ease-in-out infinite;
    }
    @keyframes rkStickyPulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(160,192,64,.55); }
        50%      { box-shadow: 0 0 0 6px rgba(160,192,64,0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .rk-sticky-cta__phone { display: none; }
        .rk-sticky-cta__left { padding-left: 6px; gap: 0; }
    }
    @media (max-width: 720px) {
        .rk-sticky-cta__left { display: none; }
        .rk-sticky-cta__body { gap: 8px; }
    }
    @media (max-width: 520px) {
        .rk-sticky-cta { bottom: 14px; }
        .rk-sticky-cta__inner {
            padding: 6px 8px 6px 6px;
            gap: 6px;
        }
        .rk-sticky-cta__toggle { width: 38px; height: 38px; }
        .dc-cta-btn {
            padding: 6px 6px 6px 16px;
            gap: 10px;
        }
        .dc-cta-btn__title { font-size: 12px; }
        .dc-cta-btn__label { font-size: 8px; }
        .dc-cta-btn__arrow { width: 30px; height: 30px; }
        .rk-sticky-cta__wa {
            padding: 10px 12px;
            font-size: 0;
            gap: 0;
        }
        .rk-sticky-cta__wa svg { width: 18px; height: 18px; }
    }

    @media (prefers-reduced-motion: reduce) {
        .rk-sticky-cta,
        .rk-sticky-cta *,
        .rk-sticky-cta__toggle::before {
            transition-duration: .01ms !important;
            animation: none !important;
        }
    }
