SELECT 
  pf.feature_id, 
  pf.company_id, 
  pf.feature_type, 
  pf.parent_id, 
  pf.display_on_product, 
  pf.display_on_catalog, 
  pf.display_on_header, 
  cscart_product_features_descriptions.description, 
  cscart_product_features_descriptions.internal_name, 
  cscart_product_features_descriptions.lang_code, 
  cscart_product_features_descriptions.prefix, 
  cscart_product_features_descriptions.suffix, 
  pf.categories_path, 
  cscart_product_features_descriptions.full_description, 
  pf.status, 
  pf.comparison, 
  pf.position, 
  pf.purpose, 
  pf.feature_style, 
  pf.filter_style, 
  pf.feature_code, 
  pf.timestamp, 
  pf.updated_timestamp, 
  pf_groups.position AS group_position, 
  cscart_product_features_values.value, 
  cscart_product_features_values.variant_id, 
  cscart_product_features_values.value_int, 
  abt_filters.filter_id 
FROM 
  cscart_product_features AS pf 
  LEFT JOIN cscart_product_features AS pf_groups ON pf.parent_id = pf_groups.feature_id 
  LEFT JOIN cscart_product_features_descriptions AS pf_groups_description ON pf_groups_description.feature_id = pf.parent_id 
  AND pf_groups_description.lang_code = 'en' 
  LEFT JOIN cscart_product_features_descriptions ON cscart_product_features_descriptions.feature_id = pf.feature_id 
  AND cscart_product_features_descriptions.lang_code = 'en' 
  INNER JOIN cscart_product_features_values ON cscart_product_features_values.feature_id = pf.feature_id 
  AND cscart_product_features_values.product_id = 5476 
  AND cscart_product_features_values.lang_code = 'en' 
  LEFT JOIN cscart_product_filters AS abt_filters ON abt_filters.feature_id = pf.feature_id 
  AND abt_filters.company_id = pf.company_id 
  INNER JOIN cscart_ult_objects_sharing ON (
    cscart_ult_objects_sharing.share_object_id = pf.feature_id 
    AND cscart_ult_objects_sharing.share_company_id = 1 
    AND cscart_ult_objects_sharing.share_object_type = 'product_features'
  ) 
WHERE 
  1 = 1 
  AND pf.feature_type != 'G' 
  AND pf.status IN ('A') 
  AND (
    pf_groups.status IN ('A') 
    OR pf_groups.status IS NULL
  ) 
  AND pf.display_on_product = 'Y' 
  AND (
    pf.categories_path = '' 
    OR ISNULL(pf.categories_path) 
    OR FIND_IN_SET(308, pf.categories_path) 
    OR FIND_IN_SET(3, pf.categories_path) 
    OR FIND_IN_SET(14, pf.categories_path) 
    OR FIND_IN_SET(94, pf.categories_path) 
    OR FIND_IN_SET(95, pf.categories_path) 
    OR FIND_IN_SET(101, pf.categories_path) 
    OR FIND_IN_SET(104, pf.categories_path) 
    OR FIND_IN_SET(1, pf.categories_path) 
    OR FIND_IN_SET(231, pf.categories_path) 
    OR FIND_IN_SET(233, pf.categories_path) 
    OR FIND_IN_SET(12, pf.categories_path) 
    OR FIND_IN_SET(194, pf.categories_path) 
    OR FIND_IN_SET(2, pf.categories_path) 
    OR FIND_IN_SET(7, pf.categories_path) 
    OR FIND_IN_SET(17, pf.categories_path) 
    OR FIND_IN_SET(10, pf.categories_path) 
    OR FIND_IN_SET(234, pf.categories_path) 
    OR FIND_IN_SET(29, pf.categories_path) 
    OR FIND_IN_SET(41, pf.categories_path) 
    OR FIND_IN_SET(15, pf.categories_path) 
    OR FIND_IN_SET(217, pf.categories_path) 
    OR FIND_IN_SET(13, pf.categories_path) 
    OR FIND_IN_SET(49, pf.categories_path) 
    OR FIND_IN_SET(42, pf.categories_path) 
    OR FIND_IN_SET(232, pf.categories_path) 
    OR FIND_IN_SET(242, pf.categories_path) 
    OR FIND_IN_SET(222, pf.categories_path) 
    OR FIND_IN_SET(23, pf.categories_path) 
    OR FIND_IN_SET(208, pf.categories_path) 
    OR FIND_IN_SET(56, pf.categories_path) 
    OR FIND_IN_SET(181, pf.categories_path) 
    OR FIND_IN_SET(67, pf.categories_path) 
    OR FIND_IN_SET(70, pf.categories_path) 
    OR FIND_IN_SET(71, pf.categories_path) 
    OR FIND_IN_SET(79, pf.categories_path) 
    OR FIND_IN_SET(82, pf.categories_path) 
    OR FIND_IN_SET(88, pf.categories_path) 
    OR FIND_IN_SET(91, pf.categories_path) 
    OR FIND_IN_SET(275, pf.categories_path) 
    OR FIND_IN_SET(258, pf.categories_path) 
    OR FIND_IN_SET(261, pf.categories_path) 
    OR FIND_IN_SET(270, pf.categories_path) 
    OR FIND_IN_SET(271, pf.categories_path) 
    OR FIND_IN_SET(8, pf.categories_path) 
    OR FIND_IN_SET(304, pf.categories_path) 
    OR FIND_IN_SET(306, pf.categories_path) 
    OR FIND_IN_SET(307, pf.categories_path) 
    OR FIND_IN_SET(262, pf.categories_path) 
    OR FIND_IN_SET(336, pf.categories_path)
  ) 
