.hero-products {
    background: url("../images/accesorios-banner.png");
    background-size: contain;
    background-position: center;
}


.category-products-wrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    align-items: start;
}

.products-container {
    max-width: 1400px;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.cp-product {
    max-width: 260px;
}

.cp-product h2 {
    font-size: 15px;
}

.product-title {
    color: red;
    font-weight: 600;
}

.product-category {
    max-width: 260px;
}

.pagination-wrapper {
    margin-top: 2rem;
}

/* filters */
.filters-container {
    margin-left: 10px;
    width: 30%;
}

.fc-content {
    background: white;
    border-radius: 10px;
    width: 100%;
    border: solid .5px var(--text-gray-2);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem 1.4rem;
}

.fc-content p {
    font-weight: 600;
    text-align: left;
    margin-bottom: .4rem;

}

.fc-c-price {
    width: 100%;
}

.fc-c-order {
    margin-top: 2rem;
}

.widget_price_filter .ui-slider {
    touch-action: pan-y;
    z-index: 999;
}

.widget_price_filter .ui-slider-range,
.widget_price_filter .ui-slider-handle {
    pointer-events: all;
}

.filters-container {
    position: relative;
    z-index: 1;
}
/*  */
.widget_price_filter .price_slider {
    margin: 10px 0;
}

.widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget_price_filter .button {
    border: 1px solid red;
    color: red;
    background: transparent;
    padding: 5px 10px;
    border-radius: 5px;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range, .woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--main-color);
}

@media screen and (max-width: 1000px) {
    .category-products-wrapper {
        flex-direction: column-reverse;
    }

    .products-container, .filters-container {
        width: 100%;
    }

    .filters-container {
        margin-bottom: 2rem;
    }
}