SELECT 
  SQL_CALC_FOUND_ROWS products.product_id, 
  IF(
    shared_descr.product_id IS NOT NULL, 
    shared_descr.product, descr1.product
  ) as product, 
  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 = 'de' 
  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 = 'de' 
WHERE 
  1 
  AND cscart_categories.category_id IN (362) 
  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) 
GROUP BY 
  products.product_id 
ORDER BY 
  product asc, 
  products.product_id ASC 
LIMIT 
  24, 24

Query time 0.00287

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "279.04"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "cscart_categories",
              "access_type": "const",
              "possible_keys": [
                "PRIMARY",
                "c_status",
                "p_category_id"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.00",
                "eval_cost": "0.20",
                "prefix_cost": "0.00",
                "data_read_per_join": "2K"
              },
              "used_columns": [
                "category_id",
                "company_id",
                "usergroup_ids",
                "status",
                "age_verification",
                "age_limit",
                "parent_age_verification",
                "parent_age_limit"
              ]
            }
          },
          {
            "table": {
              "table_name": "products_categories",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "pt"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "category_id"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 59,
              "rows_produced_per_join": 59,
              "filtered": "100.00",
              "using_index": true,
              "cost_info": {
                "read_cost": "2.45",
                "eval_cost": "11.80",
                "prefix_cost": "14.25",
                "data_read_per_join": "944"
              },
              "used_columns": [
                "product_id",
                "category_id"
              ]
            }
          },
          {
            "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.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 53,
              "filtered": "91.44",
              "cost_info": {
                "read_cost": "59.00",
                "eval_cost": "10.79",
                "prefix_cost": "85.05",
                "data_read_per_join": "322K"
              },
              "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.products_categories.product_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 53,
              "filtered": "99.83",
              "using_index": true,
              "cost_info": {
                "read_cost": "53.95",
                "eval_cost": "10.77",
                "prefix_cost": "149.79",
                "data_read_per_join": "1K"
              },
              "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.products_categories.product_id",
                "const",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 53,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "53.86",
                "eval_cost": "10.77",
                "prefix_cost": "214.42",
                "data_read_per_join": "205K"
              },
              "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.products_categories.product_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 53,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "53.86",
                "eval_cost": "10.77",
                "prefix_cost": "279.04",
                "data_read_per_join": "205K"
              },
              "used_columns": [
                "product_id",
                "lang_code",
                "product"
              ]
            }
          }
        ]
      }
    }
  }
}

Result

product_id product need_age_verification age_limit
1969 Law Red Roses Vase N 0
398 Make Her Day Flowers N 0
1964 Matt Red Rose Bouquet N 0
434 Mixed Flowers in a Basket N 0
383 Mixed Roses Bouquet N 0
1927 Mixed Roses in Basket N 0
435 Mumbai Flower Basket N 0
419 New Sensations Roses N 0
403 One and only rose N 0
324 Passionate Flowers N 0
1965 Passionate Roses in Vase N 0
440 Pastel roses N 0
1966 Pastel Roses in Vase N 0
431 Peach Roses N 0
1928 Pink Roses Basket N 0
1973 Pink Roses in a Vase N 0
1968 Pink Roses in Vase N 0
1963 Precious Roses N 0
327 Purest Love Flowers N 0
1934 Rashma Gorgeous Basket N 0
2000 Rashma Red roses N 0
2001 Rashma Red roses [CLONE] N 0
385 Red Rose Romance N 0
405 Red Roses Bouquet N 0