/* =============================================
   AORO SOLAR — Custom Site Header
   UX Booster Module v1.0
   ============================================= */

:root {
    --aoro-green:     #1F6F5C;
    --aoro-green-dark:#174f42;
    --aoro-nav-bg:    #0f1c19;
    --aoro-white:     #ffffff;
    --aoro-topbar-h:  42px;
    --aoro-nav-h:     80px;
    --aoro-nav-h-sm:  64px;
    --aoro-transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
#ux-site-header *,
#ux-site-header *::before,
#ux-site-header *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Wrapper ── */
#ux-site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: headerSlideDown 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes headerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==============================
   TOP BAR
   ============================== */
#ux-topbar {
    background: rgba(10, 22, 18, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    height: var(--aoro-topbar-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background var(--aoro-transition), height var(--aoro-transition);
    position: relative;
}

/* Premium Light Sweep Animation on Bottom Border */
#ux-topbar::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 35vw;
    min-width: 250px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 80%, rgba(255,255,255,1) 98%, rgba(255,255,255,0) 100%);
    animation: sweepLight 5s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
    z-index: 10;
}

@keyframes sweepLight {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    60% { transform: translateX(60vw); opacity: 0; }
    100% { transform: translateX(60vw); opacity: 0; }
}
#ux-topbar .tb-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
#ux-topbar .tb-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
#ux-topbar .tb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.88);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
#ux-topbar .tb-item:hover { color: #fff; }
#ux-topbar .tb-item svg { flex-shrink: 0; opacity: 0.75; }
#ux-topbar .tb-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
#ux-topbar .tb-social {
    display: flex; align-items: center; gap: 10px;
}
#ux-topbar .tb-social a {
    display: flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    transition: background 0.2s;
    text-decoration: none;
}
#ux-topbar .tb-social a:hover { background: rgba(255,255,255,0.25); }
#ux-topbar .tb-divider {
    width: 1px; height: 16px;
    background: rgba(255,255,255,0.25);
}

/* ==============================
   MAIN NAV BAR
   ============================== */
#ux-navbar {
    position: relative;
    background: transparent;
    height: var(--aoro-nav-h);
    display: flex;
    align-items: center;
    margin-top: 0;
    border-top: 2px solid var(--aoro-green);
    transition: height var(--aoro-transition),
                background var(--aoro-transition),
                box-shadow var(--aoro-transition);
}
/* Diagonal R-cut background via pseudo-element */
#ux-navbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 18, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    clip-path: polygon(0 0, calc(100% - 90px) 0, calc(100% - 170px) 100%, 0 100%);
    z-index: 0;
    transition: background var(--aoro-transition);
}
.nav-inner {
    position: relative;
    z-index: 1;
}
#ux-navbar .nav-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
#ux-navbar .nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: height var(--aoro-transition);
}
#ux-navbar .nav-logo { text-decoration: none; flex-shrink: 0; }

/* ── Desktop Menu ── */
/* ── Desktop Menu ── */
#ux-nav-menu {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    flex: 1;
    justify-content: center;
    height: 100%;
}
#ux-nav-menu > li {
    position: relative;
    display: flex;
    align-items: stretch;
    border-right: 1px solid rgba(255,255,255,0.07);
}
#ux-nav-menu > li:first-child {
    border-left: 1px solid rgba(255,255,255,0.07);
}
#ux-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 22px;
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
    position: relative;
}
/* Bottom green accent line on hover/active */
#ux-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--aoro-green);
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
#ux-nav-menu > li > a:hover::after,
#ux-nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}
#ux-nav-menu > li > a:hover,
#ux-nav-menu > li.current-menu-item > a {
    color: #fff;
    background: rgba(255,255,255,0.05);
}
#ux-nav-menu > li > a .arrow {
    width: 12px; height: 12px;
    transition: transform 0.25s;
    opacity: 0.6;
}
#ux-nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* ── Dropdown ── */
#ux-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;   /* invisible hover bridge */
    min-width: 240px;
    z-index: 100;
    animation: dropFade 0.22s ease both;
}
/* Connector arrow from menu item to dropdown */
#ux-nav-menu > li > .sub-menu::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 24px;
    width: 12px;
    height: 8px;
    background: rgba(10, 22, 18, 0.92);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
