.page__header {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
.header__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.header__title {
    text-align: left;
    color: var(--black--black10, #222324);
    font-size: 24px;
    font-weight: 700;
    line-height: 31px; /* 129.167% */
}
.fast-links__top {
    display: flex;
    flex: 1 1 auto;
    gap: 24px;
    justify-content: space-between;
}
.fast-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fast-link {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 100px;
    background: var(--grey--grey90, #F7F7F7);
    overflow: hidden;
    color: var(--black--black10, #222324);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
    transition: background .2s ease;
}
.fast-link:hover {
    background: var(--grey--grey80, #D7D7D7);
}
.header__link {
    background-image: url("/img/catalog/map-bg.jpg");
    background-size:cover;
    background-position:center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 68px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.header__link::before,
.header__link::after {
    content:"";
    position:absolute;
    inset:0;
    z-index: 0;
    transition: opacity .2s ease;
}
.header__link::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 1;
}
.header__link::after{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: 0;
}
.header__link:hover::after,
.header__link:focus::after,
.header__link:focus-within::after{
    opacity:1;
}
.map-link__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: var(--white--white100, #FFFFFF);
    border-radius: 8px;
    z-index: 2;
}
.map-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-link__text {
    color: var(--black--black10, #222324);
    font-size: 16px;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
}
.catalog-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}
.catalog-container {
    margin-bottom: 24px;
}
.footer__recommendation {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.footer__title {
    color: var(--black--black10, #222324);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%; /* 28.8px */
}
.footer__links {}
.mobile-map-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;

    display: none; /* скрыто по умолчанию */
}

@media only screen and (max-width: 768px) {
    .header__fast-links {
        display: none;
    }
    .header__link {
        display: none;
    }
    .catalog-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .footer__title {
        font-size: 20px;
    }
    .mobile-map-button {
        display: flex;
    }
}