/* Flush site header to viewport top — no white strip above navbar. */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Premium Glassmorphism Deep Navy Header */
.header {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1030 !important;
    background-color: rgba(11, 22, 44, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    height: auto !important;
    min-height: unset !important;
}

/* Premium dynamic border glowing under the header */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255, 193, 7, 0.35) 50%, rgba(255,255,255,0) 100%);
    opacity: 0.8;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.header.header-is-solid::after {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255, 193, 7, 0.5) 50%, rgba(255,255,255,0) 100%);
}

.header .header-nav,
.header.header-is-solid .header-nav {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    transition: padding 0.3s ease !important;
}

/* Keep height identical on scroll (solid state) */
.header.header-is-solid {
    background-color: rgba(9, 18, 36, 0.98) !important;
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.25) !important;
}

/* Reset inner containers and mobile headers */
.header .header-nav,
.header .mobile-menu .mobile-header {
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.header .mobile-menu .mobile-header {
    padding: 2rem;
}

.header .header-nav.nav-bg,
.header .nav-bg {
    background: transparent !important;
}

/* Navigation Menu Items Micro-interactions */
.header .header-menu .nav-list {
    margin: 0;
    padding: 0;
    position: relative;
}

.header .header-menu .nav-list > a.list-item {
    position: relative;
    padding: 0.6rem 0;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    color: rgba(255, 255, 255, 0.85) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
}

.header .header-menu .nav-list > a.list-item:hover {
    color: #ffc107 !important;
    text-shadow: 0 0 12px rgba(255, 193, 7, 0.35) !important;
    transform: translateY(-2px);
}

/* Sleek sliding sunset gold underline accent */
.header .header-menu .nav-list > a.list-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.6) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    border-radius: 20px;
}

.header .header-menu .nav-list > a.list-item:hover::after {
    width: 100%;
}

/* Dropdown Sub-menu Premium Hover Effect */
.header-sub-menu {
    display: block !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: absolute;
    top: 100%;
    left: 50%;
    transform-origin: top center;
    background: rgba(11, 22, 44, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
    width: 220px !important;
    z-index: 100 !important;
    margin-top: 1rem !important;
}

.header .header-menu .nav-list:hover .header-sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1) translateX(-50%);
    border-color: rgba(255, 193, 7, 0.25) !important;
    box-shadow: 0 12px 50px rgba(255, 193, 7, 0.08), 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.header-sub-menu li {
    margin-bottom: 0.5rem;
}

.header-sub-menu li:last-child {
    margin-bottom: 0;
}

.header-sub-menu li a {
    display: block;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.5rem;
    font-family: "Outfit", sans-serif;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}

.header-sub-menu li a:hover {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    padding-left: 1.8rem;
    box-shadow: inset 3px 0 0 #ffc107 !important;
}

/* Authentication CTA Buttons Styling */
.header-nav-auth {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
}

