SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  IF(
    shared_descr.product_id IS NOT NULL, 
    shared_descr.product, descr1.product
  ) as product, 
  companies.company as company_name, 
  variation_group_products.group_id AS variation_group_id, 
  products.product_type, 
  products.parent_product_id, 
  1 as instock_marker, 
  IF(
    products.product_type = 'C', 
    (
      SELECT 
        MAX(amount) 
      FROM 
        cscart_products 
      WHERE 
        parent_product_id = products.product_id
    ) > 0, 
    IF(
      products.amount > 0, 
      1, 
      IF(products.tracking = 'O', 1, 0)
    )
  ) as instock_sorting 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'uk' 
  LEFT JOIN cscart_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN cscart_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN cscart_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  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') 
  AND cscart_categories.storefront_id IN (0, 1) 
  LEFT JOIN cscart_ult_product_descriptions shared_descr ON shared_descr.product_id = products.product_id 
  AND shared_descr.company_id = 1 
  AND shared_descr.lang_code = 'uk' 
  LEFT JOIN cscart_images_links as img_links ON img_links.object_id = products.product_id 
  AND img_links.object_type = 'product' 
  AND img_links.type = 'M' 
  INNER JOIN cscart_product_variation_group_products AS variation_group_products ON variation_group_products.product_id = products.product_id 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND products.status IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND img_links.pair_id > 0 
  AND variation_group_products.group_id IN (876) 
GROUP BY 
  products.product_id 
ORDER BY 
  instock_sorting DESC, 
  product asc, 
  products.product_id ASC 
LIMIT 
  0, 100

