.autex-sticky-menu-container {
    position: sticky;
    top: var(--sticky-top, 0px);
    z-index: 10;
    flex-wrap: nowrap;

}

.autex-sticky-menu-container.autex-sticky-menu-container--mobile {
    position: relative;
}

nav.autex-sticky-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background-color: var(--brand-aa-empire);
    color: var(--brand-white);


}



nav.autex-sticky-menu .sticky-menu-inner {
    max-width: 1399px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
}

.autex-sticky-menu__dropdown {
    display: flex;
    align-items: stretch;
}

.autex-sticky-menu__desktop-label {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    font-weight: 300;
    font-size: 17px;
    white-space: nowrap;
}

@media (max-width:1599px) {
    nav.autex-sticky-menu .sticky-menu-inner {
        max-width: 1150px;
    }
}

@media (max-width:1299px) {
    nav.autex-sticky-menu .sticky-menu-inner {
        max-width: 824px;
    }
}




ul.autex-sticky-menu__anchors {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

ul.autex-sticky-menu__anchors li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: stretch
}

ul.autex-sticky-menu__anchors li a {

    text-decoration: none;
    font-weight: 300;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 17px;

}



ul.autex-sticky-menu__anchors li a svg {
    display: none;
}

ul.autex-sticky-menu__anchors li a:hover {
    background-color: var(--brand-aa-white);
    color: var(--brand-aa-black);
}


ul.autex-sticky-menu__anchors li a .expand-arrow {
    display: none;
}

.autex-sticky-menu__underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: var(--brand-aa-white);
    pointer-events: none;
    transition: left 0.35s cubic-bezier(.4, 0, .2, 1), width 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* Hover underline on links */


.autex-sticky-menu__buttons {
    display: flex;
    align-items: stretch;
    gap: 0;

}

.autex-sticky-menu__buttons .autex-sticky-menu__button {
    background-color: var(--brand-aa-black);
    color: var(--brand-aa-white);
    font-weight: 300;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    font-size: 17px;
}




.autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-text {
    line-height: 1.1em;
}

.autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-icon {
    position: relative;
    width: 30px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.7s var(--transition-timing);
}

.autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-icon:before {
    width: calc(100% - 2px);
    max-width: 16px;
    height: 1px;
    content: ' ';
    display: block;
    background-color: currentColor;
    margin-left: auto;
    margin-right: 2px;
    transition: max-width 0.7s var(--transition-timing);

}

.autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-icon svg.button-arrowhead {
    height: 17px !important;
    width: 17px !important;
    right: 0;
    display: block;
    position: absolute;
}

.autex-sticky-menu__buttons .autex-sticky-menu__button:hover .autex-button-icon:before {
    max-width: calc(100% - 2px);
}

@media (max-width:1299px) {
    .autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-icon {
        width: 14px;
    }


    .autex-sticky-menu__buttons .autex-sticky-menu__button .autex-button-icon svg.button-arrowhead {
        height: 14px !important;
        width: 14px !important;
    }
}

@media (max-width:1599px) {

    .autex-sticky-menu__desktop-label,
    .autex-sticky-menu__dropdown-toggle,
    .autex-sticky-menu__buttons .autex-sticky-menu__button,
    ul.autex-sticky-menu__anchors li a {
        font-size: 13px;
    }
}

@media (max-width:1299px) {

    .autex-sticky-menu__desktop-label,
    .autex-sticky-menu__dropdown-toggle,
    .autex-sticky-menu__buttons .autex-sticky-menu__button,
    ul.autex-sticky-menu__anchors li a {
        font-size: 10px;
    }
}



.autex-sticky-menu__buttons .autex-sticky-menu__button span {
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.autex-sticky-menu__buttons .autex-sticky-menu__button:hover {
    text-decoration: underline;

}


.autex-sticky-menu__anchors {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.autex-sticky-menu__anchors li.active {
    background-color: var(--brand-aa-white);
}


.autex-sticky-menu__anchors li a {
    text-decoration: none;
    color: var(--brand-aa-white);
    font-weight: 300;
    padding: 0.5rem 0;
    display: inline-block;
    transition: color 0.2s ease;
}

.autex-sticky-menu__anchors li.active a {
    color: var(--brand-aa-black);

    text-decoration: underline;
}


/* Hide underline for mobile toggle */
.autex-sticky-menu__underline {
    display: block;
    /* keep for desktop underline effect */
}

.autex-sticky-menu__dropdown-toggle {
    display: none;
    flex: 1;
    font-size: 17px;
    line-height: 1.1em;
}

/* MOBILE STYLES */

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__desktop-label {
    display: none;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .sticky-menu-inner {
    padding: 0;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__buttons {
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__buttons .autex-sticky-menu__button {
    width: 100%;
    padding: 15px 50px;
    background-color: #D7CFC4;
    color: var(--brand-aa-black);
    gap: 10px;
    max-width: 300px;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__buttons .autex-sticky-menu__button span {

    justify-content: space-between;
    gap: 10px;

}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__buttons .autex-sticky-menu__button span.autex-button-text {
    width: 100%;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__buttons .autex-sticky-menu__button span.autex-button-icon {
    width: 30px;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul.autex-sticky-menu__anchors {
    display: flex;
    max-height: 0;
    overflow-y: hidden;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    gap: 0px;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-aa-empire);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0;
    width: 100%;
    z-index: 10;
    transition: max-height 0.3s var(--transition-timing);
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul.autex-sticky-menu__anchors li {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul.autex-sticky-menu__anchors li a {
    padding: 15px 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul.autex-sticky-menu__anchors li a span {
    min-width: 150px;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul.autex-sticky-menu__anchors li a svg {
    display: block;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile ul .autex-sticky-menu__anchors li:last-child a {
    border-bottom: none;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__dropdown {
    width: 100%;
    max-width: 400px;
    position: relative;
    flex-direction: column;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile button.autex-sticky-menu__dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 50px;
    background: var(--brand-aa-empire);
    border: none;
    color: var(--brand-aa-white);
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    font-weight: 300;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__dropdown-toggle span.arrow {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1px solid var(--brand-aa-white);
    border-bottom: 1px solid var(--brand-aa-white);
    transform: translateY(-1px) rotate(45deg);
    transform-origin: center;
    transition: transform 0.25s var(--transition-timing);
    margin-left: 8px;
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__dropdown.open .autex-sticky-menu__anchors {
    display: flex;
    max-height: 1000px;
    transition: all 0.3s var(--transition-timing);
}

nav.autex-sticky-menu.autex-sticky-menu--mobile .autex-sticky-menu__dropdown.open .autex-sticky-menu__dropdown-toggle span.arrow {
    transform: translateY(-1px) rotate(-135deg);
}