SELECT 
  cscart_products_categories.product_id, 
  GROUP_CONCAT(
    IF(
      cscart_products_categories.link_type = "M", 
      CONCAT(
        cscart_products_categories.category_id, 
        "M"
      ), 
      cscart_products_categories.category_id
    )
  ) AS category_ids, 
  product_position_source.position AS position 
FROM 
  cscart_products_categories 
  INNER JOIN cscart_categories ON cscart_categories.category_id = cscart_products_categories.category_id 
  AND cscart_categories.storefront_id IN (0, 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', 'H') 
  LEFT JOIN cscart_products_categories AS product_position_source ON cscart_products_categories.product_id = product_position_source.product_id 
  AND product_position_source.category_id = 38 
WHERE 
  cscart_products_categories.product_id IN (
    1097, 1057, 1058, 772, 768, 770, 774, 
    776, 777, 773, 769, 771, 775, 1117, 1116, 
    633, 1118, 1019, 563, 611, 1060, 544, 
    1069, 1068, 631, 1111, 632, 1112, 1062, 
    1101, 906, 1099, 831, 830, 1065, 1056, 
    1059, 543, 510, 1017, 779, 778, 1113, 
    1114, 1115, 1096, 1061, 1100
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00121

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "cscart_products_categories",
      "access_type": "range",
      "possible_keys": ["PRIMARY", "pt"],
      "key": "pt",
      "key_length": "3",
      "used_key_parts": ["product_id"],
      "rows": 48,
      "filtered": 100,
      "index_condition": "cscart_products_categories.product_id in (1097,1057,1058,772,768,770,774,776,777,773,769,771,775,1117,1116,633,1118,1019,563,611,1060,544,1069,1068,631,1111,632,1112,1062,1101,906,1099,831,830,1065,1056,1059,543,510,1017,779,778,1113,1114,1115,1096,1061,1100)"
    },
    "table": {
      "table_name": "cscart_categories",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
      "key": "PRIMARY",
      "key_length": "3",
      "used_key_parts": ["category_id"],
      "ref": ["bacpvdev_db.cscart_products_categories.category_id"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "cscart_categories.storefront_id in (0,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','H')"
    },
    "table": {
      "table_name": "product_position_source",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY", "pt"],
      "key": "PRIMARY",
      "key_length": "6",
      "used_key_parts": ["category_id", "product_id"],
      "ref": ["const", "bacpvdev_db.cscart_products_categories.product_id"],
      "rows": 1,
      "filtered": 100
    }
  }
}

Result

product_id category_ids position
510 38M 0
543 38M 0
544 38M 0
563 38M 0
611 38M 0
631 38M 0
632 38M 0
633 38M 0
768 38M 0
769 38M 0
770 38M 0
771 38M 0
772 38M 0
773 38M 0
774 38M 0
775 38M 0
776 38M 0
777 38M 0
778 38M 0
779 38M 0
830 38M 0
831 38M 0
906 38M 0
1017 38M 0
1019 38M 0
1056 38M 0
1057 38M 0
1058 38M 0
1059 38M 0
1060 38M 0
1061 38M 0
1062 38M 0
1065 38M 0
1068 38M 0
1069 38M 0
1096 38M 0
1097 38M 0
1099 38M 0
1100 38M 0
1101 38M 0
1111 38M 0
1112 38M 0
1113 38M 0
1114 38M 0
1115 38M 0
1116 38M 0
1117 38M 0
1118 38M 0