/*
 * LASTO shared public navbar.
 * This file is intentionally loaded after page CSS and is the only visual
 * source of truth for the public header/navigation component.
 */
:root{
    --lasto-header-top-height:74px;
    --lasto-header-nav-height:48px;
    --lasto-header-container:1664px;
    --lasto-header-bg:#070b12;
    --lasto-nav-bg:#0d1521;
    --lasto-nav-panel:#101a2a;
    --lasto-nav-text:#f2f5fb;
    --lasto-nav-muted:#9cabc2;
    --lasto-nav-border:#27364c;
    --lasto-nav-hover:rgba(113,75,255,.13);
    --lasto-nav-purple:#6636ef;
    --lasto-nav-purple-dark:#4b24d2;
    --lasto-nav-shadow:0 18px 45px rgba(0,0,0,.34);
}
html[data-site-theme="light"]{
    /* Reference light mode: dark utility row + white menu row. */
    --lasto-header-bg:#070b12;
    --lasto-nav-bg:#ffffff;
    --lasto-nav-panel:#ffffff;
    --lasto-nav-text:#171b24;
    --lasto-nav-muted:#667085;
    --lasto-nav-border:#dce2eb;
    --lasto-nav-hover:#f0ecff;
    --lasto-nav-shadow:0 18px 45px rgba(15,23,42,.14);
}

#lasto-site-header{
    position:sticky;
    top:0;
    z-index:1000;
    width:100%;
    margin:0;
    padding:0;
    isolation:isolate;
    font-family:"Montserrat",Arial,Helvetica,sans-serif;
}
#lasto-site-header,
#lasto-site-header *{box-sizing:border-box;}
#lasto-site-header .lasto-header-container,
#lasto-site-header .lasto-nav-container{
    width:min(var(--lasto-header-container),calc(100% - 48px));
    max-width:var(--lasto-header-container);
    margin-inline:auto;
}

/* Top row */
#lasto-site-header .lasto-top-header,
#lasto-site-header .top-header{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    z-index:2!important;
    width:100%;
    height:var(--lasto-header-top-height)!important;
    min-height:var(--lasto-header-top-height)!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-bottom:1px solid rgba(255,255,255,.06)!important;
    background:var(--lasto-header-bg)!important;
    box-shadow:none!important;
    animation:none!important;
}
html[data-site-theme="light"] #lasto-site-header .lasto-top-header{
    border-bottom-color:rgba(255,255,255,.08)!important;
}
#lasto-site-header .header-inner{
    display:flex!important;
    align-items:center!important;
    flex-wrap:nowrap!important;
    width:min(var(--lasto-header-container),calc(100% - 48px));
    height:var(--lasto-header-top-height)!important;
    min-height:var(--lasto-header-top-height)!important;
    margin-inline:auto!important;
    padding:0!important;
    gap:34px!important;
}
#lasto-site-header .lasto-logo-link,
#lasto-site-header .logo-link{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    flex:0 0 176px!important;
    width:176px!important;
    height:54px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    background:transparent!important;
    line-height:0;
    text-decoration:none;
}
#lasto-site-header .logo-link img{
    display:block!important;
    width:174px!important;
    height:54px!important;
    max-width:174px!important;
    max-height:54px!important;
    margin:0!important;
    object-fit:contain!important;
    object-position:left center!important;
}

