SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  descr1.product as product, 
  companies.company as company_name, 
  companies.ag_hide_city as company_city_hide, 
  companies.city as company_city, 
  companies.state as company_state 
FROM 
  products as products 
  LEFT JOIN product_descriptions as descr1 ON descr1.product_id = products.product_id 
  AND descr1.lang_code = 'en' 
  LEFT JOIN product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  LEFT JOIN companies AS companies ON companies.company_id = products.company_id 
  INNER JOIN products_categories as products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN categories ON categories.category_id = products_categories.category_id 
  AND (
    categories.usergroup_ids = '' 
    OR FIND_IN_SET(0, categories.usergroup_ids) 
    OR FIND_IN_SET(1, categories.usergroup_ids)
  ) 
  AND categories.status IN ('A', 'H') 
  AND categories.storefront_id IN (0, 1) 
  LEFT JOIN product_options_inventory as inventory ON inventory.product_id = products.product_id 
  LEFT JOIN product_popularity as popularity ON popularity.product_id = products.product_id 
WHERE 
  1 
  AND companies.status IN ('A') 
  AND products.company_id = 237 
  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 prices.usergroup_id IN (0, 0, 1) 
  AND products.company_id = 237 
GROUP BY 
  products.product_id 
ORDER BY 
  popularity.total desc, 
  products.product_id ASC 
LIMIT 
  5736, 12

