.h-group-box{
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}
.filter-product.hflex{
    display: flex;
}
.filter-product.hflex .link-img{
    width:50%;
}
/*shop-show-change*/
.list_filter.active-btn{
    background-color: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}



.switch {
    position: relative;
    display: inline-block;
    width: 2rem;
    height: 1.1rem;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: .9rem;
    width: .9rem;
    border-radius: 100%;
    left: 0.1rem;
    bottom: .1rem;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--Primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--Primary);
}

input:checked + .slider:before {
    transform: translateX(.9rem);
}


/*input-checkbox*/


@media (min-width: 640px) {
    .h-group-box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .h-group-box.h-grid-box{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }


}
@media (min-width: 768px) {
    .h-group-box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}
@media (min-width: 1024px) {
    .h-group-box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1280px) {
    .h-group-box {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .h-group-box.h-grid-box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1536px) {
    .h-group-box {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .h-group-box.h-grid-box{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
