/* ===== HEADER CLEAN V1 ===== */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(7,63,159,.08);
    box-shadow:0 10px 30px rgba(6,43,111,.06);
}

.site-header .header-inner{
    min-height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:12px 0;
}

.site-header .logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.site-header .logo img{
    width:122px;
    height:auto;
    display:block;
}

.site-header .nav{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.site-header .nav a{
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-size:14px;
    font-weight:900;
    color:#334155;
    transition:.2s ease;
}

.site-header .nav a:hover{
    background:#eff6ff;
    color:#073f9f;
    transform:translateY(-1px);
}

.site-header .header-nav-icon{
    width:18px;
    height:18px;
    min-width:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.site-header .header-nav-icon svg{
    width:18px;
    height:18px;
    stroke:#073f9f;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.site-header .header-access{
    background:#ffd21f;
    color:#062b6f!important;
    box-shadow:0 12px 24px rgba(255,210,31,.28);
}

.site-header .header-access:hover{
    background:#ffe15a!important;
}

.site-header .header-access-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#16a34a;
    box-shadow:0 0 0 4px rgba(22,163,74,.18);
}

.site-header .search-autocomplete{
    position:relative;
    flex-shrink:0;
}

.site-header .header-search{
    min-width:320px;
    min-height:52px;
    padding:6px;
    display:flex;
    align-items:center;
    gap:8px;
    background:#f8fafc;
    border:1px solid #dbe4f0;
    border-radius:999px;
    box-shadow:0 12px 28px rgba(6,43,111,.05);
}

.site-header .header-search-icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
}

.site-header .header-search-icon svg{
    width:18px;
    height:18px;
    stroke:#073f9f;
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.site-header .header-search input{
    flex:1;
    border:0;
    background:transparent;
    outline:none;
    color:#162033;
    font-size:14px;
}

.site-header .header-search button{
    height:40px;
    min-width:92px;
    border:0;
    border-radius:999px;
    background:#073f9f;
    color:#fff;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
}

.site-header .header-search button:hover{
    background:#062b6f;
}

@media(max-width:980px){

    .site-header .header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .site-header .header-search{
        width:100%;
        min-width:0;
    }

    .site-header .search-autocomplete{
        width:100%;
    }
}

@media(max-width:620px){

    .site-header .header-inner{
        gap:14px;
        min-height:auto;
    }

    .site-header .logo{
        width:100%;
        justify-content:center;
    }

    .site-header .logo img{
        width:96px;
    }

    .site-header .nav{
        width:100%;
        overflow:auto;
        flex-wrap:nowrap;
        padding-bottom:4px;
    }

    .site-header .nav::-webkit-scrollbar{
        display:none;
    }

    .site-header .nav a{
        white-space:nowrap;
        background:#f8fafc;
        border:1px solid #e5eaf2;
        min-height:42px;
        padding:0 14px;
        font-size:13px;
    }

    .site-header .header-search{
        min-height:48px;
    }

    .site-header .header-search button{
        min-width:82px;
        height:36px;
    }
}
