/* Start custom CSS for facetwp-facet, class: .elementor-element-6f29692 *//* =========================================
   FILTRO DE CATEGORÍAS - FACETWP
   ========================================= */

.filcategoria {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* Título */
.filcategoria h3 {
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

/* Contenedor del FacetWP */
.filcategoria .facetwp-facet {
    margin: 0;
}

/* Categorías */
.filcategoria .facetwp-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    margin: 3px 0;
    border-radius: 8px;
    color: #444444;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover */
.filcategoria .facetwp-link:hover {
    background: #f5f5f5;
    color: #111111;
    padding-left: 16px;
}

/* Categoría seleccionada */
.filcategoria .facetwp-link.checked {
    background: #111111;
    color: #ffffff;
    font-weight: 600;
}

/* Hover sobre seleccionada */
.filcategoria .facetwp-link.checked:hover {
    background: #222222;
    color: #ffffff;
}

/* Contador */
.filcategoria .facetwp-counter {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.55;
}

/* Contador de categoría seleccionada */
.filcategoria .facetwp-link.checked .facetwp-counter {
    color: #ffffff;
    opacity: 0.75;
}

/* =========================================
   SUBCATEGORÍAS
   ========================================= */

.filcategoria .facetwp-depth {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #eeeeee;
}

/* Subcategorías */
.filcategoria .facetwp-depth .facetwp-link {
    font-size: 13px;
    padding: 9px 10px;
}

/* Hover subcategoría */
.filcategoria .facetwp-depth .facetwp-link:hover {
    background: #f7f7f7;
}

/* =========================================
   BOTÓN VOLVER
   ========================================= */

.filcategoria .facetwp-link[data-value=""] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    padding: 8px 4px;
    background: transparent;
    color: #777777;
    font-size: 13px;
    font-weight: 500;
}

.filcategoria .facetwp-link[data-value=""]:hover {
    color: #111111;
    padding-left: 4px;
}/* End custom CSS */
/* Start custom CSS for facetwp-facet, class: .elementor-element-00f90ee *//* =========================================
   FILTRO DE CATEGORÍAS - FACETWP
   RESPONSIVE
   Clase Elementor: filcategoria
   ========================================= */

.filcategoria {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* =========================================
   TÍTULO
   ========================================= */

.filcategoria h3 {
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eeeeee;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    line-height: 1.3;
}

.filcategoria .facetwp-facet {
    margin: 0;
}

/* =========================================
   CATEGORÍAS
   ========================================= */

.filcategoria .facetwp-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 11px 12px;
    margin: 3px 0;

    border-radius: 8px;

    color: #444444;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

/* Hover */
.filcategoria .facetwp-link:hover {
    background: #f5f5f5;
    color: #111111;
    padding-left: 16px;
}

/* Categoría seleccionada */
.filcategoria .facetwp-link.checked {
    background: #111111;
    color: #ffffff;
    font-weight: 600;
}

/* Hover categoría seleccionada */
.filcategoria .facetwp-link.checked:hover {
    background: #222222;
    color: #ffffff;
}

/* =========================================
   CONTADORES
   ========================================= */

.filcategoria .facetwp-counter {
    flex-shrink: 0;
    margin-left: auto;

    font-size: 12px;
    font-weight: 500;

    opacity: 0.55;
    white-space: nowrap;
}

.filcategoria .facetwp-link.checked .facetwp-counter {
    color: #ffffff;
    opacity: 0.75;
}

/* =========================================
   SUBCATEGORÍAS
   ========================================= */

.filcategoria .facetwp-depth {
    width: auto;
    margin-left: 10px;
    padding-left: 10px;

    border-left: 2px solid #eeeeee;

    box-sizing: border-box;
}

/* Subcategorías */
.filcategoria .facetwp-depth .facetwp-link {
    font-size: 13px;
    padding: 9px 10px;
}

/* Hover subcategorías */
.filcategoria .facetwp-depth .facetwp-link:hover {
    background: #f7f7f7;
}

/* =========================================
   BOTÓN VOLVER
   ========================================= */

.filcategoria .facetwp-link[data-value=""] {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 7px;

    margin-bottom: 8px;
    padding: 8px 4px;

    background: transparent;
    color: #777777;

    font-size: 13px;
    font-weight: 500;
}

.filcategoria .facetwp-link[data-value=""]:hover {
    background: transparent;
    color: #111111;
    padding-left: 4px;
}


/* =========================================
   TABLET
   768px - 1024px
   ========================================= */

@media (max-width: 1024px) {

    .filcategoria {
        padding: 18px;
        border-radius: 10px;
    }

    .filcategoria h3 {
        font-size: 17px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .filcategoria .facetwp-link {
        padding: 10px 11px;
        font-size: 14px;
    }

    .filcategoria .facetwp-depth {
        margin-left: 8px;
        padding-left: 8px;
    }

    .filcategoria .facetwp-depth .facetwp-link {
        font-size: 13px;
        padding: 9px;
    }
}


/* =========================================
   CELULAR
   Hasta 767px
   ========================================= */

@media (max-width: 767px) {

    .filcategoria {
        width: 100%;
        padding: 16px;

        border-radius: 10px;

        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    }

    /* Título */
    .filcategoria h3 {
        font-size: 16px;
        margin-bottom: 14px;
        padding-bottom: 11px;
    }

    /* Categorías */
    .filcategoria .facetwp-link {
        min-height: 42px;

        padding: 10px 11px;

        font-size: 14px;

        border-radius: 7px;
    }

    /* Evitar desplazamiento exagerado en celular */
    .filcategoria .facetwp-link:hover {
        padding-left: 12px;
    }

    /* Categoría seleccionada */
    .filcategoria .facetwp-link.checked {
        padding-left: 12px;
    }

    /* Subcategorías */
    .filcategoria .facetwp-depth {
        margin-left: 6px;
        padding-left: 8px;
    }

    .filcategoria .facetwp-depth .facetwp-link {
        min-height: 40px;
        padding: 9px 10px;

        font-size: 13px;
    }

    /* Contadores */
    .filcategoria .facetwp-counter {
        font-size: 11px;
    }

    /* Botón volver */
    .filcategoria .facetwp-link[data-value=""] {
        min-height: 36px;
        padding: 7px 3px;

        font-size: 13px;
    }
}


/* =========================================
   CELULARES MUY PEQUEÑOS
   Hasta 480px
   ========================================= */

@media (max-width: 480px) {

    .filcategoria {
        padding: 13px;
    }

    .filcategoria h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .filcategoria .facetwp-link {
        min-height: 40px;
        padding: 9px 10px;

        font-size: 13px;
    }

    .filcategoria .facetwp-depth {
        margin-left: 5px;
        padding-left: 7px;
    }

    .filcategoria .facetwp-depth .facetwp-link {
        min-height: 38px;
        padding: 8px 9px;

        font-size: 12.5px;
    }

    .filcategoria .facetwp-counter {
        font-size: 10px;
    }
}


/* =========================================
   TOUCH DEVICES
   Evita efectos hover incómodos
   ========================================= */

@media (hover: none) {

    .filcategoria .facetwp-link:hover {
        padding-left: 12px;
        background: transparent;
        color: #444444;
    }

    .filcategoria .facetwp-link.checked:hover {
        background: #111111;
        color: #ffffff;
    }
}/* End custom CSS */