/* =========================================
   CONTENEDOR PRINCIPAL Y FORMULARIO
========================================= */
.wf-701307b0-container {
    font-family: 'Montserrat', sans-serif !important;
}

.wf-701307b0-form {
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   ACORDEONES (CONTENEDOR Y TÍTULOS)
========================================= */
.wf-701307b0-accordion {
    border-bottom: 1px solid #ccc !important;
    padding: 0 !important; 
    margin-bottom: 0 !important; 
}

.wf-701307b0-accordion-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    padding: 14px 0 !important; /* <-- Este es el ÚNICO padding que separa las líneas */
    margin: 0 !important;
}

.wf-701307b0-icon {
    font-size: 20px !important;
    transition: transform 0.3s ease !important;
}

.wf-701307b0-accordion.active .wf-701307b0-icon {
    transform: rotate(45deg) !important;
}

.wf-701307b0-accordion-content {
    display: none;
    flex-direction: column !important;
    padding-top: 8px !important;
    padding-bottom: 10px !important;
    gap: 6px !important;
    width: 100% !important;
}

.wf-701307b0-accordion.active .wf-701307b0-accordion-content {
    display: flex !important;
}

/* =========================================
   ESTILOS DE LA LISTA DE CATEGORÍAS
========================================= */
.wf-701307b0-cats {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.wf-701307b0-cats li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ocultar viñetas creadas por el tema */
.wf-701307b0-cats li::before,
.wf-701307b0-cats li::after {
    display: none !important;
}

.wf-701307b0-cats a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #555 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    background: transparent !important;
}

.wf-701307b0-cats a:hover {
    color: #000 !important;
}

.wf-701307b0-cat-item.active a {
    font-weight: 700 !important;
    color: #000 !important;
}

.wf-701307b0-cat-count {
    font-size: 12px !important;
    color: #999 !important;
    font-weight: normal !important;
}

/* =========================================
   ESTILOS DE LOS CHECKBOXES (ATRIBUTOS)
========================================= */
.wf-701307b0-label {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    font-size: 14px !important;
    cursor: pointer !important;
    color: #555 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    box-sizing: border-box !important;
}

.wf-701307b0-label:hover {
    color: #000 !important;
}

.wf-701307b0-label span {
    text-align: left !important;
}

/* Magia para alinear el checkbox a la derecha */
.wf-701307b0-label input[type="checkbox"] {
    margin-left: auto !important; /* Empuja el checkbox al tope derecho */
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    cursor: pointer !important;
    display: block !important;
    flex: 0 0 auto !important;
}

/* =========================================
   BOTONES DE BÚSQUEDA Y RESET
========================================= */
.wf-701307b0-submit {
    margin-top: 20px !important;
    width: 100% !important;
    padding: 10px !important;
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.wf-701307b0-reset {
    display: block !important;
    margin-top: 10px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    color: #888 !important;
    text-decoration: none !important;
}