SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  IF(
    shared_descr.product_id IS NOT NULL, 
    shared_descr.product, descr1.product
  ) as product, 
  SUM(
    cscart_also_bought_products.amount
  ) amnt, 
  IF(
    products.age_verification = 'Y', 
    'Y', 
    IF(
      cscart_categories.age_verification = 'Y', 
      'Y', cscart_categories.parent_age_verification
    )
  ) as need_age_verification, 
  IF(
    products.age_limit > cscart_categories.age_limit, 
    IF(
      products.age_limit > cscart_categories.parent_age_limit, 
      products.age_limit, cscart_categories.parent_age_limit
    ), 
    IF(
      cscart_categories.age_limit > cscart_categories.parent_age_limit, 
      cscart_categories.age_limit, cscart_categories.parent_age_limit
    )
  ) as age_limit 
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_product_prices as prices ON prices.product_id = products.product_id 
  AND prices.lower_limit = 1 
  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') 
  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 = 'en' 
  LEFT JOIN cscart_also_bought_products ON cscart_also_bought_products.related_id = products.product_id 
WHERE 
  1 
  AND cscart_categories.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 IN ('A') 
  AND prices.usergroup_id IN (0, 0, 1) 
  AND cscart_also_bought_products.product_id = 837 
GROUP BY 
  cscart_also_bought_products.related_id 
ORDER BY 
  SUM(
    cscart_also_bought_products.amount
  ) desc, 
  products.product_id ASC 
LIMIT 
  0, 12

Query time 0.00374

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "136.51"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_also_bought_products",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 12,
              "rows_produced_per_join": 12,
              "filtered": "100.00",
              "index_condition": "((`eshopuga_upgr_4122`.`cscart_also_bought_products`.`related_id` is not null) and (`eshopuga_upgr_4122`.`cscart_also_bought_products`.`related_id` is not null))",
              "cost_info": {
                "read_cost": "12.00",
                "eval_cost": "2.40",
                "prefix_cost": "14.40",
                "data_read_per_join": "192"
              },
              "used_columns": [
                "product_id",
                "related_id",
                "amount"
              ]
            }
          },
          {
            "table": {
              "table_name": "products",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "status"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "eshopuga_upgr_4122.cscart_also_bought_products.related_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 10,
              "filtered": "91.44",
              "cost_info": {
                "read_cost": "12.00",
                "eval_cost": "2.19",
                "prefix_cost": "28.80",
                "data_read_per_join": "65K"
              },
              "used_columns": [
                "product_id",
                "status",
                "usergroup_ids",
                "age_verification",
                "age_limit"
              ],
              "attached_condition": "(((`eshopuga_upgr_4122`.`products`.`usergroup_ids` = '') or find_in_set(0,`eshopuga_upgr_4122`.`products`.`usergroup_ids`) or find_in_set(1,`eshopuga_upgr_4122`.`products`.`usergroup_ids`)) and (`eshopuga_upgr_4122`.`products`.`status` = 'A'))"
            }
          },
          {
            "table": {
              "table_name": "prices",
              "access_type": "ref",
              "possible_keys": [
                "usergroup",
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "key": "usergroup",
              "used_key_parts": [
                "product_id"
              ],
              "key_length": "3",
              "ref": [
                "eshopuga_upgr_4122.cscart_also_bought_products.related_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 10,
              "filtered": "99.83",
              "using_index": true,
              "cost_info": {
                "read_cost": "10.97",
                "eval_cost": "2.19",
                "prefix_cost": "41.97",
                "data_read_per_join": "262"
              },
              "used_columns": [
                "product_id",
                "lower_limit",
                "usergroup_id"
              ],
              "attached_condition": "((`eshopuga_upgr_4122`.`prices`.`lower_limit` = 1) and (`eshopuga_upgr_4122`.`prices`.`usergroup_id` in (0,0,1)))"
            }
          },
          {
            "table": {
              "table_name": "shared_descr",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "product_id",
                "company_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "product_id",
                "lang_code",
                "company_id"
              ],
              "key_length": "13",
              "ref": [
                "eshopuga_upgr_4122.cscart_also_bought_products.related_id",
                "const",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 10,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "10.95",
                "eval_cost": "2.19",
                "prefix_cost": "55.11",
                "data_read_per_join": "41K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "company_id",
                "product"
              ]
            }
          },
          {
            "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": [
                "eshopuga_upgr_4122.cscart_also_bought_products.related_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 10,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "10.95",
                "eval_cost": "2.19",
                "prefix_cost": "68.26",
                "data_read_per_join": "41K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "ALL",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "rows_examined_per_scan": 115,
              "rows_produced_per_join": 25,
              "filtered": "2.00",
              "using_join_buffer": "Block Nested Loop",
              "cost_info": {
                "read_cost": "32.99",
                "eval_cost": "5.04",
                "prefix_cost": "106.28",
                "data_read_per_join": "67K"
              },
              "used_columns": [
                "category_id",
                "company_id",
                "usergroup_ids",
                "status",
                "age_verification",
                "age_limit",
                "parent_age_verification",
                "parent_age_limit"
              ],
              "attached_condition": "((`eshopuga_upgr_4122`.`cscart_categories`.`company_id` = 1) and ((`eshopuga_upgr_4122`.`cscart_categories`.`usergroup_ids` = '') or find_in_set(0,`eshopuga_upgr_4122`.`cscart_categories`.`usergroup_ids`) or find_in_set(1,`eshopuga_upgr_4122`.`cscart_categories`.`usergroup_ids`)) and (`eshopuga_upgr_4122`.`cscart_categories`.`status` in ('A','H')))"
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id",
                "product_id"
              ],
              "key_length": "6",
              "ref": [
                "eshopuga_upgr_4122.cscart_categories.category_id",
                "eshopuga_upgr_4122.cscart_also_bought_products.related_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 25,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "25.19",
                "eval_cost": "5.04",
                "prefix_cost": "136.51",
                "data_read_per_join": "403"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id product amnt need_age_verification age_limit
856 Carrots 1kg 2 N 0
662 Carton of 500ml krest soda 1 N 0
663 Carton of 500ml fanta orange soda 1 N 0
691 Nestle coffee mate 400g 1 N 0
847 10kg maganjo maize flour 1 N 0
859 French beans / kg 1 N 0
876 Small bananas /bunch 1 N 0
1059 Roki cooking oil 6 x 3 ltr pack 1 N 0
1436 10 kgs of rice + 2kgs of meat 1 N 0
1588 Blue band low fat 500 grams 1 N 0