/* ==============================> FILTROS */

.widget_price_filter,
.widget_product_categories {
    border: 1px solid;
    border-color: #d5dfe4;
    padding: 20px;
    border-radius: var(--wd-form-brd-radius);
    padding-bottom: 20px !important;
}

.widget-area .sidebar-widget .product-categories>li>a {
    border-bottom: 1px solid #d9d9d9;
    color: #333;
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 19px;
    padding: 10px 20px 10px 20px;
}

.widget-area .sidebar-widget .product-categories>li:last-child>a {
    border: none;
}

.widget-area .sidebar-widget .product-categories li>a:before {
    content: "";
    max-width: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 0;
    border: 1px solid var(--e-global-color-primary) !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.widget-area .sidebar-widget .product-categories li>a:hover:before {
    background: var(--e-global-color-primary) !important;
}

.widget-area .sidebar-widget .product-categories li.current-cat>a:before {
    background: var(--e-global-color-primary) !important;
}

.widget-area .widget_product_categories .children a {
    padding-inline-start: 20px;
}

/* ==============================> ESTILOS FILTRO DE MARCAS */

.filtro-marcas-wrapper {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
    flex-direction: column;
    height: 350px;
    border: 1px solid #d5dfe4;
    padding: 20px;
    border-radius: var(--wd-form-brd-radius);
    padding-bottom: 20px !important;
}

.filtro-marcas-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-bottom: 1px solid #e3e3e3;
    padding: 6px 4px;
    border-radius: 0;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.filtro-marcas-imgbox {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filtro-marcas-imgbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.filtro-marcas-title {
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

/* Hover */
.filtro-marcas-item:hover {
    border-color: var(--e-global-color-primary);
}

.filtro-marcas-item:hover .filtro-marcas-title {
    color: var(--e-global-color-primary);
}

/* Responsive */
@media (max-width: 767px) {
    .filtro-marcas-item {
        padding: 6px 10px;
        gap: 8px;
    }

    .filtro-marcas-title {
        font-size: 13px;
    }

    .filtro-marcas-imgbox {
        width: 30px;
        height: 30px;
    }
}