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 = 305 
WHERE 
  cscart_products_categories.product_id IN (
    431380, 432643, 430955, 425786, 433168, 
    420963, 435716, 436514, 419288, 424427, 
    460521, 414020, 414696, 431630, 420330, 
    439312, 427057, 405641, 426607, 407640, 
    409611, 428383, 409077, 440298, 450604, 
    455510, 402558, 401092, 442722, 442428, 
    417957, 432262, 452815, 431646, 439685, 
    440664, 451688, 410924, 423745, 420062, 
    434608, 446159, 429578, 425486, 423026, 
    435351, 456510, 404001
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00093

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.243691242,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_products_categories",
          "access_type": "range",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "pt",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "loops": 1,
          "rows": 48,
          "cost": 0.08683616,
          "filtered": 100,
          "attached_condition": "cscart_products_categories.product_id in (431380,432643,430955,425786,433168,420963,435716,436514,419288,424427,460521,414020,414696,431630,420330,439312,427057,405641,426607,407640,409611,428383,409077,440298,450604,455510,402558,401092,442722,442428,417957,432262,452815,431646,439685,440664,451688,410924,423745,420062,434608,446159,429578,425486,423026,435351,456510,404001)",
          "using_index": true
        }
      },
      {
        "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": ["u985510652_ecartify.cscart_products_categories.category_id"],
          "loops": 48,
          "rows": 1,
          "cost": 0.04375232,
          "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",
            "u985510652_ecartify.cscart_products_categories.product_id"
          ],
          "loops": 48,
          "rows": 1,
          "cost": 0.08225472,
          "filtered": 100
        }
      }
    ]
  }
}

Result

product_id category_ids position
401092 305M 0
402558 305M 0
404001 305M 0
405641 305M 0
407640 305M 0
409077 305M 0
409611 305M 0
410924 305M 0
414020 305M 0
414696 305M 0
417957 305M 0
419288 305M 0
420062 305M 0
420330 305M 0
420963 305M 0
423026 305M 0
423745 305M 0
424427 305M 0
425486 305M 0
425786 305M 0
426607 305M 0
427057 305M 0
428383 305M 0
429578 305M 0
430955 305M 0
431380 305M 0
431630 305M 0
431646 305M 0
432262 305M 0
432643 305M 0
433168 305M 0
434608 305M 0
435351 305M 0
435716 305M 0
436514 305M 0
439312 305M 0
439685 305M 0
440298 305M 0
440664 305M 0
442428 305M 0
442722 305M 0
446159 305M 0
450604 305M 0
451688 305M 0
452815 305M 0
455510 305M 0
456510 305M 0
460521 305M 0