.catalog-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 1060;
}
body.catalog-open .catalog-overlay {
    opacity: 1;
    visibility: visible;
}
.catalog-popup {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1061;
    display: none;
    background: transparent;
    overflow-x: hidden;
    margin-top: 8px;
}
body.catalog-open .catalog-popup {
    display: block;
}
.catalog-popup__inner {
    background: var(--color-bg-white);
    border-radius: var(--main-template-border-radius-elements, 4px);
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}
.catalog-popup__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    min-height: 0;
}
.catalog-popup .container {
    max-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.catalog-popup-section {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom: 24px;
}
.catalog-popup-section__title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}
.catalog-popup-section__img {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-white);
    margin-right: 20px;
    overflow: hidden;
}
.catalog-popup-section__img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.catalog-popup-section__title a {
    color: var(--color-text-base-black);
    text-decoration: none;
}
.catalog-popup-section__title a:hover {
    opacity: 0.8;
}
.catalog-sub li {
    list-style: none;
    margin: 4px 0;
}
.catalog-sub a {
    color: var(--color-text-base-black);
    text-decoration: none;
    font-size: 0.9em;
}
.catalog-sub a:hover {
    opacity: 0.8;
}
.catalog-sub .catalog-sub__all:after {
    color: var(--color-text-link-black);
    content: "\f105";
    font-family: FontAwesome;
    padding-left: 5px;
}
.catalog-brands {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 50px;
}
.catalog-brands__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -10px; 
}
.catalog-brands__list > * {
    margin-left: 10px;
}
.catalog-brands__list::-webkit-scrollbar {
    height: 3px;
}
.catalog-brands__list::-webkit-scrollbar-track {
    background: transparent;
}
.catalog-brands__list::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,.2);
    border-radius: 2px;
}
.catalog-brands__list {
    scrollbar-width: thin;
}
.catalog-brands__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    flex: 0 0 100px;
    flex-shrink: 0;
    box-sizing: border-box;
    border: 1px solid var(--color-border-grey-light);
    border-radius: var(--main-template-border-radius-elements, 4px);
    padding: 10px;
    background: #fff;
    overflow: hidden;
}
.catalog-brands__item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}
.catalog-brands__all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 50px;
    font-size: 0.9em;
    white-space: nowrap;
    text-decoration: none;
    color: var(--color-text-base-black);
}
.catalog-brands__all:after {
    color: var(--color-text-link-black);
    content: "\f105";
    font-family: FontAwesome;
    padding-left: 5px;
}
.catalog-brands__all:hover {
    opacity: 0.8;
}
.header-address__search-btn {
    width: 120px;
    min-width: 120px;
    height: 45px;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadada;
    background: #fff;
    border-radius: var(--main-template-border-radius-elements, 4px);
    line-height: 1;
    color: #333;
    margin-right: 10px;
    transition: background-color .15s ease, border-color .15s ease;
}
.catalog-btn__text {
    margin-left: 4px;
}
.catalog-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px; 
    vertical-align: middle;
    fill: currentColor;
}
.catalog-icon--close {
    display: none;
}
body.catalog-open .catalog-icon--grid {
    display: none;
}
body.catalog-open .catalog-icon--close {
    display: inline-block;
}
body.catalog-open .header-address__search-btn {
    position: relative;
    z-index: 1062;
}
.header-address__search-btn--dark {
    background: var(--main-template-color, #0088cc);
    border-color: var(--main-template-color, #0088cc);
    color: #fff;
}
#header .header-inner .header-address__search-btn--dark {
    border-color: var(--color-border-grey-light);
}
.header-address__search-btn--light {
    background: #fff;
    border-color: #dadada;
    color: #333;
}
.header-address__search-btn--dark:hover,
.header-address__search-btn--light:hover {
    opacity: 0.8;
}


