SELECT 
  cscart_categories.category_id, 
  cscart_categories.parent_id, 
  cscart_categories.id_path, 
  cscart_category_descriptions.category, 
  cscart_categories.position, 
  cscart_categories.status, 
  cscart_categories.company_id, 
  cscart_categories.storefront_id, 
  cscart_categories.product_count, 
  cscart_seo_names.name as seo_name, 
  cscart_seo_names.path as seo_path 
FROM 
  cscart_categories 
  LEFT JOIN cscart_category_descriptions ON cscart_categories.category_id = cscart_category_descriptions.category_id 
  AND cscart_category_descriptions.lang_code = 'en' 
  LEFT JOIN cscart_seo_names ON cscart_seo_names.object_id = cscart_categories.category_id 
  AND cscart_seo_names.type = 'c' 
  AND cscart_seo_names.dispatch = '' 
  AND cscart_seo_names.lang_code = 'en' 
WHERE 
  1 = 1 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A') 
  AND cscart_categories.id_path LIKE '3532/%' 
  AND cscart_categories.storefront_id IN (0, 1) 
  AND cscart_categories.category_id IN(
    266, 1467, 1936, 2601, 2653, 2656, 2691, 
    2658, 2722, 2754, 2763, 2770, 2849, 
    2878, 2910, 2912, 2917, 2922, 2928, 
    3018, 3024, 2920, 3029, 3051, 3648, 
    3751, 3796, 4001, 4003, 4525, 4551, 
    4842, 5340, 5505, 6328, 6340, 3532, 
    3535, 3539, 3638, 7160, 5684, 6536, 
    6552, 7611, 6473, 7080, 7435, 8119, 
    9276, 1584, 1309, 9401, 3105, 9832, 
    9997, 9999, 10008, 10011, 9697, 9947, 
    9948, 10159, 10450, 10451, 10452, 10193, 
    10197, 10484, 10492, 10000, 10522, 
    10563, 10623, 10667, 10669
  ) 
ORDER BY 
  cscart_categories.is_trash asc, 
  cscart_categories.position asc, 
  cscart_category_descriptions.category asc

Query time 0.00200

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "106.94"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_categories",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "c_status",
              "id_path",
              "p_category_id"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 76,
            "rows_produced_per_join": 0,
            "filtered": "0.11",
            "cost_info": {
              "read_cost": "106.73",
              "eval_cost": "0.02",
              "prefix_cost": "106.74",
              "data_read_per_join": "499"
            },
            "used_columns": [
              "category_id",
              "parent_id",
              "id_path",
              "company_id",
              "usergroup_ids",
              "status",
              "product_count",
              "position",
              "is_trash",
              "storefront_id"
            ],
            "attached_condition": "(((`webmarco`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`webmarco`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`webmarco`.`cscart_categories`.`usergroup_ids`)) and (`webmarco`.`cscart_categories`.`status` = 'A') and (`webmarco`.`cscart_categories`.`id_path` like '3532/%') and (`webmarco`.`cscart_categories`.`storefront_id` in (0,1)) and (`webmarco`.`cscart_categories`.`category_id` in (266,1467,1936,2601,2653,2656,2691,2658,2722,2754,2763,2770,2849,2878,2910,2912,2917,2922,2928,3018,3024,2920,3029,3051,3648,3751,3796,4001,4003,4525,4551,4842,5340,5505,6328,6340,3532,3535,3539,3638,7160,5684,6536,6552,7611,6473,7080,7435,8119,9276,1584,1309,9401,3105,9832,9997,9999,10008,10011,9697,9947,9948,10159,10450,10451,10452,10193,10197,10484,10492,10000,10522,10563,10623,10667,10669)))"
          }
        },
        {
          "table": {
            "table_name": "cscart_category_descriptions",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "webmarco.cscart_categories.category_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.08",
              "eval_cost": "0.02",
              "prefix_cost": "106.84",
              "data_read_per_join": "343"
            },
            "used_columns": [
              "category_id",
              "lang_code",
              "category"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_seo_names",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "dispatch"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "object_id",
              "type",
              "dispatch",
              "lang_code"
            ],
            "key_length": "206",
            "ref": [
              "webmarco.cscart_categories.category_id",
              "const",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.08",
              "eval_cost": "0.02",
              "prefix_cost": "106.94",
              "data_read_per_join": "142"
            },
            "used_columns": [
              "name",
              "object_id",
              "company_id",
              "type",
              "dispatch",
              "path",
              "lang_code"
            ]
          }
        }
      ]
    }
  }
}

Result

category_id parent_id id_path category position status company_id storefront_id product_count seo_name seo_path
3535 3532 3532/3535 Food Items 10 A 0 0 83 food-items 3532
3539 3535 3532/3535/3539 Fruits & Vegetables 10 A 0 0 43 fruits-and-vegetables 3532/3535
3638 3539 3532/3535/3539/3638 Fresh & Frozen Fruits 60 A 0 0 12 fresh-and-frozen-fruits 3532/3535/3539
7160 3638 3532/3535/3539/3638/7160 Mamey 1360 A 0 0 30 mamey 3532/3535/3539/3638