.sb-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    pointer-events: none;
    user-select: none;
}

.sb-header a,
.sb-header button {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
}

.sb-header__announcement {
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    padding: 8px 12px;
}

.sb-header__announcement p {
    margin: 0;
}

.sb-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
}

.sb-header__side {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 72px;
}

.sb-header__side--right {
    justify-content: flex-end;
}

.sb-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 28px;
}

.sb-header__logo img {
    display: block;
    max-height: 24px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sb-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #111;
}

.sb-header__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.sb-header__icon--menu {
    flex-direction: column;
    gap: 4px;
    width: 22px;
}

.sb-header__icon--menu span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #111;
}

.sb-header__icon--desktop {
    display: none;
}

.sb-header__nav {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 24px 18px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sb-header__nav span {
    color: #111;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .sb-header__announcement {
        font-size: 12px;
        padding: 10px 16px;
    }

    .sb-header__bar {
        min-height: 72px;
        padding: 16px 40px;
    }

    .sb-header__logo {
        position: static;
        transform: none;
        padding-top: 0;
    }

    .sb-header__logo img {
        max-height: 28px;
        max-width: 220px;
    }

    .sb-header__icon--mobile {
        display: none;
    }

    .sb-header__icon--desktop {
        display: inline-flex;
    }

    .sb-header__nav {
        display: flex;
    }

    .sb-header__side {
        min-width: 120px;
        gap: 18px;
    }
}
