.shpav-header {
    grid-area: site-header;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    user-select: none;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.shpav-1100 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
}

.brand {
    font-family: var(--font-family-menu);
    font-size: 1.4rem;
    white-space: nowrap;
    font-weight: var(--font-weight-700);
    text-decoration: none;
    background: var(--site-gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.burger {
    display: none;
    cursor: pointer;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    z-index: 110;
}

.burger svg {
    top: 2px;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--black);
}

.burger-icon {
    opacity: 1;
}

.burger.is-active .burger-icon {
    opacity: 0;
}

.login-btn {
    white-space: nowrap;
}

.shpav-1200 {
    padding-inline: 1rem;
}

.shpav-1221 {
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
}

.shpav-1211 {
    display: none;
    height: 3.2rem;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.shpav-1221 .home-icon {
    margin-right: 0.25rem;
}

.shpav-1221 .nav-icon {
    display: none;
}

.shpav-1221 li {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    padding-inline: 0.25rem;
}

.separator {
    color: var(--gray-200);
}

.shpav-1221 li a {
    font-family: var(--font-family-menu);
    display: flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    transition: color .15s ease, border-color .15s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    padding: 0.25rem;
    font-size: 0.9375rem;
}

.shpav-1221 li a.active {
    color: var(--blue-400);
    font-weight: 500;
    border-bottom: 2px solid var(--blue-400);
}

.shpav-1221 li a:hover,
.shpav-1221 li a.active:hover {
    color: var(--blue-400);
    border-bottom: 2px solid var(--blue-400);
}

@media (max-width: 1024px) and (min-width: 900px) {
    .shpav-1100 {
        gap: 6px;
        /* height: 3.5rem; */
        padding-inline: 0.5rem;
    }

    .brand {
        font-size: 1.3rem;
    }

    .shpav-1200 li a {
        font-size: 0.875rem;
    }
}

@media (max-width: 899px) {

    .shpav-1100 {
        gap: 6px;
        padding-block: 6px;
        padding-inline: 0.5rem;
    }


    .burger {
        display: block;
        z-index: 110;
    }

    .brand {
        font-size: 1.2rem;
    }

    .shpav-1200 {
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 0;
        left: -100%;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-sm);
        height: 100dvh;
        z-index: 100;
        background: var(--white);
        border-right: 1px solid var(--gray-200);
        width: min(85%, 320px);
    }

    .shpav-1200.is-open {
        left: 0;
    }

    .shpav-1211 {
        display: flex;
        flex: 0 0 var(--space-60);
    }

    .burger-close {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .burger-close svg {
        fill: var(--gray-900);
    }

    .shpav-1221 {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        flex: 1;
        overflow-y: auto;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        overscroll-behavior-y: contain;
        padding: 1rem 0.5rem;
    }

    .shpav-1221 .separator {
        display: none !important;
    }

    .shpav-1221 li {
        width: 100%;
        margin-block: 0.5rem;
    }

    .shpav-1221 li a {
        display: flex;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
        align-items: center;
        width: 100%;
        padding: 0.625rem;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .shpav-1221 .home-icon,
    .shpav-1221 .nav-icon {
        margin-right: 1rem;
        display: inline-block;
    }

    .shpav-1221 li a.active {
        background: var(--blue-100);
        color: var(--blue-400);
        border-bottom: none;
    }

    .shpav-1221 li a:hover,
    .shpav-1221 li a.active:hover {
        color: var(--blue-400);
        border-bottom: none;
    }
}

@media (max-width: 320px) {
    .shpav-1221 li a.active {
        background: var(--blue-100);
        color: var(--blue-400);
        border-bottom: none;
    }

    .shpav-1221 li a:hover,
    .shpav-1221 li a.active:hover {
        color: var(--blue-400);
        border-bottom: none;
    }

    .login-btn {
        display: none;
    }
}

input::-webkit-search-cancel-button,
input::-webkit-clear-button {
    display: none;
    -webkit-appearance: none;
}