/* Sicherheitszustand: Ohne aktuelles JavaScript bleibt jedes Menü geschlossen. */
.mbe-root-menu {
    display: none !important;
}

/* möbelando Mega-Menü 1.3.5 – ruhige, einspaltige Drill-down-Navigation */
body.mbe-megamenu-active {
    --mbe-menu-accent: #a7e752;
    --mbe-menu-dark: #4e4e4e;
    --mbe-menu-text: #292c2f;
    --mbe-menu-muted: #70757a;
    --mbe-menu-line: #e5e7e8;
    --mbe-menu-soft: #f5f7f3;
    --mbe-menu-surface: #fff;
}

body.mbe-megamenu-active .mbe-drill-root,
body.mbe-megamenu-active .mbe-drill-root *,
body.mbe-megamenu-active .mbe-drill-root *::before,
body.mbe-megamenu-active .mbe-drill-root *::after {
    box-sizing: border-box;
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-toggle::after {
    content: '';
    position: relative;
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .45rem;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    vertical-align: .18em;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-toggle {
    position: relative;
}

body.mbe-megamenu-active .mbe-drill-root.mbe-is-open > .mbe-root-toggle {
    color: var(--mbe-menu-dark);
}

body.mbe-megamenu-active .mbe-drill-root.mbe-is-open > .mbe-root-toggle::before {
    content: '';
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--mbe-menu-accent);
}

body.mbe-megamenu-active .mbe-drill-root.mbe-is-open > .mbe-root-toggle::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu {
    z-index: 1060;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dfe2e3;
    color: var(--mbe-menu-text);
    background: var(--mbe-menu-surface);
    box-shadow: 0 22px 60px rgba(24, 29, 32, .18);
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu:not(.is-visible) {
    display: none !important;
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu.is-visible {
    display: block !important;
}

body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu .mbe-menu-stage,
body.mbe-megamenu-active .mbe-generated-menu {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--mbe-menu-surface);
}

body.mbe-megamenu-active .mbe-drill-panel {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    color: var(--mbe-menu-text);
    background: var(--mbe-menu-surface);
}

body.mbe-megamenu-active .mbe-drill-panel[hidden] {
    display: none !important;
}

body.mbe-megamenu-active .mbe-drill-panel--root,
body.mbe-megamenu-active .mbe-drill-panel--main,
body.mbe-megamenu-active .mbe-drill-panel--nested {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
}

body.mbe-megamenu-active .mbe-drill-panel--root {
    z-index: 1;
}

body.mbe-megamenu-active .mbe-drill-panel--main {
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-32px, 0, 0);
    transition: transform 220ms cubic-bezier(.22, .61, .36, 1), opacity 170ms ease, visibility 220ms;
}

body.mbe-megamenu-active .mbe-drill-panel--main.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

body.mbe-megamenu-active .mbe-drill-panel--nested {
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(102%, 0, 0);
    transition: transform 230ms cubic-bezier(.22, .61, .36, 1), opacity 170ms ease, visibility 230ms;
}

body.mbe-megamenu-active .mbe-drill-panel--nested.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

body.mbe-megamenu-active .mbe-drill-header {
    position: sticky;
    top: 0;
    z-index: 9;
    width: 100%;
    flex: 0 0 auto;
    padding: 0 26px;
    background: rgba(255, 255, 255, .985);
    border-bottom: 1px solid var(--mbe-menu-line);
}

body.mbe-megamenu-active .mbe-drill-content {
    width: 100%;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: #b7bbbe transparent;
    scrollbar-width: thin;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

body.mbe-megamenu-active .mbe-drill-toolbar,
body.mbe-megamenu-active .mbe-drill-titlebar {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

body.mbe-megamenu-active .mbe-drill-toolbar {
    min-height: 62px;
    border-bottom: 1px solid var(--mbe-menu-line);
}

body.mbe-megamenu-active .mbe-main-header .mbe-drill-toolbar {
    min-height: 112px;
    border-bottom: 0;
}

body.mbe-megamenu-active .mbe-menu-logo {
    display: flex;
    width: clamp(210px, 58vw, 300px);
    min-width: 0;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

body.mbe-megamenu-active .mbe-menu-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 84px;
    object-fit: contain;
    object-position: left center;
}

body.mbe-megamenu-active .mbe-drill-titlebar {
    min-height: 76px;
    gap: 16px;
}

body.mbe-megamenu-active .mbe-drill-back,
body.mbe-megamenu-active .mbe-drill-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 0;
    color: var(--mbe-menu-text);
    background: transparent;
    cursor: pointer;
    appearance: none;
}

body.mbe-megamenu-active .mbe-drill-back {
    min-width: 0;
    min-height: 44px;
    gap: 12px;
    padding: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
}

body.mbe-megamenu-active .mbe-drill-back .fas {
    flex: 0 0 auto;
    font-size: 14px;
}

body.mbe-megamenu-active .mbe-drill-close {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin-left: 12px;
    border: 1px solid #dfe2e3;
    border-radius: 50%;
    font-size: 18px;
    transition: border-color 150ms ease, background-color 150ms ease;
}

body.mbe-megamenu-active .mbe-drill-close:hover,
body.mbe-megamenu-active .mbe-drill-close:focus-visible {
    border-color: var(--mbe-menu-accent);
    background: var(--mbe-menu-soft);
}

body.mbe-megamenu-active .mbe-drill-title {
    min-width: 0;
    color: var(--mbe-menu-text);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

body.mbe-megamenu-active .mbe-drill-all {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: var(--mbe-menu-dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

body.mbe-megamenu-active .mbe-drill-all .fas {
    font-size: 12px;
}

body.mbe-megamenu-active .mbe-drill-all:hover,
body.mbe-megamenu-active .mbe-drill-all:focus-visible {
    color: #202320;
    text-decoration: underline;
    text-decoration-color: var(--mbe-menu-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

body.mbe-megamenu-active .mbe-drill-list {
    width: 100%;
    min-width: 0;
    padding: 4px 26px 24px;
}

body.mbe-megamenu-active .mbe-main-list {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 14px 26px 18px;
}

body.mbe-megamenu-active .mbe-service-links {
    display: block;
    width: auto;
    min-width: 0;
    margin: 0 26px;
    padding: 22px 0 30px;
    border-top: 2px solid var(--mbe-menu-line);
}

body.mbe-megamenu-active .mbe-service-links__title {
    display: block;
    margin: 0 5px 10px;
    color: var(--mbe-menu-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

body.mbe-megamenu-active .mbe-service-link {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 20px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    align-items: center;
    gap: 11px;
    padding: 8px 5px;
    border-radius: 8px;
    color: var(--mbe-menu-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color 140ms ease, background-color 140ms ease;
}

body.mbe-megamenu-active .mbe-service-link:hover,
body.mbe-megamenu-active .mbe-service-link:focus-visible {
    color: #191b1d;
    background: var(--mbe-menu-soft);
    outline: 0;
    text-decoration: none;
}

body.mbe-megamenu-active .mbe-service-link:focus-visible {
    box-shadow: inset 3px 0 0 var(--mbe-menu-accent);
}

body.mbe-megamenu-active .mbe-service-link__icon {
    width: 26px;
    color: var(--mbe-menu-dark);
    font-size: 16px;
    text-align: center;
}

body.mbe-megamenu-active .mbe-service-link__arrow {
    color: #646a6e;
    font-size: 10px;
    text-align: center;
}

body.mbe-megamenu-active .mbe-drill-entry {
    position: static;
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid var(--mbe-menu-line);
}

body.mbe-megamenu-active .mbe-drill-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    width: 100%;
    min-width: 0;
    min-height: 66px;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 8px 5px;
    border: 0;
    border-radius: 8px;
    color: var(--mbe-menu-text);
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition: color 140ms ease, background-color 140ms ease;
}

body.mbe-megamenu-active .mbe-drill-row--text-only {
    grid-template-columns: minmax(0, 1fr) 22px;
    min-height: 56px;
    padding: 11px 5px;
}

body.mbe-megamenu-active .mbe-main-row {
    min-height: 64px;
    border-bottom: 1px solid var(--mbe-menu-line);
    border-radius: 0;
}

body.mbe-megamenu-active .mbe-main-row .mbe-drill-label {
    font-size: 18px;
    font-weight: 600;
}

body.mbe-megamenu-active .mbe-drill-row:hover,
body.mbe-megamenu-active .mbe-drill-row:focus-visible {
    color: #191b1d;
    background: var(--mbe-menu-soft);
    outline: 0;
    text-decoration: none;
}

body.mbe-megamenu-active .mbe-drill-row:focus-visible {
    box-shadow: inset 3px 0 0 var(--mbe-menu-accent);
}

body.mbe-megamenu-active .mbe-drill-media {
    position: relative;
    display: flex;
    width: 42px;
    height: 42px;
    min-width: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e4e7e2;
    border-radius: 10px;
    color: #454b43;
    background: var(--mbe-menu-soft);
}

body.mbe-megamenu-active .mbe-drill-fallback-icon {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

body.mbe-megamenu-active .mbe-drill-media picture,
body.mbe-megamenu-active .mbe-drill-media .mbe-drill-image,
body.mbe-megamenu-active .mbe-drill-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

body.mbe-megamenu-active.mbe-menu-images-hidden .mbe-drill-media picture,
body.mbe-megamenu-active.mbe-menu-images-hidden .mbe-drill-media img {
    display: none !important;
}

body.mbe-megamenu-active .mbe-drill-label {
    min-width: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body.mbe-megamenu-active .mbe-drill-chevron {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 50%;
    color: #4f5458;
    background: #f1f3f0;
    font-size: 10px;
}

body.mbe-megamenu-active .mbe-promo-column {
    width: 100%;
    padding: 4px 26px 22px;
}

body.mbe-megamenu-active .mbe-promo-column--main {
    padding-top: 2px;
    padding-bottom: 24px;
}

body.mbe-megamenu-active .mbe-promo-card {
    display: grid;
    grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
    width: 100%;
    min-height: 142px;
    overflow: hidden;
    border: 1px solid rgba(55, 62, 50, .08);
    border-radius: 12px;
    color: var(--mbe-menu-text);
    background: var(--mbe-promo-bg, #f1f5ec);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

body.mbe-megamenu-active .mbe-promo-card:hover,
body.mbe-megamenu-active .mbe-promo-card:focus-visible {
    color: var(--mbe-menu-text);
    box-shadow: 0 10px 26px rgba(30, 35, 29, .12);
    outline: 0;
    text-decoration: none;
    transform: translateY(-2px);
}

body.mbe-megamenu-active .mbe-promo-card__media,
body.mbe-megamenu-active .mbe-promo-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}

body.mbe-megamenu-active .mbe-promo-card__media img {
    object-fit: cover;
}

body.mbe-megamenu-active .mbe-promo-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
}

body.mbe-megamenu-active .mbe-promo-card__badge,
body.mbe-megamenu-active .mbe-menu-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 99px;
    color: #26311f;
    background: var(--mbe-menu-accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.35;
    text-transform: uppercase;
}

body.mbe-megamenu-active .mbe-promo-card__title {
    margin-top: 7px;
    font-size: 18px;
    line-height: 1.2;
}

body.mbe-megamenu-active .mbe-promo-card__text {
    margin-top: 5px;
    color: #4e5356;
    font-size: 12px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

body.mbe-megamenu-active .mbe-promo-card__cta {
    margin-top: 9px;
    font-size: 12px;
    font-weight: 700;
}

body.mbe-megamenu-active .mbe-extra-tab .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

body.mbe-megamenu-active .mbe-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1015;
    background: rgba(20, 23, 24, .38);
    opacity: 0;
    visibility: hidden;
    transition: opacity 170ms ease, visibility 170ms ease;
}

body.mbe-megamenu-active.mbe-menu-open .mbe-menu-overlay {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    body.mbe-megamenu-active .mbe-drill-root {
        position: relative;
    }

    body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu {
        position: fixed !important;
        top: var(--mbe-menu-top, 0) !important;
        right: auto !important;
        bottom: auto !important;
        left: var(--mbe-menu-left, 0) !important;
        width: var(--mbe-menu-width, 550px) !important;
        max-width: calc(100% - 16px) !important;
        height: var(--mbe-menu-height, 100vh) !important;
        height: var(--mbe-menu-height, 100dvh) !important;
        max-height: none !important;
        border-top: 0;
        border-radius: 0 0 12px 0;
        transform: none !important;
    }
}

@media (max-width: 991.98px) {
    html.mbe-menu-mobile-open,
    body.mbe-menu-mobile-open {
        overflow: hidden !important;
        overscroll-behavior: none;
    }

    body.mbe-megamenu-active .mbe-drill-root > .mbe-root-menu {
        position: fixed !important;
        inset: 0 !important;
        z-index: 1080 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    body.mbe-megamenu-active .mbe-drill-header {
        padding-right: max(18px, env(safe-area-inset-right));
        padding-left: max(18px, env(safe-area-inset-left));
    }

    body.mbe-megamenu-active .mbe-drill-toolbar {
        min-height: calc(60px + env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
    }

    body.mbe-megamenu-active .mbe-drill-titlebar {
        min-height: 72px;
        gap: 12px;
    }

    body.mbe-megamenu-active .mbe-drill-back {
        gap: 10px;
        font-size: 10px;
        letter-spacing: .12em;
    }

    body.mbe-megamenu-active .mbe-drill-close {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-left: 8px;
    }

    body.mbe-megamenu-active .mbe-drill-title {
        font-size: clamp(21px, 6vw, 25px);
    }

    body.mbe-megamenu-active .mbe-drill-all {
        gap: 7px;
        font-size: 13px;
    }

    body.mbe-megamenu-active .mbe-drill-list {
        padding-right: max(18px, env(safe-area-inset-right));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        padding-left: max(18px, env(safe-area-inset-left));
    }

    body.mbe-megamenu-active .mbe-main-list {
        padding-right: max(18px, env(safe-area-inset-right));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        padding-left: max(18px, env(safe-area-inset-left));
    }

    body.mbe-megamenu-active .mbe-main-header .mbe-drill-toolbar {
        min-height: calc(96px + env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
    }

    body.mbe-megamenu-active .mbe-menu-logo {
        width: min(230px, calc(100vw - 92px));
    }

    body.mbe-megamenu-active .mbe-menu-logo img {
        max-height: 64px;
    }

    body.mbe-megamenu-active .mbe-service-links {
        margin-right: max(18px, env(safe-area-inset-right));
        margin-left: max(18px, env(safe-area-inset-left));
        padding-bottom: max(26px, env(safe-area-inset-bottom));
    }

    body.mbe-megamenu-active .mbe-drill-row {
        grid-template-columns: 42px minmax(0, 1fr) 22px;
        min-height: 64px;
        gap: 11px;
        padding: 7px 4px;
    }

    body.mbe-megamenu-active .mbe-drill-row--text-only {
        grid-template-columns: minmax(0, 1fr) 22px;
        min-height: 54px;
        gap: 11px;
        padding: 10px 4px;
    }

    body.mbe-megamenu-active .mbe-main-row {
        min-height: 62px;
    }

    body.mbe-megamenu-active .mbe-drill-media {
        width: 40px;
        height: 40px;
        border-radius: 9px;
    }

    body.mbe-megamenu-active .mbe-drill-label {
        font-size: 16px;
    }

    body.mbe-megamenu-active .mbe-promo-column {
        padding-right: max(18px, env(safe-area-inset-right));
        padding-bottom: max(24px, env(safe-area-inset-bottom));
        padding-left: max(18px, env(safe-area-inset-left));
    }

    body.mbe-megamenu-active .mbe-promo-card {
        grid-template-columns: minmax(112px, 36%) minmax(0, 1fr);
        min-height: 132px;
    }

    body.mbe-megamenu-active .mbe-promo-card__content {
        padding: 15px;
    }

    body.mbe-megamenu-active .mbe-root-menu.is-visible .mbe-promo-column {
        display: block !important;
        width: 100% !important;
        padding-top: 2px;
        padding-right: max(18px, env(safe-area-inset-right));
        padding-bottom: 24px;
        padding-left: max(18px, env(safe-area-inset-left));
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.mbe-megamenu-active .mbe-root-menu.is-visible .mbe-promo-card {
        display: flex !important;
        min-height: 0;
        flex-direction: column;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.mbe-megamenu-active .mbe-root-menu.is-visible .mbe-promo-card__media {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        flex: 0 0 auto;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.mbe-megamenu-active .mbe-root-menu.is-visible .mbe-promo-card__media img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.mbe-megamenu-active .mbe-root-menu.is-visible .mbe-promo-card__content {
        display: flex !important;
        width: 100%;
        min-height: 0;
        padding: 16px;
    }

    body.mbe-megamenu-active .mbe-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 374.98px) {
    body.mbe-megamenu-active .mbe-drill-header {
        padding-right: 15px;
        padding-left: 15px;
    }

    body.mbe-megamenu-active .mbe-drill-titlebar {
        min-height: 84px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 10px 0;
    }

    body.mbe-megamenu-active .mbe-drill-all {
        white-space: normal;
    }

    body.mbe-megamenu-active .mbe-drill-list {
        padding-right: 15px;
        padding-left: 15px;
    }

    body.mbe-megamenu-active .mbe-drill-row {
        grid-template-columns: 38px minmax(0, 1fr) 20px;
        gap: 9px;
    }

    body.mbe-megamenu-active .mbe-drill-row--text-only {
        grid-template-columns: minmax(0, 1fr) 20px;
    }

    body.mbe-megamenu-active .mbe-drill-media {
        width: 36px;
        height: 36px;
    }

    body.mbe-megamenu-active .mbe-promo-card {
        display: block;
    }

    body.mbe-megamenu-active .mbe-promo-card__media {
        height: 116px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.mbe-megamenu-active .mbe-drill-panel--main,
    body.mbe-megamenu-active .mbe-drill-panel--nested,
    body.mbe-megamenu-active .mbe-menu-overlay,
    body.mbe-megamenu-active .mbe-drill-row,
    body.mbe-megamenu-active .mbe-promo-card {
        transition: none !important;
    }

    body.mbe-megamenu-active .mbe-service-link {
        transition: none !important;
    }
}
