.catalog_page_body {
    background: #FFFFFF;
}

.catalog_page {
    overflow: visible;
}

.catalog_hero_block {
    padding: 42px 0 24px;
}

.catalog_hero h1 {
    max-width: 985px;
    margin-top: 22px;
}

.catalog_subnav {
    max-width: 790px;
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
}

.catalog_subnav a {
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.25s ease, text-underline-offset 0.25s ease;
}

.catalog_subnav a:hover,
.catalog_subnav a.is_active {
    color: #60534B;
    text-underline-offset: 6px;
}

.catalog_products_block {
    padding: 0 0 86px;
}

.catalog_layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}


/* Filters */

.catalog_filters {
    position: sticky;
    top: 108px;
    z-index: 15;
    padding: 28px 24px 30px;
    background: #F4F4F4;
    border-radius: 20px;
}

.catalog_filters_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.catalog_filters_head h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    color: #000000;
}

.catalog_filters_close {
    display: none;
}

.catalog_filter_form {
    display: flex;
    flex-direction: column;
}

.catalog_filter_group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog_filter_group:last-of-type {
    border-bottom: 0;
}

.catalog_filter_group_btn {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_filter_group_btn::after {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #988B83;
    border-bottom: 1.5px solid #988B83;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

.catalog_filter_group.is_open .catalog_filter_group_btn::after {
    transform: rotate(225deg) translate(-3px, -1px);
}

.catalog_filter_group_body {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    transition: max-height 0.32s ease, padding 0.32s ease;
}

.catalog_price_inputs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 10px;
}

.catalog_price_inputs label {
    position: relative;
    min-width: 0;
}

.catalog_price_inputs input {
    width: 100%;
    height: 34px;
    padding: 0 9px 0 26px;
    border: 0;
    border-radius: 30px;
    background: #FFFFFF;
    outline: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #000000;
}

.catalog_price_inputs label span {
    position: absolute;
    left: 9px;
    top: 50%;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
    transform: translateY(-50%);
    pointer-events: none;
}

.catalog_price_inputs>span {
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_check_chip,
.catalog_check_line {
    position: relative;
    cursor: pointer;
}

.catalog_check_chip input,
.catalog_check_line input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.catalog_check_chip span {
    min-height: 28px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #E8E8E8;
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #000000;
    transition: background 0.25s ease, color 0.25s ease;
}

.catalog_check_chip input:checked+span {
    background: #BCB5AF;
}

.catalog_color_list {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: unset;
    gap: 12px;
}

.catalog_check_line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_check_line::before {
    content: "";
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1px solid #8B8B8B;
    border-radius: 4px;
    background: #FFFFFF;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.catalog_check_line:has(input:checked)::before {
    border-color: #7F7470;
    background: radial-gradient(circle, #7F7470 0 5px, #FFFFFF 5px);
}

.catalog_color_dot {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: var(--color);
}

.catalog_filter_actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.catalog_apply_btn {
    min-width: 143px;
    height: 47px;
    padding: 0 24px;
    border-radius: 30px;
    background: #7F7470;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    transition: background 0.25s ease;
}

.catalog_apply_btn:hover {
    background: #60534B;
}

.catalog_clear_btn {
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #000000;
}


/* Content controls */

.catalog_content {
    min-width: 0;
}

.catalog_mobile_filter_toggle {
    display: none;
}

.catalog_quick_filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-bottom: 16px;
}

.catalog_quick_filters button {
    min-height: 28px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #F4F4F4;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    transition: background 0.25s ease;
}

.catalog_quick_filters button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #988B83;
    border-bottom: 1.5px solid #988B83;
    transform: rotate(45deg) translateY(-2px);
}

.catalog_quick_filters button.is_active {
    background: #BCB5AF;
}

.catalog_active_filters {
    min-height: 28px;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.catalog_filter_chip {
    min-height: 28px;
    padding: 5px 10px 5px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #BCB5AF;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    animation: catalogChipIn 0.22s ease both;
}

.catalog_filter_chip button {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    background: transparent;
}

.catalog_filter_chip button::before,
.catalog_filter_chip button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 1.5px;
    border-radius: 4px;
    background: #6D645E;
    transform: translate(-50%, -50%) rotate(45deg);
}

.catalog_filter_chip button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes catalogChipIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Product grid */

.catalog_products_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 315px));
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 58px;
}

