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 = 7179 
WHERE 
  cscart_products_categories.product_id IN (
    87367, 87366, 87365, 87364, 87358, 87380, 
    87357, 87379, 82541, 82539, 82540, 
    82538, 89565, 89564, 92587, 92588, 
    92589, 93942, 93943, 93944, 93945, 
    93946, 93947, 95063, 95064, 95065, 
    95069, 95070, 95071, 95072, 95073, 
    95331, 95332, 95456, 95457, 95458, 
    95467, 95468, 95469, 95470, 95471, 
    96181, 96832, 96833, 96948, 96949, 
    96950, 96954
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00155

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "43.48"
    },
    "grouping_operation": {
      "using_filesort": false,
      "nested_loop": [
        {
          "table": {
            "table_name": "cscart_products_categories",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "link_type",
              "pt"
            ],
            "key": "pt",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 48,
            "rows_produced_per_join": 48,
            "filtered": "100.00",
            "using_index": true,
            "cost_info": {
              "read_cost": "5.08",
              "eval_cost": "4.80",
              "prefix_cost": "9.88",
              "data_read_per_join": "768"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "link_type"
            ],
            "attached_condition": "(`nuie_scalesta_net`.`cscart_products_categories`.`product_id` in (87367,87366,87365,87364,87358,87380,87357,87379,82541,82539,82540,82538,89565,89564,92587,92588,92589,93942,93943,93944,93945,93946,93947,95063,95064,95065,95069,95070,95071,95072,95073,95331,95332,95456,95457,95458,95467,95468,95469,95470,95471,96181,96832,96833,96948,96949,96950,96954))"
          }
        },
        {
          "table": {
            "table_name": "product_position_source",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "pt"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id",
              "product_id"
            ],
            "key_length": "6",
            "ref": [
              "const",
              "nuie_scalesta_net.cscart_products_categories.product_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 48,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "12.00",
              "eval_cost": "4.80",
              "prefix_cost": "26.68",
              "data_read_per_join": "768"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "cscart_categories",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "c_status",
              "p_category_id"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id"
            ],
            "key_length": "3",
            "ref": [
              "nuie_scalesta_net.cscart_products_categories.category_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 2,
            "filtered": "5.00",
            "cost_info": {
              "read_cost": "12.00",
              "eval_cost": "0.24",
              "prefix_cost": "43.48",
              "data_read_per_join": "6K"
            },
            "used_columns": [
              "category_id",
              "usergroup_ids",
              "status",
              "storefront_id"
            ],
            "attached_condition": "((`nuie_scalesta_net`.`cscart_categories`.`storefront_id` in (0,1)) and ((`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`nuie_scalesta_net`.`cscart_categories`.`usergroup_ids`))) and (`nuie_scalesta_net`.`cscart_categories`.`status` in ('A','H')))"
          }
        }
      ]
    }
  }
}

Result

product_id category_ids position
82538 7179M 0
82539 7179M 0
82540 7179M 0
82541 7179M 0
87357 7179M 0
87358 7179M 0
87364 7179M 0
87365 7179M 0
87366 7179M 0
87367 7179M 0
87379 7179M 0
87380 7179M 0
89564 7179M 0
89565 7179M 0
92587 7179M 0
92588 7179M 0
92589 7179M 0
93942 7179M 0
93943 7179M 0
93944 7179M 0
93945 7179M 0
93946 7179M 0
93947 7179M 0
95063 7179M 0
95064 7179M 0
95065 7179M 0
95069 7179M 0
95070 7179M 0
95071 7179M 0
95072 7179M 0
95073 7179M 0
95331 7179M 0
95332 7179M 0
95456 7179M 0
95457 7179M 0
95458 7179M 0
95467 7179M 0
95468 7179M 0
95469 7179M 0
95470 7179M 0
95471 7179M 0
96181 7179M 0
96832 7179M 0
96833 7179M 0
96948 7179M 0
96949 7179M 0
96950 7179M 0
96954 7179M 0