Query time 0.00491

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "if(products.product_type = 'C',(subquery#2) > 0,if(products.amount > 0,1,if(products.tracking = 'O',1,0))) desc, if(shared_descr.product_id is not null,shared_descr.product,descr1.product), products.product_id",
      "temporary_table": {
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "system",
              "possible_keys": ["PRIMARY"],
              "rows": 1,
              "filtered": 100
            }
          },
          {
            "table": {
              "table_name": "variation_group_products",
              "access_type": "ref",
              "possible_keys": ["PRIMARY", "idx_group_id"],
              "key": "idx_group_id",
              "key_length": "3",
              "used_key_parts": ["group_id"],
              "ref": ["const"],
              "rows": 58,
              "filtered": 100,
              "attached_condition": "variation_group_products.group_id <=> 876"
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY", "status"],
              "key": "PRIMARY",
              "key_length": "3",
              "used_key_parts": ["product_id"],
              "ref": ["lillyshop_lillyshop.variation_group_products.product_id"],
              "rows": 1,
              "filtered": 90.50141144,
              "attached_condition": "products.company_id = 1 and (products.usergroup_ids = '' or find_in_set(0,products.usergroup_ids) or find_in_set(1,products.usergroup_ids)) and products.`status` = 'A'"
            }
          },
          {
            "table": {
              "table_name": "shared_descr",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY", "product_id", "company_id"],
              "key": "PRIMARY",
              "key_length": "13",
              "used_key_parts": ["product_id", "lang_code", "company_id"],
              "ref": [
                "lillyshop_lillyshop.variation_group_products.product_id",
                "const",
                "const"
              ],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "trigcond(shared_descr.lang_code = 'uk')"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": ["PRIMARY", "product_id"],
              "key": "PRIMARY",
              "key_length": "9",
              "used_key_parts": ["product_id", "lang_code"],
              "ref": [
                "lillyshop_lillyshop.variation_group_products.product_id",
                "const"
              ],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "trigcond(descr1.lang_code = 'uk')"
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "key_length": "3",
              "used_key_parts": ["product_id"],
              "ref": ["lillyshop_lillyshop.variation_group_products.product_id"],
              "rows": 1,
              "filtered": 99.99145508,
              "attached_condition": "prices.lower_limit = 1 and prices.usergroup_id in (0,0,1)",
              "using_index": true
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": ["PRIMARY", "pt"],
              "key": "pt",
              "key_length": "3",
              "used_key_parts": ["product_id"],
              "ref": ["lillyshop_lillyshop.variation_group_products.product_id"],
              "rows": 1,
              "filtered": 100
            }
          },
          {
            "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": ["lillyshop_lillyshop.products_categories.category_id"],
              "rows": 1,
              "filtered": 100,
              "attached_condition": "(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') and cscart_categories.storefront_id in (0,1)"
            }
          },
          {
            "table": {
              "table_name": "img_links",
              "access_type": "ref",
              "possible_keys": ["PRIMARY", "object_id"],
              "key": "object_id",
              "key_length": "81",
              "used_key_parts": ["object_id", "object_type", "type"],
              "ref": [
                "lillyshop_lillyshop.variation_group_products.product_id",
                "const",
                "const"
              ],
              "rows": 1,
              "filtered": 100,
              "index_condition": "img_links.object_id = variation_group_products.product_id and img_links.object_type = 'product' and img_links.`type` = 'M'",
              "attached_condition": "img_links.pair_id > 0"
            }
          }
        ],
        "subqueries": [
          {
            "expression_cache": {
              "state": "uninitialized",
              "query_block": {
                "select_id": 2,
                "nested_loop": [
                  {
                    "table": {
                      "table_name": "cscart_products",
                      "access_type": "ALL",
                      "possible_keys": ["idx_parent_product_id"],
                      "rows": 11707,
                      "filtered": 100,
                      "attached_condition": "cscart_products.parent_product_id = products.product_id"
                    }
                  }
                ]
              }
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name variation_group_id product_type parent_product_id instock_marker instock_sorting
20221 Гель-лак для нігтів GaMa Basic collection №001 чорний, 15 мл LILLYSHOP 876 P 0 1 1
20222 Гель-лак для нігтів GaMa Basic collection №002 холодний білий, 15 мл LILLYSHOP 876 P 0 1 1
20223 Гель-лак для нігтів GaMa Basic collection №003 білий, 15 мл LILLYSHOP 876 P 0 1 1
21286 Гель-лак для нігтів GaMa Basic collection №004 блідо-рожевий, 10 мл LILLYSHOP 876 P 0 1 1
21287 Гель-лак для нігтів GaMa Basic collection №005 кремово-рожевий, 10 мл LILLYSHOP 876 P 0 1 1
21288 Гель-лак для нігтів GaMa Basic collection №006 ніжно-ліловий, 10 мл LILLYSHOP 876 P 0 1 1
21289 Гель-лак для нігтів GaMa Basic collection №007 пудровий, 10 мл LILLYSHOP 876 P 0 1 1
21290 Гель-лак для нігтів GaMa Basic collection №008 ліловий, 10 мл LILLYSHOP 876 P 0 1 1
21291 Гель-лак для нігтів GaMa Basic collection №009 рожевий, 10 мл LILLYSHOP 876 P 0 1 1
22177 Гель-лак для нігтів GaMa Basic collection №011 малиновий, 10 мл LILLYSHOP 876 P 0 1 1
21514 Гель-лак для нігтів GaMa Basic collection №012 ягідний, 10 мл LILLYSHOP 876 P 0 1 1
22151 Гель-лак для нігтів GaMa Basic collection №013 фуксія, 10 мл LILLYSHOP 876 P 0 1 1
21292 Гель-лак для нігтів GaMa Basic collection №014 баклажановий, 10 мл LILLYSHOP 876 P 0 1 1
21293 Гель-лак для нігтів GaMa Basic collection №015 темно-ягідний, 10 мл LILLYSHOP 876 P 0 1 1
21342 Гель-лак для нігтів GaMa Basic collection №016 беж, 10 мл LILLYSHOP 876 P 0 1 1
21294 Гель-лак для нігтів GaMa Basic collection №017 світлий беж, 10 мл LILLYSHOP 876 P 0 1 1
21295 Гель-лак для нігтів GaMa Basic collection №018 рожевий беж, 10 мл LILLYSHOP 876 P 0 1 1
21343 Гель-лак для нігтів GaMa Basic collection №019 сірий беж, 10 мл LILLYSHOP 876 P 0 1 1
21296 Гель-лак для нігтів GaMa Basic collection №020 темний беж, 10 мл LILLYSHOP 876 P 0 1 1
21297 Гель-лак для нігтів GaMa Basic collection №021 ніжно-блакитний, 10 мл LILLYSHOP 876 P 0 1 1
21344 Гель-лак для нігтів GaMa Basic collection №022 волошковий, 10 мл LILLYSHOP 876 P 0 1 1
22152 Гель-лак для нігтів GaMa Basic collection №023, беж з блиском, 10 мл LILLYSHOP 876 P 0 1 1
22153 Гель-лак для нігтів GaMa Basic collection №024, темно-синій, 10 мл LILLYSHOP 876 P 0 1 1
21345 Гель-лак для нігтів GaMa Basic collection №025, фіолетовий, 10 мл LILLYSHOP 876 P 0 1 1
21346 Гель-лак для нігтів GaMa Basic collection №026, темний баклажан, 10 мл LILLYSHOP 876 P 0 1 1
21347 Гель-лак для нігтів GaMa Basic collection №027, бірюзовий, 10 мл LILLYSHOP 876 P 0 1 1
21348 Гель-лак для нігтів GaMa Basic collection №028, темний хакі, 10 мл LILLYSHOP 876 P 0 1 1
22154 Гель-лак для нігтів GaMa Basic collection №029, темний зелений, 10 мл LILLYSHOP 876 P 0 1 1
22155 Гель-лак для нігтів GaMa Basic collection №030, смарагдовий, 10 мл LILLYSHOP 876 P 0 1 1
22156 Гель-лак для нігтів GaMa Basic collection №031, зелений, 10 мл LILLYSHOP 876 P 0 1 1
22159 Гель-лак для нігтів GaMa Basic collection №032, ніжний зелений, 10 мл LILLYSHOP 876 P 0 1 1
21349 Гель-лак для нігтів GaMa Basic collection №033 світлий хакі, 10 мл LILLYSHOP 876 P 0 1 1
21350 Гель-лак для нігтів GaMa Basic collection №034 сіро-зелений, 10 мл LILLYSHOP 876 P 0 1 1
22157 Гель-лак для нігтів GaMa Basic collection №035, жовтий, 10 мл LILLYSHOP 876 P 0 1 1
22158 Гель-лак для нігтів GaMa Basic collection №036, ніжний жовтий, 10 мл LILLYSHOP 876 P 0 1 1
21552 Гель-лак для нігтів GaMa Basic collection №038 капучіно, 10 мл LILLYSHOP 876 P 0 1 1
21553 Гель-лак для нігтів GaMa Basic collection №039 кавовий, 10 мл LILLYSHOP 876 P 0 1 1
21351 Гель-лак для нігтів GaMa Basic collection №040 персиковий, 10 мл LILLYSHOP 876 P 0 1 1
21488 Гель-лак для нігтів GaMa Basic collection №041 темний коричневий, 10 мл LILLYSHOP 876 P 0 1 1
21352 Гель-лак для нігтів GaMa Basic collection №042 сірий теплий, 10 мл LILLYSHOP 876 P 0 1 1
21353 Гель-лак для нігтів GaMa Basic collection №043 сірий холодний, 10 мл LILLYSHOP 876 P 0 1 1
21354 Гель-лак для нігтів GaMa Basic collection №044 рожевий туман, 10 мл LILLYSHOP 876 P 0 1 1
21298 Гель-лак для нігтів GaMa Basic collection №045 червоний, 10 мл LILLYSHOP 876 P 0 1 1
21355 Гель-лак для нігтів GaMa Basic collection №046 малиново-червоний, 10 мл LILLYSHOP 876 P 0 1 1
21299 Гель-лак для нігтів GaMa Basic collection №047 полуничний, 10 мл LILLYSHOP 876 P 0 1 1
21300 Гель-лак для нігтів GaMa Basic collection №048 марсала, 10 мл LILLYSHOP 876 P 0 1 1
21301 Гель-лак для нігтів GaMa Basic collection №049 бордо, 10 мл LILLYSHOP 876 P 0 1 1
21302 Гель-лак для нігтів GaMa Basic collection №050 пурпурний, 10 мл LILLYSHOP 876 P 0 1 1
22160 Гель-лак для нігтів GaMa Basic collection №051, кава з молоком, 10 мл LILLYSHOP 876 P 0 1 1
21303 Гель-лак для нігтів GaMa Basic collection №052 пунцовий, 10 мл LILLYSHOP 876 P 0 1 1
22175 Гель-лак для нігтів GaMa Basic collection №053, графітовий, 10 мл LILLYSHOP 876 P 0 1 1
21356 Гель-лак для нігтів GaMa Basic collection №054 небесний, 10 мл LILLYSHOP 876 P 0 1 1
21357 Гель-лак для нігтів GaMa Basic collection №055 бузковий, 10 мл LILLYSHOP 876 P 0 1 1
22161 Гель-лак для нігтів GaMa Basic collection №056, кремовий, 10 мл LILLYSHOP 876 P 0 1 1
21304 Гель-лак для нігтів GaMa Basic collection №057 вогняний, 10 мл LILLYSHOP 876 P 0 1 1
21305 Гель-лак для нігтів GaMa Basic collection №058 вишневий, 10 мл LILLYSHOP 876 P 0 1 1
21306 Гель-лак для нігтів GaMa Basic collection №059 суничний, 10 мл LILLYSHOP 876 P 0 1 1
21307 Гель-лак для нігтів GaMa Basic collection №060 ультрамарин, 10 мл LILLYSHOP 876 P 0 1 1