.header-nav-auth li a.list-item {
    font-family: "Outfit", sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.6rem !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Login Button: Glass outline capsule */
.header-nav-auth li:first-child a.list-item {
    padding: 0.75rem 2rem !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.header-nav-auth li:first-child a.list-item:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #ffc107 !important;
    color: #ffc107 !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.15) !important;
}

.header-nav-auth li:first-child a.list-item .list-icon svg {
    stroke: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.header-nav-auth li:first-child a.list-item:hover .list-icon svg {
    stroke: #ffc107 !important;
}

/* Sign Up Button: Vibrant Gradient Glow CTA */
.header-nav-auth li:last-child a.list-item {
    padding: 0.75rem 2.2rem !important;
    background: linear-gradient(135deg, #2b74fe 0%, #1a56db 100%) !important;
    border: 1.5px solid transparent !important;
    border-radius: 50px !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(43, 116, 254, 0.3) !important;
    text-decoration: none !important;
}

.header-nav-auth li:last-child a.list-item:hover {
    background: linear-gradient(135deg, #1a56db 0%, #174ebe 100%) !important;
    box-shadow: 0 8px 25px rgba(43, 116, 254, 0.55), 0 0 15px rgba(255, 193, 7, 0.2) !important;
    transform: translateY(-2px) scale(1.03);
}

.header-nav-auth li:last-child a.list-item .list-icon svg {
    stroke: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.header-nav-auth li:last-child a.list-item:hover .list-icon svg {
    stroke: #ffffff !important;
    transform: scale(1.1) rotate(15deg);
}

/* Signed-in Account Avatar Dropdown CTA */
.header-account-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.header-account-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    transform: scale(1.06);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.header-account-popover {
    background: rgba(11, 22, 44, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.header-account-popover-link {
    color: #ffffff !important;
}

.header-account-popover-link:hover,
.header-account-popover-link:focus-visible {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.header-account-popover-logout {
    color: #fca5a5 !important;
}

.header-account-popover-logout:hover,
.header-account-popover-logout:focus-visible {
    background: rgba(248, 113, 113, 0.18) !important;
    color: #fecaca !important;
}

.header-account-link-icon {
    color: currentColor;
}

/* Home Hero Custom Overrides on load (Force navy background to prevent any gap highlight) */
body.page-home-hero .header:not(.header-is-solid) {
    background-color: rgba(11, 22, 44, 0.94) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

body.page-home-hero .header:not(.header-is-solid) .header-nav {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* Light Theme Styles for Customer Dashboard & Profile Pages */
body.page-customer-account .header {
    background-color: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 4px 28px rgba(15, 23, 42, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body.page-customer-account .header.header-is-solid {
    box-shadow: 0 8px 36px rgba(15, 23, 42, 0.1) !important;
}

body.page-customer-account .header .header-menu .nav-list > a.list-item {
    color: #1e293b !important;
}

body.page-customer-account .header .header-menu .nav-list > a.list-item:hover {
    color: #2b74fe !important;
}

body.page-customer-account .header-nav-auth li:first-child a.list-item {
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: #1e293b !important;
}

body.page-customer-account .header-nav-auth li:first-child a.list-item:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    color: #0f172a !important;
}

body.page-customer-account .header-account-btn {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #1e293b !important;
}

body.page-customer-account .header-account-btn:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    border-color: #1e293b !important;
}

body.page-customer-account .header-account-popover {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12) !important;
}

body.page-customer-account .header-account-popover-link {
    color: #212529 !important;
}

body.page-customer-account .header-account-popover-link:hover,
body.page-customer-account .header-account-popover-link:focus-visible {
    background: #f3f4f9 !important;
    color: #212529 !important;
}

body.page-customer-account .header-account-popover-logout {
    color: #b02a37 !important;
}

body.page-customer-account .header-account-popover-logout:hover,
body.page-customer-account .header-account-popover-logout:focus-visible {
    background: #fcebec !important;
    color: #842029 !important;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .header .mobile-menu .mobile-header {
        background-color: rgba(11, 22, 44, 0.96) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(20px) !important;
    }

    .header .mobile-menu .mobile-header .header-logo {
        position: relative;
        z-index: 2;
    }

    .header .mobile-menu .mobile-header .header-logo a {
        display: inline-flex;
        align-items: center;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .header .mobile-menu .mobile-header .header-logo img {
        pointer-events: none;
        display: block;
    }
    
    body.page-customer-account .header .mobile-menu .mobile-header {
        background-color: rgba(255, 255, 255, 0.97) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
}

/* Disable main.css default hover thin underline to prevent duplicate lines */
.header .header-menu .nav-list .list-text::before,
.header .header-menu .nav-list .list-text::after,
.nav-list .list-text::before,
.nav-list .list-text::after,
.nav-list .list-text:hover::before,
.nav-list .list-text:hover::after,
.header-two .nav-list .list-text::before,
.header-three .nav-list .list-text::before,
.header .header-menu .nav-list > a.list-item::before,
.header .header-menu .nav-list > a.list-item:hover::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Explicitly protect custom golden underline, text-decoration and height settings */
.header .header-menu .nav-list > a.list-item,
.header .header-menu .nav-list > a.list-item:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.header .header-menu .nav-list .list-text {
    display: inline-block !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Mobile drawer — match desktop navy header theme */
@media (max-width: 991.98px) {
    .header .mobile-menu-offcanvas.offcanvas {
        background: rgba(11, 22, 44, 0.98) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35) !important;
    }

    .header .mobile-menu-offcanvas .offcanvas-header {
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 2rem !important;
        align-items: center !important;
    }

    .header .mobile-menu-offcanvas .mobile-menu-drawer-logo {
        margin: 0 !important;
        line-height: 0;
    }

    .header .mobile-menu-offcanvas .mobile-menu-drawer-logo a {
        display: inline-block;
        line-height: 0;
    }

    .header .mobile-menu-offcanvas .mobile-menu-drawer-logo img {
        display: block;
        height: auto;
        max-height: 4.8rem;
        width: auto;
        max-width: 100%;
    }

    .header .mobile-menu-offcanvas .btn-close {
        filter: invert(1) grayscale(1) brightness(1.8);
        opacity: 0.85;
    }

    .header .mobile-menu-offcanvas .mobile-menu-section .title {
        color: #ffc107 !important;
        font-family: "Outfit", sans-serif !important;
        font-weight: 600 !important;
    }

    .header .mobile-menu-offcanvas .mobile-menu-section .header-list {
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .header .mobile-menu-offcanvas .mobile-menu-section .nav-list {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .header .mobile-menu-offcanvas .nav-list .list-text {
        color: rgba(255, 255, 255, 0.85) !important;
        font-family: "Outfit", sans-serif !important;
        font-size: 1.7rem !important;
        font-weight: 500 !important;
    }

    .header .mobile-menu-offcanvas .nav-list .list-item:hover .list-text,
    .header .mobile-menu-offcanvas .nav-list .list-text:hover {
        color: #ffc107 !important;
    }

    .header .mobile-menu-offcanvas .nav-list .list-text::before,
    .header .mobile-menu-offcanvas .nav-list .list-text::after {
        display: none !important;
        content: none !important;
    }

    .header .mobile-menu-offcanvas .d-menu li {
        border-bottom-color: rgba(255, 255, 255, 0.06) !important;
    }

    .header .mobile-menu-offcanvas .d-menu li a .list-text {
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 1.5rem !important;
    }

    .header .mobile-menu-offcanvas .d-menu li a:hover .list-text {
        color: #ffc107 !important;
    }

    .header .mobile-menu-auth-list {
        width: 100% !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin: 0 !important;
        padding: 2rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        list-style: none !important;
    }

    .header .mobile-menu-auth-list li {
        width: 100% !important;
        margin: 0 !important;
    }

    .header .mobile-menu-auth-list li a.list-item {
        width: 100% !important;
        justify-content: center !important;
    }

    .header .mobile-menu-offcanvas .mobile-menu-auth-list .list-text {
        color: inherit !important;
    }

    .header .mobile-menu-offcanvas .mobile-menu-auth-list .list-text::before,
    .header .mobile-menu-offcanvas .mobile-menu-auth-list .list-text::after {
        display: none !important;
        content: none !important;
    }

    .header .mobile-menu-account-wrap {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.5rem 2rem 2rem;
        margin-top: auto !important;
        width: 100%;
    }

    .header .mobile-menu-offcanvas .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0;
    }

    .header .mobile-menu-offcanvas .mobile-menu-section {
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        width: 100% !important;
        margin-top: 0 !important;
        overflow-y: auto !important;
    }

    .mobile-menu-account-heading {
        margin: 0 0 1rem;
        font-family: "Outfit", sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #ffc107;
    }

    .header-account-menu--mobile-drawer {
        display: block !important;
        width: 100% !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .mobile-menu-account-trigger {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
        padding: 1.15rem 1.35rem;
        border: 1.5px solid rgba(255, 255, 255, 0.18);
        border-radius: 1.4rem;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        cursor: pointer;
        font-family: "Outfit", sans-serif;
        text-align: left;
        transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .mobile-menu-account-trigger:hover,
    .header-account-menu--mobile-drawer.is-open .mobile-menu-account-trigger,
    .header-account-menu--mobile-drawer:focus-within .mobile-menu-account-trigger {
        border-color: rgba(255, 193, 7, 0.45);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-account-avatar {
        flex-shrink: 0;
        width: 4.6rem;
        height: 4.6rem;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.55rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: #ffffff;
        background: linear-gradient(135deg, #2b74fe 0%, #1a56db 100%);
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 4px 16px rgba(43, 116, 254, 0.35);
    }

    .mobile-menu-account-meta {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .mobile-menu-account-name {
        display: block;
        font-size: 1.65rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-account-email {
        display: block;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.25;
        color: rgba(255, 255, 255, 0.58);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-account-chevron {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        transition: transform 0.25s ease, color 0.25s ease;
    }

    .header-account-menu--mobile-drawer:hover .mobile-menu-account-chevron,
    .header-account-menu--mobile-drawer.is-open .mobile-menu-account-chevron,
    .header-account-menu--mobile-drawer:focus-within .mobile-menu-account-chevron {
        color: #ffc107;
        transform: rotate(180deg);
    }

    .header-account-menu--mobile-drawer .mobile-menu-account-popover {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        min-width: 0 !important;
        width: 100% !important;
        margin-top: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.28s ease, margin-top 0.28s ease, padding 0.28s ease;
    }

    .header-account-menu--mobile-drawer .mobile-menu-account-popover::before {
        display: none !important;
    }

    .header-account-menu--mobile-drawer:hover .mobile-menu-account-popover,
    .header-account-menu--mobile-drawer.is-open .mobile-menu-account-popover,
    .header-account-menu--mobile-drawer:focus-within .mobile-menu-account-popover {
        max-height: 24rem;
        margin-top: 0.85rem !important;
        padding: 0.35rem 0 !important;
        pointer-events: auto !important;
    }

    .header-account-menu--mobile-drawer .mobile-menu-account-link {
        display: flex !important;
        align-items: center !important;
        gap: 0.9rem !important;
        width: 100% !important;
        padding: 1rem 1.1rem !important;
        margin-bottom: 0.35rem !important;
        border-radius: 1rem !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.88) !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
    }

    .header-account-menu--mobile-drawer .mobile-menu-account-link:last-child {
        margin-bottom: 0 !important;
    }

    .header-account-menu--mobile-drawer .mobile-menu-account-link:hover,
    .header-account-menu--mobile-drawer .mobile-menu-account-link:focus-visible {
        background: rgba(255, 193, 7, 0.14) !important;
        color: #ffc107 !important;
        border-color: rgba(255, 193, 7, 0.28) !important;
    }

    .header-account-menu--mobile-drawer .header-account-popover-logout {
        color: #fca5a5 !important;
    }

    .header-account-menu--mobile-drawer .header-account-popover-logout:hover,
    .header-account-menu--mobile-drawer .header-account-popover-logout:focus-visible {
        background: rgba(248, 113, 113, 0.16) !important;
        color: #fecaca !important;
        border-color: rgba(248, 113, 113, 0.28) !important;
    }

    /* Customer account pages — keep light mobile drawer */
    body.page-customer-account .header .mobile-menu-offcanvas.offcanvas {
        background: rgba(255, 255, 255, 0.98) !important;
        border-right-color: rgba(0, 0, 0, 0.06) !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .offcanvas-header {
        border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .btn-close {
        filter: none;
        opacity: 0.65;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .mobile-menu-section .title {
        color: #2b74fe !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .mobile-menu-section .header-list {
        border-top-color: rgba(43, 116, 254, 0.18) !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .mobile-menu-section .nav-list {
        border-bottom-color: rgba(43, 116, 254, 0.12) !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .nav-list .list-text {
        color: #1c1c1c !important;
    }

    body.page-customer-account .header .mobile-menu-offcanvas .nav-list .list-item:hover .list-text,
    body.page-customer-account .header .mobile-menu-offcanvas .nav-list .list-text:hover {
        color: #2b74fe !important;
    }

    body.page-customer-account .header .mobile-menu-account-wrap {
        border-top-color: rgba(0, 0, 0, 0.06);
    }

    body.page-customer-account .mobile-menu-account-heading {
        color: #2b74fe;
    }

    body.page-customer-account .mobile-menu-account-trigger {
        background: rgba(43, 116, 254, 0.06);
        border-color: rgba(43, 116, 254, 0.18);
        color: #1e293b;
    }

    body.page-customer-account .mobile-menu-account-trigger:hover,
    body.page-customer-account .header-account-menu--mobile-drawer.is-open .mobile-menu-account-trigger,
    body.page-customer-account .header-account-menu--mobile-drawer:focus-within .mobile-menu-account-trigger {
        border-color: rgba(43, 116, 254, 0.35);
        background: rgba(43, 116, 254, 0.1);
        box-shadow: 0 6px 22px rgba(43, 116, 254, 0.12);
    }

    body.page-customer-account .mobile-menu-account-name {
        color: #0f172a;
    }

    body.page-customer-account .mobile-menu-account-email {
        color: #64748b;
    }

    body.page-customer-account .mobile-menu-account-chevron {
        color: #64748b;
    }

    body.page-customer-account .header-account-menu--mobile-drawer:hover .mobile-menu-account-chevron,
    body.page-customer-account .header-account-menu--mobile-drawer.is-open .mobile-menu-account-chevron,
    body.page-customer-account .header-account-menu--mobile-drawer:focus-within .mobile-menu-account-chevron {
        color: #2b74fe;
    }

    body.page-customer-account .header-account-menu--mobile-drawer .mobile-menu-account-link {
        color: #1e293b !important;
        background: rgba(15, 23, 42, 0.04) !important;
        border-color: rgba(15, 23, 42, 0.06) !important;
    }

    body.page-customer-account .header-account-menu--mobile-drawer .mobile-menu-account-link:hover,
    body.page-customer-account .header-account-menu--mobile-drawer .mobile-menu-account-link:focus-visible {
        background: rgba(43, 116, 254, 0.1) !important;
        color: #2b74fe !important;
        border-color: rgba(43, 116, 254, 0.2) !important;
    }

    body.page-customer-account .header-account-menu--mobile-drawer .header-account-popover-logout {
        color: #b02a37 !important;
    }

    body.page-customer-account .header-account-menu--mobile-drawer .header-account-popover-logout:hover,
    body.page-customer-account .header-account-menu--mobile-drawer .header-account-popover-logout:focus-visible {
        background: #fcebec !important;
        color: #842029 !important;
        border-color: rgba(176, 42, 55, 0.2) !important;
    }

    /* Touch devices: open menu on tap only (avoid sticky hover) */
    @media (hover: none) {
        .header-account-menu--mobile-drawer:hover .mobile-menu-account-popover {
            max-height: 0 !important;
            margin-top: 0 !important;
            padding: 0 !important;
            pointer-events: none !important;
        }

        .header-account-menu--mobile-drawer:hover .mobile-menu-account-chevron {
            transform: none !important;
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .header-account-menu--mobile-drawer.is-open .mobile-menu-account-popover {
            max-height: 24rem !important;
            margin-top: 0.85rem !important;
            padding: 0.35rem 0 !important;
            pointer-events: auto !important;
        }

        .header-account-menu--mobile-drawer.is-open .mobile-menu-account-chevron {
            color: #ffc107 !important;
            transform: rotate(180deg) !important;
        }

        body.page-customer-account .header-account-menu--mobile-drawer:hover .mobile-menu-account-chevron {
            color: #64748b !important;
        }

        body.page-customer-account .header-account-menu--mobile-drawer.is-open .mobile-menu-account-chevron {
            color: #2b74fe !important;
        }
    }
}


