.auth-header {
    width: 100%;
    background: #fff;
    padding: 20px 30px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.auth-header__inner {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-header__logo img {
    height: 42px;
    width: auto;
}

.auth-header__lang select {
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    color: #0F2A3D;
    background: #fff;
    cursor: pointer;
}

.auth-header__lang select:focus {
    outline: none;
}

.right-menu {
    list-style: none;
    margin: 5px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.change-locale {
    position: relative;
    display: inline-block;
    min-width: 55px;
}

.locale-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 0;
    border-radius: 6px;
    color: #0f2a3d;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
}

.change-locale .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 100%;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d6dce5;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(15, 42, 61, 0.12);
    z-index: 100;

    display: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .15s ease, transform .15s ease;
}

.locale-current__chevron {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    transform: rotate(0);
    transform-origin: center;
    transition: transform .15s ease;
}

.change-locale:hover .sub-menu,
.change-locale:focus-within .sub-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.sub-menu__item {
    list-style: none;
}

.sub-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 8px 12px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0f2a3d;
    text-decoration: none;
}

.sub-menu__item.is-current .sub-menu__link {
    pointer-events: none;
    opacity: 1;
}

.sub-menu__link:hover {
    background: #F8FAFB;
    color: #0E2F4B;
}

.sub-menu__check {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sub-menu__check img {
    width: 16px;
    height: 16px;
    display: block;
}

.change-locale:hover .locale-current__chevron,
.change-locale:focus-within .locale-current__chevron {
    transform: rotate(180deg);
}

/* ===== Mini top banner above header ===== */
.top-mini-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: #FFFBF1;
    border-bottom: 1px solid #E6EDF1;
    z-index: 1031;
    display: flex;
    align-items: center;
}

.top-mini-banner__link {
    width: 100%;
    height: 12px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0E2B44;
    font-size: 13px;
    line-height: 1;
}

.top-mini-banner__link:hover {
    background: #F3F6F8;
}

.top-mini-banner__ico,
.top-mini-banner__arrow {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.top-mini-banner__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-header {
    top: 28px;
}

.main-wrapper {
    padding-top: calc(32px + 90px + 28px);
}

/* 3) sidebar також опускаємо */
.sidebar {
    top: calc(90px + 28px);
}

/* 4) якщо хочеш щоб тости не налазили на банер */
#toast-container {
    top: calc(100px + 28px);
}

/* Mobile: менший горизонтальний паддінг */
@media (max-width: 575.98px) {
    .top-mini-banner__link {
        padding: 0 16px;
    }
}