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 
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') 
WHERE 
  cscart_products_categories.product_id IN (
    371, 370, 369, 368, 367, 366, 365, 364, 
    363, 362, 361, 360, 359, 358, 357, 356, 
    355, 354, 353, 352, 351, 350, 349, 348, 
    347, 346, 345, 344, 342, 341, 340, 339, 
    338, 335, 334, 333, 332, 331, 330, 325, 
    324, 323, 322, 321, 320, 319, 318, 317
  ) 
GROUP BY 
  cscart_products_categories.product_id

Query time 0.00144

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "cscart_products_categories.product_id",
      "temporary_table": {
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
              "rows": 13,
              "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": "cscart_products_categories",
              "access_type": "ref",
              "possible_keys": ["PRIMARY", "pt"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["category_id"],
              "ref": ["demov2026.cscart_categories.category_id"],
              "rows": 1,
              "filtered": 62.82051468,
              "index_condition": "cscart_products_categories.product_id in (371,370,369,368,367,366,365,364,363,362,361,360,359,358,357,356,355,354,353,352,351,350,349,348,347,346,345,344,342,341,340,339,338,335,334,333,332,331,330,325,324,323,322,321,320,319,318,317)"
            }
          }
        ]
      }
    }
  }
}

Result

product_id category_ids
317 303M
318 303M
319 303M
320 319,303M
321 303M
322 297M
323 297M
324 297M
325 297M
330 315M
331 315M
332 315M
333 315M
334 315M
335 315M
338 318M
339 318M
340 318M
341 318M
342 318M
344 314M
345 312M
346 312M
347 315M
348 313M
349 315M
350 315M
351 315M
352 314M
353 314M
354 314M
355 314M
356 314M
357 318M
358 311M
359 311M
360 311M
361 311M
362 311M
363 311M
364 311M
365 311M
366 313M
367 313M
368 313M
369 313M
370 313M
371 313M