/* Glass panel — same color as navbar */
#ux-nav-menu .sub-menu {
    list-style: none;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.55));
}
#ux-nav-menu .sub-menu li {
    background: rgba(10, 22, 18, 0.92);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: none;
    position: relative;
}
#ux-nav-menu .sub-menu li + li {
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* First item: flat top (flows from navbar), light top border */
#ux-nav-menu .sub-menu > li:first-child {
    border-top: 2px solid var(--aoro-green);
    border-radius: 0;
}
/* Last item: rounded bottom */
#ux-nav-menu .sub-menu > li:last-child {
    border-radius: 0 0 10px 10px;
}
@keyframes dropFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
#ux-nav-menu .sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    letter-spacing: 0.2px;
}
#ux-nav-menu .sub-menu li a:hover {
    background: rgba(31,111,92,0.25);
    color: #fff;
    padding-left: 24px;
}

/* Level 3 dropdown */
#ux-nav-menu .sub-menu .sub-menu {
    top: 0;
    left: calc(100% - 2px);
    padding-top: 0;
    padding-left: 6px;
    animation: dropFade 0.2s ease both;
}
#ux-nav-menu .sub-menu li { position: relative; }

/* Keep sub-menu open while hovering it */
#ux-nav-menu > li:hover > .sub-menu,
#ux-nav-menu .sub-menu li:hover > .sub-menu { display: block; }


/* ── CTA Button ── */
#ux-nav-cta {
    flex-shrink: 0;
}
#ux-nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--aoro-green);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(31,111,92,0.4);
}
#ux-nav-cta a:hover {
    background: var(--aoro-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(31,111,92,0.55);
}

/* Hamburger */
#ux-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--aoro-green);
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    box-shadow: 0 3px 14px rgba(31,111,92,0.4);
}
#ux-hamburger:hover {
    background: var(--aoro-green-dark);
    transform: scale(1.05);
}
#ux-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
    margin: 0 auto;
}
#ux-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#ux-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#ux-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   STICKY STATE
   ============================== */

#ux-site-header.is-sticky #ux-topbar {
    background: rgba(10, 28, 22, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

#ux-site-header.is-sticky #ux-navbar {
    height: var(--aoro-nav-h-sm);
    background: transparent;
    border-top: 2px solid var(--aoro-green);
    /* Removed box-shadow so it doesn't bleed into the diagonal cut */
}
#ux-site-header.is-sticky #ux-navbar::before {
    background: rgba(8, 20, 16, 0.97);
    clip-path: polygon(0 0, calc(100% - 90px) 0, calc(100% - 170px) 100%, 0 100%);
}
#ux-site-header.is-sticky .nav-inner {
    padding: 0 28px;
}
#ux-site-header.is-sticky #ux-navbar .nav-logo img { height: 34px; }
#ux-site-header.is-sticky #ux-nav-cta a {
    padding: 9px 18px;
    font-size: 12px;
}

/* ==============================
   MOBILE DRAWER
   ============================== */
#ux-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    backdrop-filter: blur(2px);
}
#ux-drawer-overlay.open { display: block; }

#ux-mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    background: #0f1c19;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--aoro-transition);
    overflow-y: auto;
}
#ux-mobile-drawer.open { transform: translateX(0); }

#ux-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
#ux-drawer-head img { height: 32px; }
#ux-drawer-close {
    background: var(--aoro-green) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 3px 12px rgba(31,111,92,0.35);
}
#ux-drawer-close:hover {
    background: var(--aoro-green-dark) !important;
    transform: scale(1.05);
}

#ux-drawer-nav {
    flex: 1;
    padding: 20px 0;
}
#ux-drawer-nav ul { list-style: none; padding: 0; margin: 0; }