Query time 0.28929

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "2348.13"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "companies",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY",
                "idx_status"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "company_id"
              ],
              "key_length": "4",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.10",
                "prefix_cost": "0.00",
                "data_read_per_join": "14K"
              },
              "used_columns": [
                "company_id",
                "status",
                "company",
                "city",
                "state",
                "ag_hide_city"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "index_merge",
              "possible_keys": [
                "PRIMARY",
                "age_verification",
                "status",
                "idx_company_id",
                "idx_usergroup_ids",
                "idx_amount",
                "index_products_on_deleted_at"
              ],
              "key": "intersect(idx_company_id,status)",
              "key_length": "4,3",
              "rows_examined_per_scan": 2881,
              "rows_produced_per_join": 1152,
              "filtered": "39.99",
              "cost_info": {
                "read_cost": "1335.63",
                "eval_cost": "115.23",
                "prefix_cost": "1450.86",
                "data_read_per_join": "4M"
              },
              "used_columns": [
                "product_id",
                "status",
                "company_id",
                "amount",
                "usergroup_ids",
                "tracking"
              ],
              "attached_condition": "((`goimagine`.`products`.`company_id` = 237) and ((`goimagine`.`products`.`amount` > 0) or (`goimagine`.`products`.`tracking` = 'D')) and ((`goimagine`.`products`.`usergroup_ids` = '') or (0 <> find_in_set(0,`goimagine`.`products`.`usergroup_ids`)) or (0 <> find_in_set(1,`goimagine`.`products`.`usergroup_ids`))) and (`goimagine`.`products`.`status` = 'A'))"
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "product_id",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "goimagine.products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 298,
              "filtered": "25.00",
              "cost_info": {
                "read_cost": "393.36",
                "eval_cost": "29.85",
                "prefix_cost": "1963.61",
                "data_read_per_join": "6K"
              },
              "used_columns": [
                "id",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`goimagine`.`prices`.`lower_limit` = 1) and (`goimagine`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "pt",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "goimagine.products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 570,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "83.41",
                "eval_cost": "57.07",
                "prefix_cost": "2104.09",
                "data_read_per_join": "8K"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "table": {
              "table_name": "categories",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "goimagine.products_categories.category_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 28,
              "filtered": "5.00",
              "cost_info": {
                "read_cost": "142.67",
                "eval_cost": "2.85",
                "prefix_cost": "2303.82",
                "data_read_per_join": "74K"
              },
              "used_columns": [
                "category_id",
                "usergroup_ids",
                "status",
                "storefront_id"
              ],
              "attached_condition": "(((`goimagine`.`categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`goimagine`.`categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`goimagine`.`categories`.`usergroup_ids`))) and (`goimagine`.`categories`.`status` in ('A','H')) and (`goimagine`.`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": "11",
              "ref": [
                "goimagine.products.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 28,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "9.40",
                "eval_cost": "2.85",
                "prefix_cost": "2316.08",
                "data_read_per_join": "145K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          },
          {
            "table": {
              "table_name": "inventory",
              "access_type": "ref",
              "possible_keys": [
                "pc"
              ],
              "key": "pc",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "goimagine.products.product_id"
              ],
              "rows_examined_per_scan": 3,
              "rows_produced_per_join": 97,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "8.69",
                "eval_cost": "9.70",
                "prefix_cost": "2334.47",
                "data_read_per_join": "92K"
              },
              "used_columns": [
                "product_id",
                "combination_hash"
              ]
            }
          },
          {
            "table": {
              "table_name": "popularity",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "total"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "goimagine.products.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 97,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "3.96",
                "eval_cost": "9.70",
                "prefix_cost": "2348.13",
                "data_read_per_join": "3K"
              },
              "used_columns": [
                "product_id",
                "total"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id product company_name company_city_hide company_city company_state
460617 Grandma Sweatshirt, Custom Grandparent Gift, Personalize With Seven Kids Names, Nana, Memere, Mammy, Mammie, Nonna, AGFT 399 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [ A Gift To Treasure N Clinton MO
461378 Grandma Sweatshirt, Custom With Eight Grandkids Name, Grandparent Gift For Mammie, Grannie, Grams, Gran, Abuelita, Popser, AGFT 855 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CL A Gift To Treasure N Clinton MO
366330 Grandma Sweatshirt, God Created, Personalize With Nana, Momma, Grammy, MawMaw, Abuelita, Grandparent, Parent Gift, Ships TODAY, AGFT 606 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE A Gift To Treasure N Clinton MO
413091 Grandma Sweatshirt, God Created, Personalize With Nana, Momma, Grammy, MawMaw, Abuelita, Grandparent, Parent Gift, Ships TODAY, AGFT 606 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE A Gift To Treasure N Clinton MO
415174 Grandma Sweatshirt, Custom With Eight Grandkids Name, Grandparent Gift For Mammie, Grannie, Grams, Gran, Abuelita, Popser, AGFT 855 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CL A Gift To Treasure N Clinton MO
421021 MaMaw Sweatshirt, Custom Grandparent Gift From Grandkids, MeMaw, Mommy, Mamaw, Nonna, Nonnie, Lolly, GiGi, Mammaw, Ships TODAY, AGFT 901 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLON A Gift To Treasure N Clinton MO
425726 MawMaw Sweatshirt, Sweetheart, Custom Grandparent Gift, Personalize With Two Grandkids, Nan, Gramma, Gram, Mimi, Oma, Ships Today, AGFT 924 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CL A Gift To Treasure N Clinton MO
425728 Great Grandpa Sweatshirt, Custom Grandparent Gift, Personalize With Name, MeMa, Pappy, Pops, PePaw, Granny, Grammy, Ships TODAY, AGFT 361 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLON A Gift To Treasure N Clinton MO
427046 MawMaw Sweatshirt, Sweetheart, Custom Grandparent Gift, Personalize With Two Grandkids, Nan, Gramma, Gram, Mimi, Oma, Ships Today, AGFT 924 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CL A Gift To Treasure N Clinton MO
435531 Grandma Sweatshirt, God Created, Personalize With Nana, Momma, Grammy, MawMaw, Abuelita, Grandparent, Parent Gift, Ships TODAY, AGFT 606 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE A Gift To Treasure N Clinton MO
438172 Great Grandpa Sweatshirt, Custom Grandparent Gift, Personalize With Name, MeMa, Pappy, Pops, PePaw, Granny, Grammy, Ships TODAY, AGFT 361 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLON A Gift To Treasure N Clinton MO
443463 Grandpa Girl, Buddy, Sweatshirt, Personalized With Granddaughter Name, Custom Grandparent Gift, Opa, Grampa, Gramps, Pappy, Pop, Grandma, AGFT 263 [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [C A Gift To Treasure N Clinton MO