/* Search */
#lasto-site-header .lasto-header-search,
#lasto-site-header .search-form{
    position:relative!important;
    inset:auto!important;
    order:initial!important;
    display:block!important;
    flex:0 1 460px!important;
    width:clamp(320px,29vw,460px)!important;
    max-width:460px!important;
    height:44px!important;
    min-height:44px!important;
    margin:0!important;
    padding:0!important;
    filter:none!important;
}
#lasto-site-header .lasto-header-search::before,
#lasto-site-header .lasto-header-search::after{display:none!important;content:none!important;}
#lasto-site-header .lasto-header-search input{
    display:block!important;
    width:100%!important;
    height:44px!important;
    min-height:44px!important;
    margin:0!important;
    padding:0 54px 0 18px!important;
    border:1px solid #34435a!important;
    border-radius:999px!important;
    outline:0!important;
    background:#151f31!important;
    color:#f4f7fc!important;
    box-shadow:none!important;
    font-family:"Montserrat",Arial,sans-serif!important;
    font-size:12px!important;
    font-weight:400!important;
    line-height:1!important;
    letter-spacing:0!important;
    transition:border-color .18s ease,box-shadow .18s ease,background .18s ease!important;
}
#lasto-site-header .lasto-header-search input::placeholder{color:#91a1bb!important;opacity:1!important;}
#lasto-site-header .lasto-header-search input:hover{border-color:#52627a!important;}
#lasto-site-header .lasto-header-search input:focus{
    border-color:#8668ff!important;
    background:#182338!important;
    box-shadow:0 0 0 4px rgba(105,67,244,.18)!important;
}
#lasto-site-header .lasto-header-search button{
    position:absolute!important;
    top:5px!important;
    right:4px!important;
    bottom:auto!important;
    left:auto!important;
    display:grid!important;
    place-items:center!important;
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    min-height:36px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:50%!important;
    background:#f0efff!important;
    color:#6038ef!important;
    box-shadow:none!important;
    transform:none!important;
}
#lasto-site-header .lasto-header-search button:hover{
    background:#6840ef!important;
    color:#fff!important;
    box-shadow:0 8px 18px rgba(104,64,239,.28)!important;
}
#lasto-site-header .lasto-header-search button .icon{width:20px!important;height:20px!important;}
html[data-site-theme="light"] #lasto-site-header .lasto-header-search input{
    border-color:#cfd7e3!important;
    background:#ffffff!important;
    color:#1b2230!important;
}
html[data-site-theme="light"] #lasto-site-header .lasto-header-search input::placeholder{color:#718096!important;}
html[data-site-theme="light"] #lasto-site-header .lasto-header-search input:focus{background:#fff!important;}

/* Right actions */
#lasto-site-header .lasto-header-actions,
#lasto-site-header .header-actions{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    flex:0 0 auto!important;
    margin:0 0 0 auto!important;
    padding:0!important;
    gap:10px!important;
}
#lasto-site-header .header-store-link,
#lasto-site-header .header-whatsapp,
#lasto-site-header .site-theme-toggle{
    position:relative!important;
    inset:auto!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-width:0!important;
    width:auto!important;
    height:42px!important;
    min-height:42px!important;
    margin:0!important;
    padding:0 15px!important;
    border-radius:9px!important;
    text-decoration:none!important;
    white-space:nowrap!important;
    font-family:"Montserrat",Arial,sans-serif!important;
    font-size:12px!important;
    font-weight:700!important;
    line-height:1!important;
    letter-spacing:0!important;
    transform:none!important;
    animation:none!important;
}
#lasto-site-header .header-store-link{
    border:1px solid #667084!important;
    background:rgba(255,255,255,.03)!important;
    color:#fff!important;
    box-shadow:none!important;
}
#lasto-site-header .header-store-link:hover{border-color:#fff!important;background:rgba(255,255,255,.08)!important;}
#lasto-site-header .header-whatsapp{
    border:1px solid #13c76b!important;
    background:#13c76b!important;
    color:#fff!important;
    box-shadow:0 9px 24px rgba(19,199,107,.22)!important;
}
#lasto-site-header .header-whatsapp:hover{background:#0fb760!important;border-color:#0fb760!important;}
#lasto-site-header .site-theme-toggle{
    border:1px solid #566174!important;
    background:rgba(255,255,255,.03)!important;
    color:#fff!important;
    box-shadow:none!important;
}
#lasto-site-header .site-theme-toggle:hover{border-color:#fff!important;background:rgba(255,255,255,.08)!important;color:#fff!important;}
#lasto-site-header .header-store-link .icon,
#lasto-site-header .header-whatsapp .icon,
#lasto-site-header .site-theme-toggle svg{width:17px!important;height:17px!important;}
#lasto-site-header .site-theme-toggle-label{display:inline!important;}
html[data-site-theme="light"] #lasto-site-header .header-store-link,
html[data-site-theme="light"] #lasto-site-header .site-theme-toggle{
    border-color:#566174!important;
    background:rgba(255,255,255,.03)!important;
    color:#fff!important;
}
html[data-site-theme="light"] #lasto-site-header .header-store-link:hover,
html[data-site-theme="light"] #lasto-site-header .site-theme-toggle:hover{
    border-color:#fff!important;
    background:rgba(255,255,255,.08)!important;
    color:#fff!important;
}
#lasto-site-header .mobile-search-toggle,
#lasto-site-header .mobile-menu-toggle{display:none!important;}