/* Top-level items */
#ux-drawer-nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Links with NO submenu */
#ux-drawer-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 18px;
    color: rgba(255,255,255,0.9);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    background: none;
    border: none;
    box-sizing: border-box;
    transition: background 0.15s, color 0.15s;
}
#ux-drawer-nav > ul > li > a:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
}

/* Buttons with submenu toggle */
#ux-drawer-nav > ul > li > button.drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 11px 18px;
    color: rgba(255,255,255,0.9);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    transition: background 0.15s, color 0.15s;
    border-radius: 0;
}
#ux-drawer-nav > ul > li > button.drawer-toggle:hover {
    background: rgba(255,255,255,0.04);
    color: #fff;
}

/* Arrow icon — smooth rotate when open */
#ux-drawer-nav .drawer-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.55;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    margin-left: auto;
    display: block;
}
#ux-drawer-nav li.sub-open > button .drawer-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* Sub-menu accordion — smooth max-height */
#ux-drawer-nav .drawer-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    border-left: 3px solid var(--aoro-green);
    margin: 0 0 0 18px;
    background: rgba(0,0,0,0.15);
    border-radius: 0 0 6px 0;
}
#ux-drawer-nav .drawer-sub.open {
    max-height: 1200px;
}

/* Sub-menu items */
#ux-drawer-nav .drawer-sub li a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.15s, background 0.15s, padding-left 0.2s;
    letter-spacing: 0.1px;
}
#ux-drawer-nav .drawer-sub li:last-child a {
    border-bottom: none;
}
#ux-drawer-nav .drawer-sub li a:hover {
    color: #fff;
    background: rgba(31,111,92,0.2);
    padding-left: 20px;
}

/* Level 3 group headers (e.g. in Packages & Prices) */
#ux-drawer-nav .drawer-sub strong {
    display: block;
    padding: 10px 18px 4px;
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ── Full Mega Menu in Drawer ── */
/* Section headings (column titles) */
#ux-drawer-nav .drawer-col-heading {
    padding: 8px 14px 3px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--aoro-green);
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2px;
}
#ux-drawer-nav li.drawer-col-heading:first-child {
    border-top: none; margin-top: 0;
}

/* Items with title + desc */
#ux-drawer-nav .drawer-mega-item a {
    display: block;
    padding: 7px 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s, padding-left 0.2s;
}
#ux-drawer-nav .drawer-mega-item a:hover {
    background: rgba(31,111,92,0.18);
    padding-left: 20px;
}
#ux-drawer-nav .dmi-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.3;
}
#ux-drawer-nav .dmi-desc {
    display: block;
    font-size: 10.5px;
    color: rgba(255,255,255,0.4);
    margin-top: 1px;
    line-height: 1.3;
}
#ux-drawer-nav .dmi-badge {
    display: inline-block;
    margin-top: 2px;
    padding: 1px 6px;
    font-size: 9px;
    border-radius: 8px;
    background: var(--aoro-green);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Feature checkmark list */
#ux-drawer-nav .drawer-feat {
    padding: 4px 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}
#ux-drawer-nav .drawer-feat::before {
    content: '';
}

/* Info paragraph */
#ux-drawer-nav .drawer-info-p {
    padding: 7px 14px 4px;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    font-style: italic;
}

/* CTA card */
#ux-drawer-nav .drawer-mega-cta {
    padding: 8px 14px 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 2px;
}
#ux-drawer-nav .drawer-cta-card {
    display: block;
    background: linear-gradient(135deg, #1F6F5C 0%, #155c4a 100%);
    border-radius: 8px;
    padding: 10px 14px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
#ux-drawer-nav .drawer-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31,111,92,0.35);
}
#ux-drawer-nav .dcc-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 2px;
}
#ux-drawer-nav .dcc-sub {
    display: block;
    font-size: 10.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    line-height: 1.3;
}
#ux-drawer-nav .dcc-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    padding: 4px 10px;
    letter-spacing: 0.2px;
}


