.section-navigation {
    background: rgba(250, 248, 243, 0.95);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    text-align: right;
    padding: 6px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 99;
}

.section-navigation.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.logged-in .section-navigation.fixed {
    top: 32px;
}

.section-navigation .navigation-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.section-navigation .navigation-wrapper::-webkit-scrollbar {
    display: none;
}

.section-navigation ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 32px;
    min-width: max-content;
}

.section-navigation li {
    flex: 0 0 auto;
}

.section-navigation a {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.375;
    position: relative;
    display: block;
    padding: 16px 0;
}

.section-navigation a.first {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
}

.section-navigation a:hover,
.section-navigation a:focus {
    text-decoration: none;
}

.section-navigation a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: transparent;
    position: absolute;
    bottom: 8px;
    left: 0;
    transition: all 300ms ease-out 0s;
}

.section-navigation a:hover:after,
.section-navigation a.active:after {
    background: var(--primary-sun);
}

@media (max-width: 1280px) {
    .section-navigation a {
        font-size: 14px;
        padding: 12px 0;
    }

    .section-navigation a.first {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .logged-in .section-navigation.fixed {
        top: 0;
    }

    .section-navigation ul {
        gap: 24px;
    }

    .section-navigation a,
    .section-navigation a.first {
        font-weight: 700;
        line-height: 1.285;
        padding: 10px 0;
    }

    .section-navigation a:after {
        bottom: 5px;
    }
}

@media (max-width: 576px) {
    .section-navigation .container {
        padding-right: 0;
    }

    .navigation-wrapper.at-scroll-end {
        padding-right: 24px;
    }
}