.site-header {
    background: #000;
    padding: 20px 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.account-link {
    color: #fff;
    font-size: 14px;
}

.menu-toggle {
    width: 25px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.site-logo img {
    width: 250px;
    display: block;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.user-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    max-width: 100%;
    height: 100vh;
    background: #111;
    z-index: 9999;
    transition: 0.4s ease;
    padding: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 9998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.mobile-menu-top h3 {
    color: #fff;
    font-size: 24px;
}

.menu-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list a {
    display: block;
    padding: 18px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.mobile-menu-list a:hover {
    color: red;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.mobile-user-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media(max-width: 767px) {

    .header-right span.name {
        display: none;
    }

    .site-logo img {
        width: 200px;
    }

}