/* Navigation row */
#lasto-site-header .lasto-primary-nav,
#lasto-site-header .main-nav{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    z-index:1!important;
    display:block!important;
    width:100%!important;
    height:var(--lasto-header-nav-height)!important;
    min-height:var(--lasto-header-nav-height)!important;
    max-height:none!important;
    margin:0!important;
    padding:0!important;
    overflow:visible!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:none!important;
    border:0!important;
    border-bottom:1px solid var(--lasto-nav-border)!important;
    background:var(--lasto-nav-bg)!important;
    box-shadow:0 4px 14px rgba(0,0,0,.08)!important;
    animation:none!important;
}
#lasto-site-header .lasto-primary-nav .nav-inner,
#lasto-site-header .lasto-primary-nav .lasto-nav-container{
    display:flex!important;
    align-items:center!important;
    width:min(var(--lasto-header-container),calc(100% - 48px))!important;
    height:var(--lasto-header-nav-height)!important;
    min-height:var(--lasto-header-nav-height)!important;
    margin-inline:auto!important;
    padding:0!important;
    overflow:visible!important;
}
#lasto-site-header .lasto-navbar-menu{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    min-width:0!important;
    height:var(--lasto-header-nav-height)!important;
    min-height:var(--lasto-header-nav-height)!important;
    margin:0!important;
    padding:0!important;
    gap:clamp(20px,2.5vw,44px)!important;
    overflow:visible!important;
}
#lasto-site-header .lasto-top-nav-link,
#lasto-site-header .lasto-nav-dropdown-toggle{
    position:relative!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex:0 0 auto!important;
    width:auto!important;
    height:34px!important;
    min-height:34px!important;
    margin:0!important;
    padding:0 15px!important;
    border:0!important;
    border-radius:999px!important;
    background:transparent!important;
    color:var(--lasto-nav-text)!important;
    box-shadow:none!important;
    text-decoration:none!important;
    text-transform:uppercase!important;
    text-shadow:none!important;
    white-space:nowrap!important;
    font-family:"Montserrat",Arial,sans-serif!important;
    font-size:12px!important;
    font-weight:700!important;
    line-height:1!important;
    letter-spacing:0!important;
    transform:none!important;
    transition:color .18s ease,background .18s ease,box-shadow .18s ease!important;
}
#lasto-site-header .lasto-top-nav-link:hover,
#lasto-site-header .lasto-nav-dropdown-toggle:hover{
    color:#a992ff!important;
    background:var(--lasto-nav-hover)!important;
    box-shadow:none!important;
    transform:none!important;
}
#lasto-site-header .lasto-top-nav-link.active,
#lasto-site-header .lasto-top-nav-link[aria-current="page"],
#lasto-site-header .lasto-nav-dropdown.active>.lasto-nav-dropdown-toggle{
    padding:0 15px!important;
    color:#fff!important;
    background:linear-gradient(135deg,var(--lasto-nav-purple-dark),var(--lasto-nav-purple))!important;
    box-shadow:0 8px 20px rgba(103,54,238,.26)!important;
}
#lasto-site-header .lasto-top-nav-link::after,
#lasto-site-header .lasto-nav-dropdown-toggle::after{display:none!important;content:none!important;}

