@media (max-width: 768px) {

    .topbar {
        background: #f3f5f6;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .topbar__container {
        max-width: none;
        min-height: auto;
        padding: 8px 12px;
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .topbar__text {
        font-size: 12px;
        line-height: 1.2;
    }

    .topbar__info {
        display: flex !important;
        flex-direction: column;
        gap: 1px;
        font-size: 12px;
        line-height: 1.2;
        margin-top: 10px;
        color: #5c6b74;
    }

    .header__container {
        max-width: none;
        min-height: 72px;
        padding: 0 22px;
        gap: 12px;
    }

.catalog-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

    .logo img {
        width: 80px;
    }

    .nav,
    .header__service-btn,
    .site-search,
    .header__cart {
        display: none !important;
    }

    .header__actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .lang-switcher {
        display: flex !important;
        align-items: center;
    }

    .lang-switcher__link {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .burger {
        width: 34px;
        height: 34px;
        display: flex !important;
        position: relative;
        padding: 0;
    }

    .burger span {
        position: absolute;
        left: 5px;
        width: 24px;
        height: 2px;
        background: var(--color-dark);
        transition: 0.25s ease;
    }

    .burger span:nth-child(1) {
        top: 9px;
    }

    .burger span:nth-child(2) {
        top: 16px;
    }

    .burger span:nth-child(3) {
        top: 23px;
    }

    .burger.is-active span:nth-child(1) {
        top: 16px;
        transform: rotate(45deg);
    }

    .burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .burger.is-active span:nth-child(3) {
        top: 16px;
        transform: rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        top: 137px;
        right: -100%;
        z-index: 999;
        width: 100%;
        max-width: 390px;
        height: calc(100vh - 137px);
        background: #ffffff;
        box-shadow: -20px 0 60px rgba(0,0,0,0.12);
        transition: 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu.is-open {
        right: 0;
    }

    .mobile-menu__inner {
        padding: 52px 38px 34px;
    }

    .mobile-menu__list {
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__item {
        border-bottom: 1px solid rgba(5,33,48,0.12);
    }

    .mobile-menu__link {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 600;
        color: var(--color-dark);
    }

    .mobile-menu__item--parent > .mobile-menu__link svg {
        margin-left: 8px;
        transition: 0.25s ease;
    }

    .mobile-menu__item--parent.is-open > .mobile-menu__link svg {
        transform: rotate(180deg);
    }

    .mobile-menu__sublist {
        display: none;
        padding: 0 0 16px 18px;
    }

    .mobile-menu__item--parent.is-open > .mobile-menu__sublist {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu__sublist .mobile-menu__item {
        border-bottom: none;
    }

    .mobile-menu__sublist .mobile-menu__link {
        min-height: auto;
        font-size: 15px;
        font-weight: 500;
        color: #5c6b74;
    }
.mobile-menu {
    display: block;
}
    .mobile-menu__service {
        width: 100%;
        margin-top: 34px;
        min-height: 54px;
    }
}