.angie-custom-menu-0510b484 {
    position: relative;
    display: inline-block;
    --menu-bg: #000000;
    --active-color: var(--e-global-color-primary, #e9495c);
    --inverted-color: #000000;
    --burger-size: 60px;
    --m-r-tl: 10px;
    --m-r-tr: 10px;
    --m-r-br: 40px;
    --m-r-bl: 10px;
    --mobile-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --mobile-duration: 0.5s;
    --clip-left: 0px;
    --clip-right: 100%;
    background: var(--menu-bg);
    border-radius: var(--m-r-tl) var(--m-r-tr) var(--m-r-br) var(--m-r-bl);
    overflow: hidden;
    max-width: 100%;
    isolation: isolate;
}

/* ── Desktop (unchanged behaviour) ── */
.angie-custom-menu-0510b484 .menu-desktop {
    position: relative;
}

.angie-custom-menu-0510b484 .menu-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.angie-custom-menu-0510b484 .menu-item a {
    display: block;
    padding: 16px 24px;
    font-size: 32px;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    color: var(--active-color);
}

.angie-custom-menu-0510b484 .menu-inverted {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: var(--active-color);
    clip-path: inset(0 var(--clip-right) 0 var(--clip-left) round 10px 10px 40px 10px);
    transition: clip-path 0.4s var(--mobile-ease);
    border-radius: 10px 10px 40px 10px;
    z-index: 1;
}

.angie-custom-menu-0510b484 .menu-inverted .menu-item a {
    color: var(--inverted-color);
}

/* ── Mobile ── */
.angie-custom-menu-0510b484 .menu-mobile {
    display: none;
}

.angie-custom-menu-0510b484 .menu-mobile-shell {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: var(--burger-size);
    height: var(--burger-size);
    background: var(--menu-bg);
    border-radius: var(--m-r-tl) var(--m-r-tr) var(--m-r-br) var(--m-r-bl);
    overflow: hidden;
    will-change: width, height;
    transition:
        width var(--mobile-duration) var(--mobile-ease),
        height var(--mobile-duration) var(--mobile-ease);
}

.angie-custom-menu-0510b484.is-mobile-open .menu-mobile-shell {
    width: var(--shell-expanded-w, 280px);
    height: var(--shell-expanded-h, 360px);
}

.angie-custom-menu-0510b484 .menu-mobile-header {
    flex-shrink: 0;
}

.angie-custom-menu-0510b484 .menu-burger {
    appearance: none;
    border: 0;
    margin: 0;
    padding: 0;
    width: var(--burger-size);
    height: var(--burger-size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent; /* shows shell bg -> always same colour */
    color: var(--active-color);
}

.angie-custom-menu-0510b484 .menu-burger-svg {
    display: block;
    overflow: visible;
}

.angie-custom-menu-0510b484 .burger-line {
    stroke: var(--active-color);
    stroke-width: 2;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    transition:
        transform 0.4s var(--mobile-ease),
        opacity 0.2s ease,
        stroke-width 0.25s ease;
}

/* Items: stacked, right-aligned. Fully opaque -> revealed by the box growth. */
.angie-custom-menu-0510b484 .menu-mobile-body {
    width: 100%;
}

.angie-custom-menu-0510b484 .menu-mobile-list {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

.angie-custom-menu-0510b484 .menu-mobile-list .menu-item {
    width: 100%;
}

.angie-custom-menu-0510b484 .menu-mobile-list .menu-item a {
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    white-space: nowrap;
    border-radius: 0;
    color: var(--active-color);
    background: transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
	padding: 12px 24px;
}

.angie-custom-menu-0510b484 .menu-mobile-list .menu-item.active a {
    background-color: var(--active-color);
    color: var(--inverted-color);
}

/* Burger -> X */
.angie-custom-menu-0510b484.is-mobile-open .burger-line {
    stroke-width: 2.75;
}

.angie-custom-menu-0510b484.is-mobile-open .burger-line-top {
    transform: translateY(5px) rotate(45deg) scaleX(1.15);
}

.angie-custom-menu-0510b484.is-mobile-open .burger-line-mid {
    opacity: 0;
    transform: scaleX(0);
}

.angie-custom-menu-0510b484.is-mobile-open .burger-line-bot {
    transform: translateY(-5px) rotate(-45deg) scaleX(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .angie-custom-menu-0510b484 .menu-mobile-shell,
    .angie-custom-menu-0510b484 .burger-line,
    .angie-custom-menu-0510b484 .menu-inverted {
        transition: none !important;
    }
}