 @font-face {
            font-family: "Helvetica";
            src: url("fonts/HelveticaNeue-Roman.otf");
            font-weight: normal;
        }

        @font-face {
            font-family: "Helvetica";
            src: url("fonts/HelveticaNeue-Medium.otf");
            font-weight: 500;
        }

        .filter {
            max-width: 430px;
            font-family: "Helvetica";
            font-size: 14px;
            padding: 12px 15px 110px;
        }

        .filter__heading {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            margin-top: 0;
            margin-bottom: 35px;
        }

        .filter__sort {
            display: flex;
            flex-direction: column;
            gap: 15px;
            border-bottom: 1px solid #AAAAAA;
            padding-bottom: 25px;
        }

        .filter__title {
            font-weight: 500;
            text-transform: uppercase;
            margin: 0;
        }

        .filter__label {
            width: max-content;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .filter__label--sale {
            color: #DA1F7F;
        }

        .filter__label input {
            display: none;
        }

        .filter__checkbox-custom {
            width: 20px;
            height: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent;
            border: 1px solid #AAAAAA;
            transition: all .3s ease-in-out;
        }

        .filter__label:hover input:not(:checked) ~ .filter__checkbox-custom {
            background: #E9E9E9;
        }

        .filter__label input:checked ~ .filter__checkbox-custom {
            border: 1px solid #2D2926;
        }

        .filter__label input:checked ~ .filter__checkbox-custom::before {
            content: '';
            width: 10px;
            height: 10px;
            background: #2D2926;
        }

        .filter__dropdown {
            border-bottom: 1px solid #AAAAAA;
            padding: 25px 0;
        }

        .filter__dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .filter__dropdown-header svg {
            transition: all 0.3s ease-in-out;
        }

        .filter__dropdown-header--is-open svg {
            transform: rotate(-180deg);
        }

        .filter__dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }

        .filter__dropdown-content--is-open {
            max-height: 1000px;
        }

        .filter__dropdown-content--inner {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-top: 25px;
        }

        .filter__price {
            margin-top: 25px;
            margin-bottom: 40px;
        }

        .filter__price-range {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .filter__price-input {
            flex: 1;
            min-width: 0;
            border: 1px solid #AAAAAA;
            outline: none;
            padding: 10px 15px;
            transition: all .3s ease-in-out;
        }

        .filter__price-input:focus {
            border-color: #2D2926;
        }

        .filter__price-input::placeholder {
            font-family: "Helvetica";
            color: #AAAAAA;
            font-size: 14px;
        }

        .filter__price-input::-webkit-outer-spin-button,
        .filter__price-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .filter__price-input {
            -moz-appearance: textfield;
        }

        .filter__buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 15px 0;
        }

        .filter__button {
            font-family: "Helvetica";
            font-size: 14px;
            text-transform: uppercase;
            background: transparent;
            border: 1px solid #2D2926;
            padding: 15px;
            cursor: pointer;
            transition: all .3s ease-in-out;
        }

        .filter__button:hover {
            background: #000;
        }

        .filter__button--apply {
            color: #FFFFFF;
            background: #2D2926;
        }

        .filter__button--reset:hover {
            color: #FFFFFF;
        }
        .newmenu{
                position: relative !important;
        }