<!-- =============================================
     CSS ADICIONAL - Agregar en tu archivo CSS o en <style>
     ============================================= -->
<style>
/* Lista de subcategorias horizontal */
.li-sub-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.li-sub-category-list li a {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.li-sub-category-list li a:hover,
.li-sub-category-list li.active a {
    background: #4caf50;
    color: #fff;
}

/* Badge de subcategoria en producto */
.subcategoria-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 3px;
}

/* Ajustes para product-area */
.li-product-area {
    background: #fff;
}

.li-product-area:nth-child(even) {
    background: #f9f9f9;
}
</style>