/* RESET SAFE (pa kraze lòt paj) */
.site-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER WRAPPER */
.site-header {
    position: relative;
    z-index: 1000;
}

/* NAVBAR */
.site-header .admin-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(148,163,184,.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

/* LOGO */
.site-header .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* MENU */
.site-header ul {
    list-style: none;
    display: flex;
    gap: 6px;
}

.site-header ul li a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e5e7eb;
    transition: 0.3s ease;
}

.site-header ul li a:hover {
    background: rgba(56,189,248,.2);
}

/* TOGGLE */
.site-header .menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(51,65,85,.6);
    color: #e5e7eb;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .site-header .menu-toggle {
        display: block;
    }

    .site-header ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 260px;
        height: calc(100vh - 70px);
        background: rgba(26,32,44,.98);
        flex-direction: column;
        padding: 15px 0;
        gap: 0;
        transition: left .35s ease;
        border-right: 1px solid rgba(148,163,184,.15);
    }

    .site-header ul.show {
        left: 0;
    }

    .site-header ul li a {
        width: 100%;
        padding: 14px 22px;
        border-radius: 0;
    }
}
