body.catalog-popup-opened {
    overflow: hidden;
}

.catalog-category-top-button {
    margin: 0 0 25px;
}

.catalog-category-intro {
    margin: 0;
}

.catalog-category-intro__text {
    margin-bottom: 20px;
}

.catalog-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s;
}

.catalog-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.catalog-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.catalog-popup__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 40px);
    padding: 40px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
}

.catalog-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.catalog-popup__title {
    margin: 0 40px 25px 0;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 767px) {
    .catalog-popup {
        padding: 10px;
    }

    .catalog-popup__dialog {
        max-height: calc(100vh - 20px);
        padding: 30px 20px 20px;
    }

    .catalog-popup__title {
        font-size: 22px;
    }
}