.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    justify-content: space-between;
    padding: 8px 32px;
    background: var(--color-background);
    width: 100%;

    position: relative;
    z-index: 10;

    @media (max-width: 768px) {
        display: none;
    }
}

.navbar__left {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 320px;
}

.navbar__logo {
    display: block;
    width: auto;
    height: 23px;
    width: 114px;
}

.navbar__right {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.navbar__link {
    font: 500 15px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.navbar__account {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.navbar__account .navbar__chevron {
    display: block;
    width: 18px;
    height: 18px;
}

.navbar__auth {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar__auth-link {
    font: 500 15px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-align: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.navbar__auth-separator {
    font: 500 15px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-align: center;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.navbar-mobile {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-background);

    @media (max-width: 768px) {
        display: block;
    }

    &::after {
        content: "";
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        visibility: hidden;
    }
}

.navbar-mobile--open {

    &::after {
        opacity: 1;
        visibility: visible;
    }

    .navbar-mobile__body {
        transform: translateX(0);
    }
}

.navbar-mobile__header {
    padding: 10px 14px;
    background: var(--color-background);
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.navbar-mobile__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 35px);
    width: calc(100vw - 35px);
    overflow-y: auto;
    padding: 0 16px 32px;
    background: var(--color-background);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: fixed;

    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
        display: none;
    }
}

.navbar-mobile__nav-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.navbar-mobile__nav-link {
    font: 500 13px/1.2 'Inter';
    color: var(--color-burn-earth);
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.navbar-mobile__divider {
    height: 1px;
    background: var(--color-burn-earth);
    opacity: 0.15;
    width: 100%;
}
.navbar-mobile__logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    > img {
        height: 18px;
        width: 90px;
    }
}

.navbar-mobile__menu {
    display: block;
    cursor: pointer;
    font: 500 13px/1.2 'Inter';
}

.footer {
    padding: 32px 16px 24px;
    background: var(--color-background);
    width: 100%;

    @media (max-width: 768px) {
        padding: 32px 16px 16px;
    }
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: var(--max-content-width);
    margin: 0 auto;

    @media (max-width: 768px) {
        gap: 48px;
    }
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

    @media (max-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 16px;
    }
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    padding-bottom: 8px;
}

.footer__column--full {
    @media (max-width: 768px) {
        grid-column: 1 / -1;
    }
}

.footer__column-heading {
    font: 500 16px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-transform: uppercase;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.footer__column-link {
    font: 500 16px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-decoration: none;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.footer__socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.footer__social-icon img {
    display: block;
    width: 20px;
    height: 20px;
}

.footer__complaint {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__complaint-text {
    font: 500 12px/1.2 'Inter';
    color: var(--color-burn-earth);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: var(--max-content-width);
    margin: 48px auto 0;
    width: 100%;

    @media (max-width: 768px) {
        gap: 16px;
        margin: 48px auto 0;
    }
}

.footer__divider {
    width: 100%;
    height: 0;
    border-top: 1px solid var(--color-burn-earth);
}

.footer__divider--desktop {
    @media (max-width: 768px) {
        display: none;
    }
}

.footer__divider--mobile {
    display: none;

    @media (max-width: 768px) {
        display: block;
        width: 100%;
        height: 0;
        border-top: 1px solid var(--color-burn-earth);
    }
}

.footer__bottom-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer__copyright {
    display: flex;
    flex: 1 0 0;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.footer__copyright-logo {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer__copyright-text {
    font: 500 12px/1.2 'Inter';
    color: var(--color-burn-earth);
}

.footer__back-to-top {
    font: 500 16px/1.2 'Inter';
    color: var(--color-burn-earth);
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    cursor: pointer;
}

.footer__back-to-top--desktop {
    @media (max-width: 768px) {
        display: none;
    }
}

.footer__back-to-top--mobile {
    display: none;

    @media (max-width: 768px) {
        display: block;
        font: 500 14px/1.2 'Inter';
        color: var(--color-burn-earth);
        text-decoration: underline;
        text-underline-offset: 2px;
        text-align: right;
    }
}
