.products-filters {
    & .block-title {
        width: fit-content;
        gap: 10px;
        cursor: pointer;
        align-items: center;

        &.open {
            padding-bottom: 20px;
        }

        & svg {
            width: 15px;
        }

        & h3 {
            font-size: 16px;
        }
    }

    & #filters-form {
        overflow: hidden;
        height: 0;
        gap: 10px;
        justify-content: space-between;

        &.open {
            height: auto;
        }

        & .filter-item {

            & .filter-item_title {
                margin: 0 0 10px;
                font-weight: 600;
            }

            & .filter-item_wrap {
                display: flex;
                flex-direction: column;
                width: fit-content;
                max-width: 130px;
            }

            label[for^="pa_"] {
                padding: 3px 8px;
                background: #ffffff63;
                border-radius: 13px;
                margin-bottom: 6px;
                cursor: pointer;
                /* width: fit-content; */
                font-size: 14px;

                & input {
                    appearance: none;
                }
            }

            label[for^="pa_"]:has(input:checked),
            label[for^="pa_"]:hover {
                background: var(--accent-color);
                color: #fff;
                scale: 1.05;
                transition: all .5s
            }
        }
    }
}