/* Dropdowns */
#lasto-site-header .lasto-nav-dropdown{
    position:relative!important;
    display:flex!important;
    align-items:center!important;
    flex:0 0 auto!important;
    width:auto!important;
    height:var(--lasto-header-nav-height)!important;
    min-height:var(--lasto-header-nav-height)!important;
    margin:0!important;
    padding:0!important;
}
#lasto-site-header .lasto-nav-dropdown-toggle{gap:7px!important;}
#lasto-site-header .lasto-nav-dropdown-toggle svg{
    width:15px!important;
    height:15px!important;
    fill:none!important;
    stroke:currentColor!important;
    stroke-width:1.8!important;
    stroke-linecap:round!important;
    stroke-linejoin:round!important;
    transition:transform .18s ease!important;
}
#lasto-site-header .lasto-nav-dropdown.is-open>.lasto-nav-dropdown-toggle svg,
#lasto-site-header .lasto-nav-dropdown:focus-within>.lasto-nav-dropdown-toggle svg{transform:rotate(180deg)!important;}
#lasto-site-header .lasto-nav-dropdown-menu{
    position:absolute!important;
    z-index:20!important;
    top:calc(100% - 3px)!important;
    left:50%!important;
    right:auto!important;
    display:block!important;
    min-width:250px!important;
    height:auto!important;
    margin:0!important;
    padding:12px!important;
    border:1px solid var(--lasto-nav-border)!important;
    border-radius:14px!important;
    background:var(--lasto-nav-panel)!important;
    box-shadow:var(--lasto-nav-shadow)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translate(-50%,-8px)!important;
    transition:opacity .18s ease,transform .18s ease,visibility .18s ease!important;
}
#lasto-site-header .lasto-shop-menu{
    display:grid!important;
    grid-template-columns:190px 1px 1fr!important;
    gap:10px!important;
    width:560px!important;
}
#lasto-site-header .lasto-about-menu{width:270px!important;}
#lasto-site-header .lasto-nav-dropdown:hover>.lasto-nav-dropdown-menu,
#lasto-site-header .lasto-nav-dropdown:focus-within>.lasto-nav-dropdown-menu,
#lasto-site-header .lasto-nav-dropdown.is-open>.lasto-nav-dropdown-menu{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:translate(-50%,0)!important;
}
#lasto-site-header .lasto-dropdown-primary-links,
#lasto-site-header .lasto-dropdown-category-links{display:grid!important;gap:3px!important;align-content:start!important;}
#lasto-site-header .lasto-dropdown-divider{display:block!important;width:1px!important;background:var(--lasto-nav-border)!important;}
#lasto-site-header .lasto-nav-dropdown-menu a{
    position:relative!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    width:100%!important;
    height:auto!important;
    min-height:42px!important;
    margin:0!important;
    padding:10px 12px!important;
    border:0!important;
    border-radius:9px!important;
    background:transparent!important;
    color:var(--lasto-nav-text)!important;
    box-shadow:none!important;
    text-decoration:none!important;
    text-transform:none!important;
    text-shadow:none!important;
    font-family:"Montserrat",Arial,sans-serif!important;
    font-size:12px!important;
    font-weight:600!important;
    line-height:1.35!important;
    transform:none!important;
}
#lasto-site-header .lasto-nav-dropdown-menu a:hover,
#lasto-site-header .lasto-nav-dropdown-menu a.active{
    color:#a992ff!important;
    background:var(--lasto-nav-hover)!important;
}
#lasto-site-header .lasto-nav-dropdown-menu a::after{display:none!important;content:none!important;}
#lasto-site-header .lasto-careers-link small{
    padding:4px 7px!important;
    border-radius:999px!important;
    color:#fff!important;
    background:linear-gradient(135deg,#7b3ff2,#5b28dc)!important;
    font-size:9px!important;
    line-height:1!important;
    font-weight:700!important;
    white-space:nowrap!important;
}
#lasto-site-header .lasto-mobile-nav-actions{display:none!important;}

