.a-product-container {
    border: 1px solid #BABABA;
    border-radius: 1rem;
}

.cards-shop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
}

.filter-section h5 {
    display: flex;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 20px;
    text-align: right;
}

.filter-section h6 {
    font-weight: 700;
    font-size: 18px;
    color: #572D01;
}
.filter-box {
    border: 1px solid #E5E5E5;
    margin-left: 2.25rem;
    margin-top: 1.25rem;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    min-width: 256px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 17%);
    position: sticky;
    top: 3rem;
    background: #ffffff;
}

.margin-filter {
    margin: 22px 0 10px;
}

.m-shop-title {
    margin-bottom: 2.75rem;
}

/*filters*/

.wrapper-range {
    direction: ltr;
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
}

.container-range {
    position: relative;
    width: 100%;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track-range {
    width: 100%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}

input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: .7em;
    width: .7em;
    background-color: #572D01;
    cursor: pointer;
    margin-top: -2px;
    pointer-events: auto;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: .7em;
    width: .7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #572D01;
    pointer-events: auto;
    border: none;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: .7em;
    width: .7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #572D01;
    pointer-events: auto;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #572D01;
}

.values-range {
    position: relative;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #555555;
    display: flex;
    justify-content: space-between;
}

.values-range > span {
    display: flex;
    flex-direction: row-reverse;
}

.container-check input {
    display: none;
}

.container-check {
    display: flex;
    position: relative;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    align-items: center;
    gap: 0.5rem;
    padding: 7px;
    border: 1px solid #F4F4F4;
    margin-bottom: 0.5rem;
    border-radius: 0.75rem;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    background-color: #2196F300;
    border-radius: 0.25em;
    transition: all 0.25s;
}

.container-check input:checked ~ .checkmark {
    background-color: #572D01;
}

.checkmark:after {
    content: "";
    position: absolute;
    transform: rotate(0deg);
    border: 0.1em solid black;
    left: 0;
    top: 0;
    width: 1.05em;
    height: 1.05em;
    border-radius: 0.25em;
    transition: all 0.25s, border-width 0.1s;
}

.container-check input:checked ~ .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border-color: #fff0 white white #fff0;
    border-width: 0 0.15em 0.15em 0;
    border-radius: 0em;
    transform: rotate(45deg);
}

.filter-header {
    display: none;
}

.filter-overlay {
    display: none;
}