.filters{
    margin: 2rem 0;
}

.products h1{
    font-size: var(--h1-md);
    font-weight: 600;
    margin: 3rem 0;
}

.filters{
    width: 100%;
}

.filters tbody{
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}


.filters tr{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.filters-name{
    font-size: var(--text-sm);
    font-weight: 600;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;

}

.filters-value{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.4rem;
    -ms-flex-line-pack: center;
    align-content: center;
}

.filters-value a{
    font-size: var(--text-sm);
    background: #fff;
    color: var(--black);
    padding: 0.3rem 1rem;
    border: 2px solid #000;
    border-radius: var(--border-lg);
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.filters-value .selected,
.filters-value :hover{
    background: var(--blue);
    color:#fff;
    border: 2px solid var(--blue);
}

.products-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.products-list__product{
    background: #fff;
    padding: 2.3rem 2rem 2.6rem 2rem;
    border-radius: var(--border-md);
    list-style-type: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 20%;
    min-width: 240px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.products-list__product:hover{
    -webkit-box-shadow: 1px 0 15px -5px rgba(0,0,0,0.25);
    box-shadow: 1px 0 15px -5px rgba(0,0,0,0.25);
}


.products-list__product-name{
    font-size: var(--link-lg);
    color: var(--black);
    font-weight: 500;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.products-list__product-image{
    margin: 1.2rem 0;
    border: 1px solid var(--lite-gray);
    border-radius: var(--btn-text-lg);
    overflow: hidden;
    text-align: center;
}

.products-list__product-image img{
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}

.products-list__product-btn{
    width: 88%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.products-list__product-price{
    font-size: var(--price-md);
    font-weight: 600;
    text-align: center;
    margin: 0.2rem 0 1.2rem 0;
}

.products-category-description{
    background: #fff;
    padding: 5rem 0;
}

.products-category-description * a,
.products-category-description * a * {
    color: var(--blue-lite) !important;
}

.products-category-description * p{
    font-size: var(--text-sm);
    color: var(--black);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: .6rem;

}

.products-category-description * p strong,
.products-category-description * span,
.products-category-description * p span{
    font-weight: 600;
    font-size: var(--text-sm) !important;
    margin-bottom: .6rem;
}

.compare_price{
    text-decoration: line-through;
    color: #ffffff;
    background: #b25252;
    width: fit-content;
    padding: 0.1rem 0.6rem;
    border-radius: var(--border-lg);
    margin: auto;
}

@media (max-width: 767px) {
    .products h1 {
        font-size: var(--price-md);
        font-weight: 600;
        margin: 2rem 0;
    }

    .filters tbody {
        gap: 2rem;
    }

    .filters tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .filters-value {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        gap: 0.3rem;
    }

    .filters-value a {
        padding: 0.4rem 0.6rem;
    }

    .products-category-description {
        padding: 4rem 0;
    }

    .products-category-description img{
        display: none;
    }

    .products-list__product {
        max-width: inherit;
    }

}