.catalog_product_card {
    position: relative;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.catalog_product_card.is_hidden,
.catalog_product_card.is_limited_hidden {
    display: none;
}

.catalog_product_link {
    display: block;
    color: #000000;
}

.catalog_product_slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #D9D9D9;
}

.catalog_product_slider .swiper-wrapper,
.catalog_product_slider .swiper-slide {
    height: 100%;
}

.catalog_product_slider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.catalog_product_card:hover .catalog_product_slider img {
    transform: scale(1.035);
}

.catalog_slider_btn {
    position: absolute;
    z-index: 5;
    top: 136px;
    width: 42px;
    height: 42px;
    background: transparent;
}

.catalog_slider_prev {
    left: 12px;
}

.catalog_slider_next {
    right: 12px;
}

.catalog_slider_btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    border-left: 3px solid #FFFFFF;
    border-bottom: 3px solid #FFFFFF;
    opacity: 0.95;
    transition: opacity 0.25s ease;
}

.catalog_slider_btn:hover::before {
    opacity: 0.65;
}

.catalog_slider_prev::before {
    transform: translate(-35%, -50%) rotate(45deg);
}

.catalog_slider_next::before {
    transform: translate(-65%, -50%) rotate(-135deg);
}

.catalog_product_article {
    display: block;
    margin-top: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #676767;
}

.catalog_product_card h3 {
    min-height: 69px;
    margin-top: 13px;
    max-width: 315px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #000000;
}

