/* =========================================================
   AKUVILLA — GLOBAL MOBILE HEADER
   File: assets/global/css/mobile-header.css
   Scope: Every public frontend page, viewport <= 680px.
   Desktop remains untouched.
========================================================= */

@media (max-width: 680px) {
    .akv-theme-header {
        top: 0 !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .akv-theme-header.is-scrolled {
        padding-top: 0 !important;
    }
}

/* Customer authentication summary */
.akv-account-summary{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    min-width:0;
    max-width:190px;
    line-height:1.15;
    text-align:right;
}
.akv-account-summary[hidden]{display:none!important}
.akv-account-greeting{
    font-size:10px;
    font-weight:700;
    letter-spacing:.02em;
    color:rgba(255,255,255,.62);
    white-space:nowrap;
}
.akv-account-name{
    display:block;
    max-width:190px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:12px;
    font-weight:800;
    color:rgba(255,255,255,.95);
}
@media (max-width: 767px){
    .akv-account-summary{display:none!important}
}