/* Tablet/mobile */
@media (max-width:1180px){
    :root{--lasto-header-top-height:72px;}
    #lasto-site-header .lasto-header-container,
    #lasto-site-header .lasto-nav-container{width:min(100% - 32px,1100px)!important;}
    #lasto-site-header .header-inner{
        width:min(100% - 32px,1100px)!important;
        gap:10px!important;
    }
    #lasto-site-header .lasto-logo-link,
    #lasto-site-header .logo-link{flex-basis:146px!important;width:146px!important;height:52px!important;}
    #lasto-site-header .logo-link img{width:142px!important;height:52px!important;max-width:142px!important;max-height:52px!important;}
    #lasto-site-header .lasto-header-search,
    #lasto-site-header .search-form{
        display:block!important;
        flex:1 1 500px!important;
        width:auto!important;
        max-width:460px!important;
        height:44px!important;
        min-height:44px!important;
    }
    #lasto-site-header .lasto-header-search input{height:44px!important;min-height:44px!important;font-size:12px!important;}
    #lasto-site-header .lasto-header-search button{top:4px!important;right:4px!important;width:36px!important;height:36px!important;min-width:36px!important;min-height:36px!important;}
    #lasto-site-header .header-store-link{display:none!important;}
    #lasto-site-header .header-whatsapp,
    #lasto-site-header .site-theme-toggle,
    #lasto-site-header .mobile-menu-toggle{
        display:inline-flex!important;
        width:42px!important;
        min-width:42px!important;
        height:42px!important;
        min-height:42px!important;
        padding:0!important;
        border-radius:9px!important;
    }
    #lasto-site-header .header-whatsapp span,
    #lasto-site-header .site-theme-toggle-label{display:none!important;}
    #lasto-site-header .mobile-menu-toggle{
        border:1px solid #566174!important;
        background:rgba(255,255,255,.03)!important;
        color:#fff!important;
        align-items:center!important;
        justify-content:center!important;
    }
    html[data-site-theme="light"] #lasto-site-header .mobile-menu-toggle{border-color:#566174!important;background:rgba(255,255,255,.03)!important;color:#fff!important;}
    #lasto-site-header .mobile-menu-toggle .icon{width:20px!important;height:20px!important;}

    #lasto-site-header .lasto-primary-nav,
    #lasto-site-header .main-nav{
        position:absolute!important;
        top:var(--lasto-header-top-height)!important;
        left:0!important;
        right:0!important;
        display:block!important;
        width:100%!important;
        height:auto!important;
        min-height:0!important;
        max-height:calc(100dvh - var(--lasto-header-top-height))!important;
        overflow:auto!important;
        opacity:0!important;
        visibility:hidden!important;
        pointer-events:none!important;
        transform:translateY(-8px)!important;
        border-bottom:1px solid var(--lasto-nav-border)!important;
        background:var(--lasto-nav-panel)!important;
        box-shadow:var(--lasto-nav-shadow)!important;
        transition:opacity .18s ease,transform .18s ease,visibility .18s ease!important;
    }
    body.mobile-menu-open #lasto-site-header .lasto-primary-nav{
        opacity:1!important;
        visibility:visible!important;
        pointer-events:auto!important;
        transform:translateY(0)!important;
    }
    #lasto-site-header .lasto-primary-nav .nav-inner,
    #lasto-site-header .lasto-primary-nav .lasto-nav-container{
        display:block!important;
        width:100%!important;
        height:auto!important;
        min-height:0!important;
        margin:0!important;
        padding:12px 18px 20px!important;
    }
    #lasto-site-header .lasto-navbar-menu{
        display:flex!important;
        flex-direction:column!important;
        align-items:stretch!important;
        justify-content:flex-start!important;
        width:100%!important;
        height:auto!important;
        min-height:0!important;
        gap:4px!important;
    }
    #lasto-site-header .lasto-top-nav-link,
    #lasto-site-header .lasto-nav-dropdown-toggle{
        justify-content:space-between!important;
        width:100%!important;
        height:42px!important;
        min-height:42px!important;
        padding:0 14px!important;
        border-radius:9px!important;
        font-size:12px!important;
        text-align:left!important;
    }
    #lasto-site-header .lasto-top-nav-link.active,
    #lasto-site-header .lasto-top-nav-link[aria-current="page"],
    #lasto-site-header .lasto-nav-dropdown.active>.lasto-nav-dropdown-toggle{padding:0 14px!important;}
    #lasto-site-header .lasto-nav-dropdown{
        display:block!important;
        width:100%!important;
        height:auto!important;
        min-height:0!important;
    }
    #lasto-site-header .lasto-nav-dropdown-menu,
    #lasto-site-header .lasto-shop-menu,
    #lasto-site-header .lasto-about-menu{
        position:static!important;
        display:none!important;
        grid-template-columns:1fr!important;
        width:100%!important;
        min-width:0!important;
        margin:4px 0 8px!important;
        padding:6px 0 6px 14px!important;
        gap:3px!important;
        border:0!important;
        border-left:2px solid var(--lasto-nav-border)!important;
        border-radius:0!important;
        background:transparent!important;
        box-shadow:none!important;
        opacity:1!important;
        visibility:visible!important;
        pointer-events:auto!important;
        transform:none!important;
    }
    #lasto-site-header .lasto-nav-dropdown.is-open>.lasto-nav-dropdown-menu{display:grid!important;}
    #lasto-site-header .lasto-dropdown-divider{display:none!important;}
    #lasto-site-header .lasto-nav-dropdown-menu a{min-height:43px!important;padding:9px 12px!important;font-size:12px!important;}
    #lasto-site-header .lasto-mobile-nav-actions{
        display:grid!important;
        grid-template-columns:1fr 1fr!important;
        gap:10px!important;
        margin-top:10px!important;
        padding-top:14px!important;
        border-top:1px solid var(--lasto-nav-border)!important;
    }
    #lasto-site-header .lasto-mobile-nav-actions a{
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        min-height:46px!important;
        padding:0 13px!important;
        border:1px solid var(--lasto-nav-border)!important;
        border-radius:9px!important;
        background:var(--lasto-nav-bg)!important;
        color:var(--lasto-nav-text)!important;
        text-decoration:none!important;
        font-size:12px!important;
        font-weight:700!important;
    }
    #lasto-site-header .lasto-mobile-nav-actions a:last-child{border-color:#13c76b!important;background:#13c76b!important;color:#fff!important;}
}

