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, 
  products.master_product_offers_count, 
  products.master_product_id, 
  products.company_id, 
  IF(
    products.age_verification = 'Y', 
    'Y', 
    IF(
      netting_categories.age_verification = 'Y', 
      'Y', netting_categories.parent_age_verification
    )
  ) as need_age_verification, 
  IF(
    products.age_limit > netting_categories.age_limit, 
    IF(
      products.age_limit > netting_categories.parent_age_limit, 
      products.age_limit, netting_categories.parent_age_limit
    ), 
    IF(
      netting_categories.age_limit > netting_categories.parent_age_limit, 
      netting_categories.age_limit, netting_categories.parent_age_limit
    )
  ) as age_limit 
FROM 
  netting_products as products 
  LEFT JOIN netting_product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN netting_companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN netting_products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN netting_categories ON netting_categories.category_id = products_categories.category_id 
  AND (
    netting_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, netting_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, netting_categories.usergroup_ids
    )
  ) 
  AND netting_categories.status IN ('A', 'H') 
  AND netting_categories.storefront_id IN (0, 1) 
  LEFT JOIN netting_warehouses_sum_products_amount as war_sum_amount ON war_sum_amount.product_id = products.product_id 
  INNER JOIN netting_product_variation_group_products AS variation_group_products ON variation_group_products.product_id = products.product_id 
  LEFT JOIN netting_master_products_storefront_offers_count AS master_products_storefront_offers_count ON master_products_storefront_offers_count.product_id = products.product_id 
  AND master_products_storefront_offers_count.storefront_id = 1 
WHERE 
  1 
  AND (
    companies.status IN ('A') 
    OR products.company_id = 0
  ) 
  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 (23, 27, 30, 31, 42, 45, 46) 
  AND products.master_product_status IN ('A') 
  AND products.master_product_id = 0 
  AND (
    products.company_id > 0 
    OR (
      master_products_storefront_offers_count.count > 0
    )
  ) 
  AND products.cp_is_installment_product = 'N' 
  AND products.product_type != 'D' 
GROUP BY 
  products.product_id 
ORDER BY 
  NULL asc

Query time 0.00347

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "war_sum_amount",
          "access_type": "system",
          "possible_keys": ["PRIMARY"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "master_products_storefront_offers_count",
          "access_type": "system",
          "possible_keys": ["PRIMARY", "idx_storefront_id"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        }
      },
      {
        "table": {
          "table_name": "variation_group_products",
          "access_type": "index",
          "possible_keys": ["PRIMARY", "idx_group_id"],
          "key": "PRIMARY",
          "key_length": "6",
          "used_key_parts": ["product_id", "group_id"],
          "rows": 167,
          "filtered": 46.10778427,
          "attached_condition": "variation_group_products.group_id in (23,27,30,31,42,45,46)",
          "using_index": true
        }
      },
      {
        "table": {
          "table_name": "products",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "status", "idx_master_product_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["pucuda_cscart.variation_group_products.product_id"],
          "rows": 1,
          "filtered": 95.66918945,
          "attached_condition": "products.master_product_id = 0 and (products.usergroup_ids = '' or find_in_set(0,products.usergroup_ids) or find_in_set(1,products.usergroup_ids)) and products.`status` = 'A' and products.master_product_status = 'A' and products.company_id > 0 and products.cp_is_installment_product = 'N' and products.product_type <> 'D'"
        }
      },
      {
        "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": ["pucuda_cscart.variation_group_products.product_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(descr1.lang_code = 'en')"
        }
      },
      {
        "table": {
          "table_name": "companies",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "4",
          "used_key_parts": ["company_id"],
          "ref": ["pucuda_cscart.products.company_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(companies.`status` = 'A' or products.company_id = 0)"
        }
      },
      {
        "table": {
          "table_name": "products_categories",
          "access_type": "ref",
          "possible_keys": ["PRIMARY", "pt"],
          "key": "pt",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["pucuda_cscart.variation_group_products.product_id"],
          "rows": 3,
          "filtered": 100
        }
      },
      {
        "table": {
          "table_name": "netting_categories",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "c_status", "p_category_id"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["category_id"],
          "ref": ["pucuda_cscart.products_categories.category_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "(netting_categories.usergroup_ids = '' or find_in_set(0,netting_categories.usergroup_ids) or find_in_set(1,netting_categories.usergroup_ids)) and netting_categories.`status` in ('A','H') and netting_categories.storefront_id in (0,1)"
        }
      }
    ]
  }
}

Result

product_id amount product company_name variation_group_id product_type parent_product_id master_product_offers_count master_product_id company_id need_age_verification age_limit
531 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 P 0 0 0 3 N 0
533 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
534 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
535 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
536 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
537 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
538 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
539 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
540 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
541 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
542 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
543 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
544 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
545 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
546 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
547 1000 5/8 Climb Netting Shrinking Upgraded Colors Pucuda Manufacturing 23 V 531 0 0 3 N 0
569 1000 5/8 Climb Netting Non- Shrinking Base Colors Pucuda Manufacturing 31 P 0 0 0 3 N 0
570 1000 5/8 Climb Netting Shrinking Base Colors Pucuda Manufacturing 27 P 0 0 0 3 N 0
571 1000 5/8 Climb Netting Shrinking Base Colors Pucuda Manufacturing 27 V 570 0 0 3 N 0
572 1000 5/8 Climb Netting Shrinking Base Colors Pucuda Manufacturing 27 V 570 0 0 3 N 0
592 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 P 0 0 0 3 N 0
593 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
594 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
595 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
596 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
597 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
598 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
599 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
600 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
601 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
602 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
603 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
604 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
605 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
606 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
607 1000 5/8 Climb Netting Non- Shrinking Upgraded Colors Pucuda Manufacturing 30 V 592 0 0 3 N 0
611 1000 5/8 Climb Netting Non- Shrinking Base Colors Pucuda Manufacturing 31 V 569 0 0 3 N 0
612 1000 5/8 Climb Netting Non- Shrinking Base Colors Pucuda Manufacturing 31 V 569 0 0 3 N 0
706 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
707 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 P 0 0 0 3 N 0
708 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
709 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
710 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
711 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
712 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
713 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
714 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
715 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
716 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
717 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
718 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
719 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
720 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
721 1000 5/8 Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 42 V 707 0 0 3 N 0
757 1000 5/8 Non Shrinking rope per sq foot base colors Pucuda Manufacturing 45 P 0 0 0 3 N 0
758 1000 5/8 Non Shrinking rope per sq foot base colors Pucuda Manufacturing 45 V 757 0 0 3 N 0
759 1000 5/8 Non Shrinking rope per sq foot base colors Pucuda Manufacturing 45 V 757 0 0 3 N 0
761 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 P 0 0 0 3 N 0
762 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
763 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
764 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
765 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
766 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
767 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
768 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
769 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
770 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
771 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
772 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
773 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
774 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
775 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0
776 1000 5/8 Non Shrinking rope per sq foot upgraded colors Pucuda Manufacturing 46 V 761 0 0 3 N 0