#ux-drawer-footer {
    padding: 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}
#ux-drawer-footer a.drawer-cta {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--aoro-green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(31,111,92,0.4);
    margin-bottom: 16px;
    transition: background 0.2s;
}
#ux-drawer-footer a.drawer-cta:hover { background: var(--aoro-green-dark); }
#ux-drawer-footer .drawer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
#ux-drawer-footer .drawer-contacts a {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}
#ux-drawer-footer .drawer-contacts a:hover { color: #fff; }

/* ==============================
   BODY OFFSET
   ==============================
   Header is position:fixed + transparent overlay.
   Content starts at top:0 so the hero image slides
   UNDER the header — this is intentional.

   For inner pages without a hero image add class
   .ux-has-topspace to <body> or wrap your content
   in a div with padding-top below.
   ============================== */
body.ux-header-active {
    /* no padding — header overlays content */
}

/* Optional: inner pages that need space below header */
body.ux-has-topspace {
    padding-top: calc(var(--aoro-topbar-h) + var(--aoro-nav-h));
}


/* ==============================
   RESPONSIVE — SQUEEZE (1200px–1531px)
   Desktop menu fits but scaled down
   ============================== */
@media (max-width: 1531px) {
    #ux-nav-menu > li > a {
        padding: 0 14px;
        font-size: 12.5px;
        letter-spacing: 0.2px;
    }
    #ux-nav-cta a {
        padding: 9px 16px;
        font-size: 12px;
    }
    #ux-navbar .nav-inner {
        padding: 0 16px;
        gap: 10px;
    }
    #ux-navbar .nav-logo img {
        height: 38px;
    }
}

/* ==============================
   RESPONSIVE — HAMBURGER (≤1200px)
   Switch to drawer, hide desktop menu
   ============================== */
@media (max-width: 1200px) {
    /* Hide desktop nav & CTA */
    #ux-nav-menu { display: none; }
    #ux-nav-cta  { display: none; }
    #ux-hamburger { display: flex; }

    /* Remove diagonal cut on smaller screens */
    #ux-navbar::before {
        clip-path: none;
    }

    /* Nav inner: logo left, hamburger right */
    #ux-navbar .nav-inner {
        justify-content: space-between;
        padding: 0 20px;
    }

    /* Topbar — hide social on tablet */
    #ux-topbar .tb-right .tb-social { display: none; }
    #ux-topbar .tb-right .tb-divider { display: none; }
}

/* ==============================
   RESPONSIVE — MOBILE (≤600px)
   ============================== */
@media (max-width: 600px) {
    #ux-topbar { display: none; }

    body.ux-header-active {
        padding-top: 0;
    }

    #ux-navbar .nav-inner {
        padding: 0 16px;
    }

    #ux-navbar .nav-logo img {
        height: 38px;
    }

    #ux-navbar {
        height: 64px;
    }
}

/* ==============================
   RESPONSIVE — SMALL (≤360px)
   ============================== */
@media (max-width: 360px) {
    #ux-navbar .nav-logo img {
        height: 32px;
    }
    #ux-hamburger {
        width: 38px; height: 38px;
    }
    #ux-hamburger span {
        width: 18px;
    }
}

/* ==============================
   ELEMENTOR OVERRIDE
   ============================== */
#ux-site-header #ux-hamburger,
#ux-mobile-drawer #ux-drawer-close {
    background-color: var(--aoro-green) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #fff !important;
}
#ux-site-header #ux-hamburger:hover,
#ux-mobile-drawer #ux-drawer-close:hover {
    background-color: var(--aoro-green-dark) !important;
}

/* Fix drawer accordion toggles */
#ux-mobile-drawer nav ul li button.drawer-toggle {
    background-color: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.85) !important;
}
#ux-mobile-drawer nav ul li button.drawer-toggle:hover {
    background-color: rgba(255,255,255,0.05) !important;
    color: #fff !important;
}
