/* =========================================================
   SITE HEADER
========================================================= */

.site-header {
    height: 78px;
    background: #080b10;
    border-bottom: 1px solid #20252d;
    position: sticky;
    top: 0;
    z-index: 100;
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    color: var(--text);
    text-decoration: none;
}

.brand-logo {
    width: 46px;
    height: 46px;
    border: 2px solid var(--purple);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--purple);
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    font-size: 20px;
}

.brand-text small {
    font-size: 9px;
    color: #777d87;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   SEARCH
========================================================= */

.search-box {
    height: 42px;
    width: 300px;
    background: #171c23;
    border: 1px solid #242a33;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    box-sizing: border-box;
}

    .search-box input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        color: #ddd;
        text-align: right;
        font-family: inherit;
        font-size: 11px;
    }

        .search-box input::placeholder {
            color: #777d87;
        }

    .search-box i {
        flex-shrink: 0;
        color: var(--purple);
        font-size: 14px;
    }


/* =========================================================
   AUTH BUTTON
========================================================= */

.auth-button {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--purple);
    border-radius: 9px;
    background: var(--purple);
    color: #fff;
    padding: 0 17px;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .auth-button i {
        font-size: 12px;
    }

    .auth-button:hover {
        background: var(--purple-light);
        border-color: var(--purple-light);
    }

    .auth-button:active {
        transform: translateY(1px);
    }


/* =========================================================
   MOBILE ICONS
========================================================= */

.mobile-icon {
    display: none;
    border: 0;
    background: transparent;
    color: #d5d8dd;
    cursor: pointer;
}


/* =========================================================
   MOBILE DRAWER
========================================================= */

.mobile-drawer {
    display: none;
}
