SELECT 
  products.product_id, 
  products.amount, 
  descr1.product as product, 
  companies.company as company_name, 
  products.kl_erp_inventory_id, 
  variation_group_products.group_id AS variation_group_id, 
  products.product_type, 
  products.parent_product_id, 
  products.master_product_offers_count, 
  products.master_product_id, 
  products.company_id, 
  products.kl_enable_qc, 
  products.kl_qc_amount 
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 USE INDEX (
    idx_products_categories_composite
  ) ON products_categories.product_id = products.product_id 
  INNER JOIN cscart_categories ON cscart_categories.category_id = products_categories.category_id 
  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') 
    OR products.company_id = 0
  ) 
  AND products.company_id IN (13, 0) 
  AND (
    products.amount > 0 
    OR products.tracking = 'D'
  ) 
  AND products.status IN ('A') 
  AND variation_group_products.group_id IN (965, 1056) 
  AND products.master_product_status IN ('A') 
  AND products.master_product_id = 0 
  AND products.company_id > 0 
GROUP BY 
  products.product_id 
ORDER BY 
  NULL asc

Query time 0.00660

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "7.74"
    },
    "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": 8,
              "rows_produced_per_join": 8,
              "filtered": "100.00",
              "index_condition": "(`cscart_db`.`variation_group_products`.`group_id` in (965,1056))",
              "cost_info": {
                "read_cost": "3.31",
                "eval_cost": "0.80",
                "prefix_cost": "4.11",
                "data_read_per_join": "128"
              },
              "used_columns": [
                "product_id",
                "group_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "age_verification",
                "status",
                "idx_parent_product_id",
                "idx_master_product_id",
                "youtube_link",
                "idx_products_parent_lookup",
                "idx_products_status_company",
                "idx_products_master_status",
                "idx_products_inventory",
                "idx_products_status_company_master",
                "idx_products_main_query",
                "idx_products_query_opt",
                "idx_products_composite_query",
                "idx_kl_qc_enabled"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "cscart_db.variation_group_products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "2.12",
                "eval_cost": "0.04",
                "prefix_cost": "7.03",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "product_id",
                "kl_erp_inventory_id",
                "product_type",
                "status",
                "company_id",
                "amount",
                "kl_enable_qc",
                "kl_qc_amount",
                "tracking",
                "parent_product_id",
                "master_product_id",
                "master_product_status",
                "master_product_offers_count"
              ],
              "attached_condition": "((`cscart_db`.`products`.`master_product_id` = 0) and (`cscart_db`.`products`.`company_id` in (13,0)) and ((`cscart_db`.`products`.`amount` > 0) or (`cscart_db`.`products`.`tracking` = 'D')) and (`cscart_db`.`products`.`status` = 'A') and (`cscart_db`.`products`.`master_product_status` = 'A') and (`cscart_db`.`products`.`company_id` > 0))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "idx_products_categories_composite"
              ],
              "key": "idx_products_categories_composite",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "cscart_db.variation_group_products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "0.13",
                "eval_cost": "0.05",
                "prefix_cost": "7.20",
                "data_read_per_join": "7"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "p_category_id",
                "idx_categories_storefront_status",
                "idx_categories_usergroup_status",
                "idx_categories_status_id_path"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "cscart_db.products_categories.category_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "81.96",
              "cost_info": {
                "read_cost": "0.12",
                "eval_cost": "0.04",
                "prefix_cost": "7.36",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "category_id",
                "status",
                "storefront_id"
              ],
              "attached_condition": "((`cscart_db`.`cscart_categories`.`status` in ('A','H')) and (`cscart_db`.`cscart_categories`.`storefront_id` in (0,1)))"
            }
          },
          {
            "table": {
              "table_name": "descr1",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id",
                "idx_product_desc_lang",
                "idx_product_name_search",
                "idx_product_desc_sort"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "cscart_db.variation_group_products.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.22",
                "eval_cost": "0.04",
                "prefix_cost": "7.62",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          },
          {
            "table": {
              "table_name": "companies",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "cscart_db.products.company_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.08",
                "eval_cost": "0.04",
                "prefix_cost": "7.74",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company"
              ],
              "attached_condition": "<if>(found_match(companies), ((`cscart_db`.`companies`.`status` = 'A') or (`cscart_db`.`products`.`company_id` = 0)), true)"
            }
          }
        ]
      }
    }
  }
}

Result

product_id amount product company_name kl_erp_inventory_id variation_group_id product_type parent_product_id master_product_offers_count master_product_id company_id kl_enable_qc kl_qc_amount
68896 5 Dear Darling Marker Tint 01 Raspberry Pop Roadskye Tradecom Pvt. Ltd. 965 P 0 0 0 13 0 0
68899 16 Dear Darling Marker Tint 04 Milk Strawberry Roadskye Tradecom Pvt. Ltd. 965 P 0 0 0 13 0 0
68897 13 Dear Darling Marker Tint 02 Mono Plum Roadskye Tradecom Pvt. Ltd. 965 P 0 0 0 13 0 0
68900 5 Dear Darling Marker Tint 05 Pink Tangerine Roadskye Tradecom Pvt. Ltd. 965 P 0 0 0 13 0 0
68901 2 Dear Darling Marker Tint 06 Grape Soda Roadskye Tradecom Pvt. Ltd. 965 P 0 0 0 13 0 0
65262 37 Cera-Heart My Type Duo Cream 60ml Roadskye Tradecom Pvt. Ltd. 1056 P 0 0 0 13 0 0