@media (max-width:767px){
    :root{--lasto-header-top-height:68px;}
    #lasto-site-header .lasto-header-container{width:calc(100% - 24px)!important;}
    #lasto-site-header .header-inner{width:calc(100% - 24px)!important;gap:7px!important;}
    #lasto-site-header .lasto-logo-link,
    #lasto-site-header .logo-link{flex-basis:122px!important;width:122px!important;height:46px!important;}
    #lasto-site-header .logo-link img{width:119px!important;height:46px!important;max-width:119px!important;max-height:46px!important;}
    #lasto-site-header .lasto-header-search,
    #lasto-site-header .search-form{
        position:fixed!important;
        z-index:1100!important;
        top:76px!important;
        left:12px!important;
        right:12px!important;
        display:none!important;
        width:auto!important;
        max-width:none!important;
        height:42px!important;
        min-height:42px!important;
        filter:drop-shadow(0 14px 28px rgba(0,0,0,.28))!important;
    }
    body.mobile-search-open #lasto-site-header .lasto-header-search{display:block!important;}
    #lasto-site-header .lasto-header-search input{height:42px!important;min-height:42px!important;}
    #lasto-site-header .lasto-header-search button{top:4px!important;width:36px!important;height:36px!important;min-width:36px!important;min-height:36px!important;}
    #lasto-site-header .mobile-search-toggle{
        display:inline-flex!important;
        align-items:center!important;
        justify-content:center!important;
        width:36px!important;
        min-width:36px!important;
        height:36px!important;
        min-height:36px!important;
        padding:0!important;
        border:1px solid #566174!important;
        border-radius:9px!important;
        background:rgba(255,255,255,.03)!important;
        color:#fff!important;
    }
    html[data-site-theme="light"] #lasto-site-header .mobile-search-toggle{border-color:#566174!important;background:rgba(255,255,255,.03)!important;color:#fff!important;}
    #lasto-site-header .mobile-search-toggle .icon{width:17px!important;height:17px!important;}
    #lasto-site-header .header-whatsapp{display:none!important;}
    #lasto-site-header .site-theme-toggle,
    #lasto-site-header .mobile-search-toggle,
    #lasto-site-header .mobile-menu-toggle{width:36px!important;min-width:36px!important;height:36px!important;min-height:36px!important;}
    #lasto-site-header .header-actions{gap:5px!important;}
    #lasto-site-header .lasto-primary-nav .nav-inner,
    #lasto-site-header .lasto-primary-nav .lasto-nav-container{padding:10px 12px 18px!important;}
    #lasto-site-header .lasto-mobile-nav-actions{grid-template-columns:1fr!important;}
}

@media (max-width:390px){
    #lasto-site-header .lasto-logo-link,
    #lasto-site-header .logo-link{flex-basis:106px!important;width:106px!important;}
    #lasto-site-header .logo-link img{width:103px!important;max-width:103px!important;}
}

@media (prefers-reduced-motion:reduce){
    #lasto-site-header *,
    #lasto-site-header *::before,
    #lasto-site-header *::after{transition:none!important;animation:none!important;}
}

/* =========================================================
   MOBILE NAVIGATION ISOLATION ROOT FIX — 2026-08-10
   <=768px uses dedicated markup/classes. The legacy navbar is
   hidden on phone widths, so old dropdown rules cannot reserve
   space or make submenu text invisible.
   ========================================================= */
#lasto-site-header .lasto-mobile-navigation{display:none!important;}