.catalog_product_status {
    width: fit-content;
    min-height: 25px;
    margin-top: 13px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_product_status_in {
    background: #D4EDD2;
}

.catalog_product_status_out {
    background: #EDD8D2;
}

.catalog_product_card strong {
    display: block;
    margin-top: 28px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    color: #000000;
}

.catalog_empty {
    display: none;
    margin-top: 45px;
    padding: 28px;
    border-radius: 20px;
    background: #F4F4F4;
    font-size: 16px;
    line-height: 130%;
    color: #000000;
}

.catalog_empty.is_visible {
    display: block;
}

.catalog_pagination {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.catalog_load_more {
    background: transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    transition: color 0.25s ease;
}

.catalog_load_more:hover {
    color: #60534B;
}

.catalog_load_more.is_hidden {
    display: none;
}

.catalog_pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.catalog_pages button:not(.catalog_page_arrow) {
    min-width: 36px;
    height: 28px;
    padding: 0 14px;
    border-radius: 30px;
    background: #F4F4F4;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_pages button.is_active {
    background: #BCB5AF;
}

.catalog_page_arrow {
    position: relative;
    width: 28px;
    height: 28px;
    background: transparent;
}

.catalog_page_arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 1.5px solid #BCB5AF;
    border-bottom: 1.5px solid #BCB5AF;
}

.catalog_page_prev::before {
    transform: translate(-30%, -50%) rotate(45deg);
}

.catalog_page_next::before {
    transform: translate(-70%, -50%) rotate(-135deg);
}


/* ========================================================================== */


/* Media */


/* ========================================================================== */

@media (max-width: 1200px) {
    .catalog_layout {
        grid-template-columns: 260px minmax(0, 1fr);
        gap: 24px;
    }
    .catalog_products_grid {
        grid-template-columns: repeat(2, minmax(0, 315px));
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .catalog_hero_block {
        padding: 28px 0 24px;
    }
    .catalog_hero h1 {
        margin-top: 0;
        font-size: 30px;
        line-height: 130%;
    }
    .catalog_hero .service_breadcrumbs {
        display: none;
    }
    .catalog_subnav {
        margin-top: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .catalog_subnav::-webkit-scrollbar {
        display: none;
    }
    .catalog_subnav a {
        flex: 0 0 auto;
        font-size: 14px;
    }
    .catalog_products_block {
        padding-bottom: 50px;
    }
    .catalog_layout {
        display: block;
    }
    .catalog_filters {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 100;
        max-height: 84vh;
        overflow-y: auto;
        padding: 24px 21px 30px;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -24px 70px rgba(5, 9, 22, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(24px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    }
    .catalog_page.is_filters_open .catalog_filters {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .catalog_page.is_filters_open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(0, 0, 0, 0.22);
    }
    .catalog_filters_close {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
        background: transparent;
    }
    .catalog_filters_close::before,
    .catalog_filters_close::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 1.5px;
        border-radius: 4px;
        background: #6D645E;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .catalog_filters_close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .catalog_mobile_filter_toggle {
        width: 100%;
        min-height: 32px;
        margin-bottom: 20px;
        padding: 7px 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 30px;
        background: #F4F4F4;
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        color: #000000;
    }
    .catalog_mobile_filter_toggle svg {
        color: #988B83;
    }
    .catalog_quick_filters,
    .catalog_active_filters {
        display: none;
    }
    .catalog_products_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }
    .catalog_product_slider {
        aspect-ratio: 164 / 110;
        border-radius: 14px;
    }
    .catalog_slider_btn {
        display: none;
    }
    .catalog_product_article {
        margin-top: 8px;
        font-size: 12px;
        word-break: break-word;
    }
    .catalog_product_card h3 {
        min-height: auto;
        margin-top: 6px;
        font-size: 18px;
        line-height: 110%;
        word-break: break-word;
    }
    .catalog_product_status {
        min-height: 22px;
        margin-top: 8px;
        padding: 3px 9px;
        font-size: 12px;
    }
    .catalog_product_card strong {
        margin-top: 10px;
        font-size: 20px;
    }
    .catalog_pagination {
        margin-top: 46px;
        gap: 22px;
    }
    .catalog_pages {
        gap: 15px;
    }
}

@media (max-width: 420px) {
    .catalog_products_grid {
        gap: 30px 14px;
    }
    .catalog_product_card h3 {
        font-size: 17px;
    }
}


/* ========================================================================== */


/* Catalog fixes: subcategories, sidebar form and quick dropdown filters */


/* ========================================================================== */

.catalog_layout {
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 25px;
}

.catalog_filters {
    width: 315px;
    padding: 30px 25px 34px;
    border-radius: 20px;
    background: #F4F4F4;
}

.catalog_filters_head {
    display: none;
}

.catalog_filter_group {
    border-bottom: 0;
}

.catalog_filter_group+.catalog_filter_group {
    margin-top: 26px;
}

.catalog_filter_group_btn {
    min-height: auto;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
}

.catalog_filter_group_btn::after {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #988B83;
    border-bottom: 1.5px solid #988B83;
    transform: rotate(45deg) translateY(-2px);
}

.catalog_filter_group.is_open .catalog_filter_group_btn::after {
    transform: rotate(225deg) translate(-3px, -1px);
}

.catalog_filter_group_body {
    gap: 10px;
}

.catalog_filter_group.is_open .catalog_filter_group_body {
    margin: 18px 0;
}

.catalog_price_inputs {
    display: grid;
    grid-template-columns: 1fr 34px 1fr 18px;
    align-items: end;
    gap: 10px;
}

.catalog_price_inputs input {
    width: 100%;
    height: 30px;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid #D2D2D2;
    border-radius: 0;
    background: transparent;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: #000000;
    appearance: textfield;
}

.catalog_price_inputs input::-webkit-outer-spin-button,
.catalog_price_inputs input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.catalog_price_dash {
    width: 24px;
    height: 1px;
    margin-bottom: 17px;
    justify-self: center;
    background: #000000;
}

.catalog_price_currency {
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
}

.catalog_check_chip span {
    min-height: 25px;
    padding: 4px 10px;
    background: #E8E8E8;
    font-size: 14px;
}

.catalog_check_chip input:checked+span {
    background: #BCB5AF;
}

.catalog_color_list {
    gap: 11px;
}

.catalog_check_line {
    gap: 9px;
    font-size: 14px;
}

.catalog_filter_actions {
    margin-top: 34px;
    gap: 18px;
}

.catalog_apply_btn {
    min-width: 160px;
}

.catalog_subnav {
    max-width: 790px;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
}

.catalog_subnav a {
    width: fit-content;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.25s ease, text-underline-offset 0.25s ease;
}

.catalog_subnav a:hover,
.catalog_subnav a.is_active {
    color: #60534B;
    text-underline-offset: 6px;
}

.catalog_filter_controls {
    position: relative;
    z-index: 30;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 14px;
}

.catalog_quick_filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 0;
}

.catalog_quick_filter {
    position: relative;
}

.catalog_quick_btn {
    min-height: 28px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #F4F4F4;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #000000;
    transition: background 0.25s ease;
}

.catalog_quick_btn::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #988B83;
    border-bottom: 1.5px solid #988B83;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

.catalog_quick_filter.is_open .catalog_quick_btn::after {
    transform: rotate(225deg) translate(-3px, -1px);
}

.catalog_quick_filter.is_active .catalog_quick_btn,
.catalog_quick_filter.is_open .catalog_quick_btn {
    background: #BCB5AF;
}

.catalog_quick_menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 60;
    min-width: 190px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: 0 16px 50px rgba(5, 9, 22, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.catalog_quick_filter.is_open .catalog_quick_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.catalog_quick_menu button {
    width: 100%;
    min-height: 32px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 10px;
    background: transparent;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    text-align: left;
    color: #000000;
    transition: background 0.2s ease;
}

.catalog_quick_menu button:hover,
.catalog_quick_menu button.is_selected {
    background: #F4F4F4;
}

.catalog_quick_menu i {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    background: var(--color);
}

.catalog_active_filters {
    min-height: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.catalog_filter_chip {
    min-height: 28px;
    background: #BCB5AF;
}

@media (max-width: 1200px) {
    .catalog_layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 22px;
    }
    .catalog_filters {
        width: 280px;
        padding: 28px 20px 30px;
    }
    .catalog_products_grid {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .catalog_subnav {
        margin: 16px 0 14px;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }
    .catalog_subnav::-webkit-scrollbar {
        display: none;
    }
    .catalog_subnav a {
        flex: 0 0 auto;
        font-size: 14px;
    }
    .catalog_mobile_filter_toggle {
        margin-bottom: 24px;
    }
    .catalog_filter_controls {
        display: none;
    }
    .catalog_filters {
        width: auto;
    }
    .catalog_filters_head {
        display: flex;
    }
    .catalog_price_inputs {
        grid-template-columns: 1fr 34px 1fr 18px;
    }
}

.catalog_quick_menu button::after {
    display: none;
}


/* ========================================================================== */


/* Final mobile tuning for catalog page */


/* ========================================================================== */

@media (max-width: 768px) {
    .catalog_page_body .header_menu a.is_active,
    .catalog_page_body .header_menu a:hover,
    .catalog_page_body .catalog_dropdown.is_open>.catalog_toggle,
    .catalog_page_body .catalog_dropdown.is_open>.catalog_toggle span {
        color: #000000 !important;
    }
    .catalog_page .container {
        width: calc(100% - 42px);
    }
    .catalog_hero_block {
        padding: 28px 0 12px;
    }
    .catalog_hero h1 {
        max-width: 348px;
        margin: 0 0 14px;
        font-size: 30px;
        line-height: 130%;
        letter-spacing: -0.05em;
    }
    .catalog_subnav {
        max-width: none;
        margin: 0 0 14px;
        gap: 14px 24px;
    }
    .catalog_subnav a {
        font-size: 14px;
        line-height: 130%;
    }
    .catalog_products_block {
        padding: 0 0 54px;
    }
    .catalog_mobile_filter_toggle {
        min-height: 32px;
        margin: 0 0 20px;
        padding: 7px 18px;
        border-radius: 30px;
    }
    .catalog_products_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
    }
    .catalog_product_card {
        min-width: 0;
    }
    .catalog_product_slider {
        aspect-ratio: 164 / 110;
        border-radius: 14px;
    }
    .catalog_product_article {
        margin-top: 8px;
        font-size: 12px;
        line-height: 130%;
    }
    .catalog_product_card h3 {
        min-height: auto;
        margin-top: 6px;
        font-size: 18px;
        line-height: 110%;
        letter-spacing: -0.04em;
    }
    .catalog_product_status {
        margin-top: 8px;
    }
    .catalog_product_card strong {
        margin-top: 10px;
        font-size: 20px;
        line-height: 130%;
    }
    .catalog_load_more {
        margin: 44px auto 0;
    }
    .catalog_pagination {
        margin-top: 24px;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .catalog_products_grid {
        gap: 30px 20px;
    }
    .catalog_product_card h3 {
        font-size: 18px;
    }
}
/* ==========================================================
   Dynamic WooCommerce catalog improvements
   ========================================================== */
.catalog_page,
.catalog_products_block,
.catalog_layout,
.catalog_content {
    min-width: 0;
    max-width: 100%;
}

.catalog_layout {
    width: 100%;
}

.catalog_products_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-content: stretch;
    align-items: start;
}

.catalog_product_card,
.catalog_product_link,
.catalog_product_slider {
    min-width: 0;
    max-width: 100%;
}

.catalog_product_card h3 {
    max-width: 100%;
}

.catalog_product_slider .swiper-slide {
    overflow: hidden;
}

.catalog_subnav {
    max-width: 100%;
}

.catalog_quick_filter {
    position: relative;
}

.catalog_quick_menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    max-width: min(320px, calc(100vw - 40px));
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(5, 9, 22, 0.12);
}

.catalog_quick_filter.is_open .catalog_quick_menu {
    display: flex;
}

.catalog_quick_menu button {
    width: 100%;
    justify-content: flex-start;
    background: transparent;
}

.catalog_quick_menu button.is_selected,
.catalog_quick_menu button:hover {
    background: #F4F4F4;
}

.catalog_quick_menu_colors i {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 50%;
    background: var(--color);
}

.catalog_pagination .woocommerce-pagination ul,
.woocommerce-pagination ul.page-numbers {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    border: 0;
}

.catalog_pagination .woocommerce-pagination li {
    border: 0;
    list-style: none;
}

.catalog_pagination .page-numbers {
    min-width: 36px;
    min-height: 28px;
    padding: 5px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: #F4F4F4;
    color: #000000;
    font-size: 14px;
}

.catalog_pagination .page-numbers.current {
    background: #BCB5AF;
}

@media (max-width: 1200px) {
    .catalog_layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 22px;
    }
    .catalog_products_grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .catalog_layout {
        display: block;
    }
    .catalog_filters {
        position: fixed;
        z-index: 2000;
        top: 0;
        left: 0;
        width: min(360px, 92vw);
        height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        border-radius: 0 20px 20px 0;
        transform: translateX(-105%);
        transition: transform .25s ease;
    }
    .catalog_page.is_filters_open .catalog_filters {
        transform: translateX(0);
    }
    .catalog_filters_close {
        display: block;
        width: 34px;
        height: 34px;
        background: transparent;
        position: relative;
    }
    .catalog_filters_close::before,
    .catalog_filters_close::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 2px;
        background: #000;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .catalog_filters_close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    .catalog_mobile_filter_toggle {
        display: inline-flex;
    }
    .catalog_products_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 14px;
    }
}

@media (max-width: 420px) {
    .catalog_products_grid {
        grid-template-columns: 1fr;
    }
}
