SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  products.amount, 
  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 
FROM 
  cscart_products as products 
  LEFT JOIN cscart_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  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) 
  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.amount > 0 
    OR products.tracking = 'D'
  ) 
  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 variation_group_products.group_id IN (229, 167, 247, 249, 389, 248, 250) 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  NULL asc

Query time 0.00332

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "20.39"
    },
    "ordering_operation": {
      "using_filesort": false,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "variation_group_products",
              "access_type": "range",
              "possible_keys": [
                "PRIMARY",
                "idx_group_id"
              ],
              "key": "idx_group_id",
              "used_key_parts": [
                "group_id"
              ],
              "key_length": "3",
              "rows_examined_per_scan": 21,
              "rows_produced_per_join": 21,
              "filtered": "100.00",
              "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`variation_group_products`.`group_id` in (229,167,247,249,389,248,250))",
              "cost_info": {
                "read_cost": "9.11",
                "eval_cost": "2.10",
                "prefix_cost": "11.21",
                "data_read_per_join": "336"
              },
              "used_columns": [
                "product_id",
                "group_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.variation_group_products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 3,
              "filtered": "17.71",
              "cost_info": {
                "read_cost": "5.25",
                "eval_cost": "0.37",
                "prefix_cost": "18.56",
                "data_read_per_join": "16K"
              },
              "used_columns": [
                "product_id",
                "product_type",
                "status",
                "company_id",
                "amount",
                "usergroup_ids",
                "tracking",
                "parent_product_id"
              ],
              "attached_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`products`.`amount` > 0) or (`softwarepirmam_hewadelivard_cscart_4`.`products`.`tracking` = 'D')) and ((`softwarepirmam_hewadelivard_cscart_4`.`products`.`usergroup_ids` = '') or (0 <> find_in_set(0,`softwarepirmam_hewadelivard_cscart_4`.`products`.`usergroup_ids`)) or (0 <> find_in_set(1,`softwarepirmam_hewadelivard_cscart_4`.`products`.`usergroup_ids`))) and (`softwarepirmam_hewadelivard_cscart_4`.`products`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`products`.`product_type` <> 'D'))"
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.products.company_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "10.00",
              "cost_info": {
                "read_cost": "0.93",
                "eval_cost": "0.04",
                "prefix_cost": "19.86",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`companies`.`status` = 'A')"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "pt",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.variation_group_products.product_id"
              ],
              "rows_examined_per_scan": 2,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.19",
                "eval_cost": "0.07",
                "prefix_cost": "20.12",
                "data_read_per_join": "11"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "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": [
                "softwarepirmam_hewadelivard_cscart_4.products_categories.category_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "0.19",
                "eval_cost": "0.00",
                "prefix_cost": "20.38",
                "data_read_per_join": "119"
              },
              "used_columns": [
                "category_id",
                "storefront_id",
                "usergroup_ids",
                "status"
              ],
              "attached_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`cscart_categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`softwarepirmam_hewadelivard_cscart_4`.`cscart_categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`softwarepirmam_hewadelivard_cscart_4`.`cscart_categories`.`usergroup_ids`))) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_categories`.`status` in ('A','H')) and (`softwarepirmam_hewadelivard_cscart_4`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "softwarepirmam_hewadelivard_cscart_4.variation_group_products.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.00",
                "prefix_cost": "20.39",
                "data_read_per_join": "173"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id amount product company_name variation_group_id product_type parent_product_id
2302 20 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 7 165U - 16GB RAM - 256GB SSD Delivard Store 167 V 2301
2301 20 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 7 165U - 16GB RAM - 256GB SSD Delivard Store 167 P 0
2300 100 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 5 135U - 256GB SSD Delivard Store 229 P 0
2582 100 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 5 135U - 256GB SSD Delivard Store 229 V 2300
2583 100 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 5 135U - 256GB SSD Delivard Store 229 V 2300
2584 100 Microsoft 13" Multi-Touch Surface Pro 10 for Business - Intel® Core Ultra 5 135U - 256GB SSD Delivard Store 229 V 2300
2641 100 Microsoft Surface Laptop 6 - 13.5" Touchscreen - Intel Core Ultra 7 165H - 16GB RAM - Windows 11 Delivard Store 247 V 2640
2291 100 Microsoft Surface Laptop 6 - 13.5" Touchscreen - Intel Core Ultra 7 165H - 16GB RAM - Windows 11 Delivard Store 247 V 2640
2639 100 Microsoft Surface Laptop 6 - 13.5" Touchscreen - Intel Core Ultra 7 165H - 16GB RAM - Windows 11 Delivard Store 247 V 2640
2640 100 Microsoft Surface Laptop 6 - 13.5" Touchscreen - Intel Core Ultra 7 165H - 16GB RAM - Windows 11 Delivard Store 247 P 0
2642 100 Microsoft Surface Laptop 6 (2024) - 13.5" Touchscreen - Intel Core Ultra 7 165H - 1TB SSD - Windows 11 Pro Delivard Store 248 V 2643
2643 100 Microsoft Surface Laptop 6 (2024) - 13.5" Touchscreen - Intel Core Ultra 7 165H - 1TB SSD - Windows 11 Pro Delivard Store 248 P 0
2647 100 Microsoft Surface Pro 11 Copilot+ PC, 13" LCD 120Hz Touchscreen, Snapdragon X Elite, 16GB RAM, 1TB SSD,Shared Qualcomm Adreno Graphics / Windows 11 Pro, Platinum Delivard Store 249 V 2646
2646 100 Microsoft Surface Pro 11 Copilot+ PC, 13" LCD 120Hz Touchscreen, Snapdragon X Elite, 16GB RAM, 1TB SSD,Shared Qualcomm Adreno Graphics / Windows 11 Pro, Platinum Delivard Store 249 P 0
2649 100 Microsoft Surface Laptop Studio 2 for Business 14.4"- Core i7-13800H - 64GB RAM - NVIDIA RTX 4060 GPU 8GB - Windows 11 Pro Delivard Store 250 P 0
2650 100 Microsoft Surface Laptop Studio 2 for Business 14.4"- Core i7-13800H - 64GB RAM - NVIDIA RTX 4060 GPU 8GB - Windows 11 Pro Delivard Store 250 V 2649
3429 100 Microsoft XBOX Series X|S Wireless Controller Delivard Store 389 V 3427
3428 100 Microsoft XBOX Series X|S Wireless Controller Delivard Store 389 V 3427
3427 99 Microsoft XBOX Series X|S Wireless Controller Delivard Store 389 P 0