GROUP BY 
  pf.feature_id 
ORDER BY 
  group_position asc, 
  pf_groups_description.description asc, 
  pf_groups.feature_id asc, 
  pf.position asc, 
  cscart_product_features_descriptions.description asc, 
  pf.feature_id asc

Query time 0.00156

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "pf_groups.position, pf_groups_description.description, pf_groups.feature_id, pf.position, cscart_product_features_descriptions.description, pf.feature_id",
      "temporary_table": {
        "table": {
          "table_name": "abt_filters",
          "access_type": "system",
          "possible_keys": ["feature_id", "company_id"],
          "rows": 0,
          "filtered": 0,
          "const_row_not_found": true
        },
        "table": {
          "table_name": "cscart_product_features_values",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "idx_product_feature_variant_id",
          "key_length": "3",
          "used_key_parts": ["product_id"],
          "ref": ["const"],
          "rows": 10,
          "filtered": 100,
          "attached_condition": "cscart_product_features_values.product_id <=> 5476 and cscart_product_features_values.lang_code = 'en'"
        },
        "table": {
          "table_name": "pf",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY", "status"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["feature_id"],
          "ref": ["herbaria_cscart_4_18.cscart_product_features_values.feature_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "pf.feature_type <> 'G' and pf.`status` = 'A' and pf.display_on_product = 'Y' and (pf.categories_path = '' or pf.categories_path is null or find_in_set(308,pf.categories_path) or find_in_set(3,pf.categories_path) or find_in_set(14,pf.categories_path) or find_in_set(94,pf.categories_path) or find_in_set(95,pf.categories_path) or find_in_set(101,pf.categories_path) or find_in_set(104,pf.categories_path) or find_in_set(1,pf.categories_path) or find_in_set(231,pf.categories_path) or find_in_set(233,pf.categories_path) or find_in_set(12,pf.categories_path) or find_in_set(194,pf.categories_path) or find_in_set(2,pf.categories_path) or find_in_set(7,pf.categories_path) or find_in_set(17,pf.categories_path) or find_in_set(10,pf.categories_path) or find_in_set(234,pf.categories_path) or find_in_set(29,pf.categories_path) or find_in_set(41,pf.categories_path) or find_in_set(15,pf.categories_path) or find_in_set(217,pf.categories_path) or find_in_set(13,pf.categories_path) or find_in_set(49,pf.categories_path) or find_in_set(42,pf.categories_path) or find_in_set(232,pf.categories_path) or find_in_set(242,pf.categories_path) or find_in_set(222,pf.categories_path) or find_in_set(23,pf.categories_path) or find_in_set(208,pf.categories_path) or find_in_set(56,pf.categories_path) or find_in_set(181,pf.categories_path) or find_in_set(67,pf.categories_path) or find_in_set(70,pf.categories_path) or find_in_set(71,pf.categories_path) or find_in_set(79,pf.categories_path) or find_in_set(82,pf.categories_path) or find_in_set(88,pf.categories_path) or find_in_set(91,pf.categories_path) or find_in_set(275,pf.categories_path) or find_in_set(258,pf.categories_path) or find_in_set(261,pf.categories_path) or find_in_set(270,pf.categories_path) or find_in_set(271,pf.categories_path) or find_in_set(8,pf.categories_path) or find_in_set(304,pf.categories_path) or find_in_set(306,pf.categories_path) or find_in_set(307,pf.categories_path) or find_in_set(262,pf.categories_path) or find_in_set(336,pf.categories_path))"
        },
        "table": {
          "table_name": "pf_groups",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["feature_id"],
          "ref": ["herbaria_cscart_4_18.pf.parent_id"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(pf_groups.`status` = 'A' or pf_groups.`status` is null)"
        },
        "table": {
          "table_name": "pf_groups_description",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["feature_id", "lang_code"],
          "ref": ["herbaria_cscart_4_18.pf.parent_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(pf_groups_description.lang_code = 'en')"
        },
        "table": {
          "table_name": "cscart_product_features_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["feature_id", "lang_code"],
          "ref": [
            "herbaria_cscart_4_18.cscart_product_features_values.feature_id",
            "const"
          ],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(cscart_product_features_descriptions.lang_code = 'en')"
        },
        "table": {
          "table_name": "cscart_ult_objects_sharing",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "159",
          "used_key_parts": [
            "share_object_id",
            "share_company_id",
            "share_object_type"
          ],
          "ref": [
            "herbaria_cscart_4_18.cscart_product_features_values.feature_id",
            "const",
            "const"
          ],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "cscart_ult_objects_sharing.share_object_id = cscart_product_features_values.feature_id and cscart_ult_objects_sharing.share_object_type = 'product_features'",
          "using_index": true
        }
      }
    }
  }
}

Result

feature_id company_id feature_type parent_id display_on_product display_on_catalog display_on_header description internal_name lang_code prefix suffix categories_path full_description status comparison position purpose feature_style filter_style feature_code timestamp updated_timestamp group_position value variant_id value_int filter_id
30 1 T 0 Y N N Product Name Prefix Product Name Prefix en A N 0 describe_product 1724736693 0 essential oil scents • no synthetics 0
78 1 S 0 Y Y N Variety Variety en 1 A N 1 group_variation_catalog_item dropdown checkbox d03a9db85089ae039655dab2db037226 1724736693 1746805102 7165
9 1 T 0 Y N N Product Photo Caption Product Photo Caption en A N 10 describe_product 1724736693 0 Give up the bottle for better 0