@media (max-width:768px){
    #lasto-site-header .lasto-primary-nav .lasto-navbar-menu,
    #lasto-site-header .lasto-primary-nav .nav-links.navbar-menu{
        display:none!important;
    }

    #lasto-site-header .lasto-mobile-navigation{
        --lasto-mobile-nav-item:rgba(255,255,255,.035);
        --lasto-mobile-nav-item-hover:rgba(124,92,255,.12);
        --lasto-mobile-nav-text:var(--lasto-nav-text,#e8ecf5);
        --lasto-mobile-nav-muted:#aeb8c9;
        --lasto-mobile-nav-border:var(--lasto-nav-border,rgba(148,163,184,.24));
        display:block!important;
        width:100%!important;
        min-width:0!important;
        margin:0!important;
        padding:0!important;
        color:var(--lasto-mobile-nav-text)!important;
        font-family:"Montserrat",Arial,sans-serif!important;
    }

    html[data-site-theme="light"] #lasto-site-header .lasto-mobile-navigation{
        --lasto-mobile-nav-item:#f7f8fb;
        --lasto-mobile-nav-item-hover:#f0ecff;
        --lasto-mobile-nav-text:#1d2330;
        --lasto-mobile-nav-muted:#687386;
        --lasto-mobile-nav-border:#e1e5ed;
    }
    html[data-site-theme="dark"] #lasto-site-header .lasto-mobile-navigation{
        --lasto-mobile-nav-item:#151f31;
        --lasto-mobile-nav-item-hover:#1d2940;
        --lasto-mobile-nav-text:#f2f5fb;
        --lasto-mobile-nav-muted:#aeb8c9;
        --lasto-mobile-nav-border:#2d3a50;
    }

    #lasto-site-header .lasto-mobile-nav-list{
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:7px!important;
        width:100%!important;
        min-width:0!important;
        margin:0!important;
        padding:0!important;
    }

    #lasto-site-header .lasto-mobile-nav-link,
    #lasto-site-header .lasto-mobile-nav-group-toggle,
    #lasto-site-header .lasto-mobile-nav-sublink,
    #lasto-site-header .lasto-mobile-nav-quick-actions a{
        box-sizing:border-box!important;
        -webkit-appearance:none!important;
        appearance:none!important;
        text-decoration:none!important;
        text-shadow:none!important;
        text-transform:none!important;
        letter-spacing:0!important;
        opacity:1!important;
        visibility:visible!important;
        filter:none!important;
        clip:auto!important;
        clip-path:none!important;
        -webkit-text-fill-color:currentColor!important;
    }

    #lasto-site-header .lasto-mobile-nav-link,
    #lasto-site-header .lasto-mobile-nav-group-toggle{
        position:relative!important;
        display:flex!important;
        align-items:center!important;
        justify-content:space-between!important;
        width:100%!important;
        min-width:0!important;
        min-height:52px!important;
        height:auto!important;
        margin:0!important;
        padding:12px 16px!important;
        border:1px solid var(--lasto-mobile-nav-border)!important;
        border-radius:12px!important;
        background:var(--lasto-mobile-nav-item)!important;
        color:var(--lasto-mobile-nav-text)!important;
        box-shadow:none!important;
        font-family:"Montserrat",Arial,sans-serif!important;
        font-size:13px!important;
        line-height:1.25!important;
        font-weight:800!important;
        text-align:left!important;
        cursor:pointer!important;
    }
    #lasto-site-header .lasto-mobile-nav-link:hover,
    #lasto-site-header .lasto-mobile-nav-group-toggle:hover{
        background:var(--lasto-mobile-nav-item-hover)!important;
        color:var(--lasto-mobile-nav-text)!important;
    }
    #lasto-site-header .lasto-mobile-nav-link.is-active,
    #lasto-site-header .lasto-mobile-nav-link[aria-current="page"],
    #lasto-site-header .lasto-mobile-nav-group.is-active>.lasto-mobile-nav-group-toggle{
        border-color:transparent!important;
        background:linear-gradient(135deg,#5428e8,#6938ff)!important;
        color:#fff!important;
        box-shadow:0 10px 24px rgba(89,48,232,.22)!important;
    }

    #lasto-site-header .lasto-mobile-nav-group{
        display:block!important;
        width:100%!important;
        min-width:0!important;
        height:auto!important;
        min-height:0!important;
        margin:0!important;
        padding:0!important;
        overflow:visible!important;
    }
    #lasto-site-header .lasto-mobile-nav-group-toggle svg{
        display:block!important;
        flex:0 0 16px!important;
        width:16px!important;
        height:16px!important;
        margin-left:12px!important;
        fill:none!important;
        stroke:currentColor!important;
        stroke-width:2!important;
        stroke-linecap:round!important;
        stroke-linejoin:round!important;
        transform:none!important;
        transition:transform .16s ease!important;
    }
    #lasto-site-header .lasto-mobile-nav-group.is-open>.lasto-mobile-nav-group-toggle svg{
        transform:rotate(180deg)!important;
    }

    #lasto-site-header .lasto-mobile-nav-submenu[hidden]{display:none!important;}
    #lasto-site-header .lasto-mobile-nav-submenu{
        position:static!important;
        z-index:auto!important;
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:5px!important;
        width:100%!important;
        min-width:0!important;
        height:auto!important;
        min-height:0!important;
        max-height:none!important;
        margin:7px 0 2px!important;
        padding:5px 0 5px 12px!important;
        overflow:visible!important;
        border:0!important;
        border-left:2px solid var(--lasto-mobile-nav-border)!important;
        border-radius:0!important;
        background:transparent!important;
        box-shadow:none!important;
        opacity:1!important;
        visibility:visible!important;
        pointer-events:auto!important;
        transform:none!important;
    }

    #lasto-site-header .lasto-mobile-nav-sublink{
        position:relative!important;
        display:flex!important;
        align-items:center!important;
        justify-content:space-between!important;
        gap:10px!important;
        width:100%!important;
        min-width:0!important;
        min-height:44px!important;
        height:auto!important;
        margin:0!important;
        padding:10px 13px!important;
        overflow:visible!important;
        border:1px solid transparent!important;
        border-radius:10px!important;
        background:transparent!important;
        color:var(--lasto-mobile-nav-text)!important;
        box-shadow:none!important;
        font-family:"Montserrat",Arial,sans-serif!important;
        font-size:12px!important;
        line-height:1.35!important;
        font-weight:650!important;
        white-space:normal!important;
        cursor:pointer!important;
    }
    #lasto-site-header .lasto-mobile-nav-sublink:hover{
        border-color:var(--lasto-mobile-nav-border)!important;
        background:var(--lasto-mobile-nav-item-hover)!important;
        color:var(--lasto-mobile-nav-text)!important;
    }
    #lasto-site-header .lasto-mobile-nav-sublink.is-active,
    #lasto-site-header .lasto-mobile-nav-sublink[aria-current="page"]{
        border-color:rgba(124,92,255,.35)!important;
        background:var(--lasto-mobile-nav-item-hover)!important;
        color:#a991ff!important;
    }
    html[data-site-theme="light"] #lasto-site-header .lasto-mobile-nav-sublink.is-active,
    html[data-site-theme="light"] #lasto-site-header .lasto-mobile-nav-sublink[aria-current="page"]{
        color:#5b36e9!important;
    }
    #lasto-site-header .lasto-mobile-nav-sublink-label{
        display:block!important;
        min-width:0!important;
        color:inherit!important;
        opacity:1!important;
        visibility:visible!important;
        font-size:inherit!important;
        line-height:inherit!important;
        font-weight:inherit!important;
        white-space:normal!important;
        -webkit-text-fill-color:currentColor!important;
    }
    #lasto-site-header .lasto-mobile-nav-sublink-note{
        display:inline-flex!important;
        flex:0 0 auto!important;
        margin:0!important;
        padding:3px 6px!important;
        border-radius:999px!important;
        background:#6237ed!important;
        color:#fff!important;
        font-size:9px!important;
        line-height:1!important;
        font-weight:750!important;
        white-space:nowrap!important;
        -webkit-text-fill-color:#fff!important;
    }

    #lasto-site-header .lasto-mobile-nav-quick-actions{
        display:grid!important;
        grid-template-columns:1fr!important;
        gap:8px!important;
        width:100%!important;
        margin:12px 0 0!important;
        padding:12px 0 0!important;
        border-top:1px solid var(--lasto-mobile-nav-border)!important;
    }
    #lasto-site-header .lasto-mobile-nav-quick-actions a{
        display:flex!important;
        align-items:center!important;
        justify-content:center!important;
        gap:8px!important;
        width:100%!important;
        min-height:46px!important;
        margin:0!important;
        padding:0 13px!important;
        border:1px solid var(--lasto-mobile-nav-border)!important;
        border-radius:10px!important;
        background:var(--lasto-mobile-nav-item)!important;
        color:var(--lasto-mobile-nav-text)!important;
        font-family:"Montserrat",Arial,sans-serif!important;
        font-size:12px!important;
        font-weight:750!important;
    }
    #lasto-site-header .lasto-mobile-nav-quick-actions a:last-child{
        border-color:#13c76b!important;
        background:#13c76b!important;
        color:#fff!important;
        -webkit-text-fill-color:#fff!important;
    }
    #lasto-site-header .lasto-mobile-nav-quick-actions .icon{
        width:17px!important;
        height:17px!important;
    }
}
