/**
 * WC Category Sidebar Toggle - Estilos principales
 * Version: 1.5.4
 */

/* Estilos generales */
.wc-cat-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Estilos para version desktop */
.wc-cat-sidebar.desktop {
    margin-bottom: 20px;
}

.wc-cat-tree {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc-cat-tree li {
    margin-bottom: 0.3em;
    padding: 2px 0;
}

.wc-cat-tree .toggle {
    font-size: 0.8em;
    margin-left: 0.25em;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s;
}

.wc-cat-tree a {
    text-decoration: none;
    color: #333;
    display: block;
}

.wc-cat-tree a:hover {
    color: #666;
}

.current-parent > a, 
.current-child > a {
    font-weight: 700;
    color: #000;
}

.wc-subcat-list {
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Estilos para version mobile */
.wc-cat-sidebar.mobile {
    display: none;
}

.wc-cat-form {
    display: flex;
    flex-direction: column;
}

.wc-cat-select-parent,
.wc-cat-select-child {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Media queries */
@media (max-width: 767px) {
    .wc-cat-sidebar.desktop {
        display: none;
    }
    
    .wc-cat-sidebar.mobile {
        display: block;
    }
}

/* Puedes personalizar estos estilos según tus necesidades */