/* ==========================================================
   HOSTIVIQ MOBILE NAVBAR
========================================================== */

.hostiva-mobile{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:1100;
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    box-shadow:0 5px 20px rgba(15,23,42,.06);
}

.hostiva-mobile-header{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 16px;
    gap:12px;
}

.hostiva-mobile-toggle{
    width:46px;
    height:46px;
    border:none;
    border-radius:12px;
    background:#f8fafc;
    color:#0f172a;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.hostiva-mobile-toggle:hover{
    background:#3976ff;
    color:#fff;
}

.hostiva-mobile-brand{
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
    text-decoration:none;
}

.hostiva-mobile-brand-icon{
    width:46px;
    height:46px;
    border-radius:14px;
    background:#3976ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.hostiva-mobile-brand-text{
    min-width:0;
}

.hostiva-mobile-brand-text strong{
    display:block;
    color:#0f172a;
    font-size:20px;
    font-weight:800;
    line-height:1.1;
}

.hostiva-mobile-brand-text small{
    display:block;
    color:#3976ff;
    font-size:11px;
    white-space:nowrap;
}

.hostiva-mobile-cart{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid #e5e7eb;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#0f172a;
    font-size:22px;
    position:relative;
    flex-shrink:0;
}

.hostiva-mobile-cart:hover{
    background:#2355d4;
    color:#fff;
}

.hostiva-mobile-nav{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.hostiva-mobile-nav a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    border-radius:12px;
    color:#334155;
    text-decoration:none;
    font-weight:600;
    transition:.25s;
}

.hostiva-mobile-nav a:hover{
    background:#eff6ff;
    color:#2355d4;
}

.hostiva-mobile-nav i{
    width:22px;
    text-align:center;
}

.cart-badge{
    position:absolute;
    top:-5px;
    right:-5px;
    min-width:18px;
    height:18px;
    border-radius:18px;
    background:#ef4444;
    color:#fff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 5px;
}