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, 
  pf.display_on_key_product_info 
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 = 18341 
  AND cscart_product_features_values.lang_code = 'en' 
WHERE 
  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(2685, pf.categories_path) 
    OR FIND_IN_SET(2690, pf.categories_path) 
    OR FIND_IN_SET(2693, pf.categories_path)
  ) 
GROUP BY 
  pf.feature_id 
ORDER BY 
  group_position, 
  pf_groups_description.description, 
  pf_groups.feature_id, 
  pf.position, 
  cscart_product_features_descriptions.description, 
  pf.feature_id

Query time 0.00179

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "16.12"
    },
    "ordering_operation": {
      "using_filesort": true,
      "grouping_operation": {
        "using_temporary_table": true,
        "using_filesort": false,
        "nested_loop": [
          {
            "table": {
              "table_name": "pf",
              "access_type": "ref",
              "possible_keys": [
                "PRIMARY",
                "status"
              ],
              "key": "status",
              "used_key_parts": [
                "status"
              ],
              "key_length": "3",
              "ref": [
                "const"
              ],
              "rows_examined_per_scan": 88,
              "rows_produced_per_join": 7,
              "filtered": "9.00",
              "cost_info": {
                "read_cost": "2.65",
                "eval_cost": "0.79",
                "prefix_cost": "11.45",
                "data_read_per_join": "3K"
              },
              "used_columns": [
                "feature_id",
                "feature_code",
                "company_id",
                "purpose",
                "feature_style",
                "filter_style",
                "feature_type",
                "categories_path",
                "parent_id",
                "display_on_product",
                "display_on_catalog",
                "display_on_header",
                "display_on_key_product_info",
                "status",
                "position",
                "comparison",
                "timestamp",
                "updated_timestamp"
              ],
              "attached_condition": "((`cscart_db`.`pf`.`feature_type` <> 'G') and (`cscart_db`.`pf`.`display_on_product` = 'Y') and ((`cscart_db`.`pf`.`categories_path` = '') or (`cscart_db`.`pf`.`categories_path` is null) or (0 <> find_in_set(2685,`cscart_db`.`pf`.`categories_path`)) or (0 <> find_in_set(2690,`cscart_db`.`pf`.`categories_path`)) or (0 <> find_in_set(2693,`cscart_db`.`pf`.`categories_path`))))"
            }
          },
          {
            "table": {
              "table_name": "pf_groups",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id"
              ],
              "key_length": "3",
              "ref": [
                "cscart_db.pf.parent_id"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 1,
              "filtered": "19.00",
              "cost_info": {
                "read_cost": "1.98",
                "eval_cost": "0.15",
                "prefix_cost": "14.22",
                "data_read_per_join": "674"
              },
              "used_columns": [
                "feature_id",
                "status",
                "position"
              ],
              "attached_condition": "<if>(found_match(pf_groups), ((`cscart_db`.`pf_groups`.`status` = 'A') or (`cscart_db`.`pf_groups`.`status` is null)), 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": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "product_id"
              ],
              "key_length": "6",
              "ref": [
                "cscart_db.pf.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "50.00",
              "cost_info": {
                "read_cost": "1.11",
                "eval_cost": "0.09",
                "prefix_cost": "15.51",
                "data_read_per_join": "691"
              },
              "used_columns": [
                "feature_id",
                "product_id",
                "variant_id",
                "value",
                "value_int",
                "lang_code"
              ],
              "attached_condition": "(`cscart_db`.`cscart_product_features_values`.`lang_code` = 'en')"
            }
          },
          {
            "table": {
              "table_name": "pf_groups_description",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "cscart_db.pf.parent_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.22",
                "eval_cost": "0.09",
                "prefix_cost": "15.82",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "feature_id",
                "description",
                "lang_code"
              ]
            }
          },
          {
            "table": {
              "table_name": "cscart_product_features_descriptions",
              "access_type": "eq_ref",
              "possible_keys": [
                "PRIMARY"
              ],
              "key": "PRIMARY",
              "used_key_parts": [
                "feature_id",
                "lang_code"
              ],
              "key_length": "9",
              "ref": [
                "cscart_db.pf.feature_id",
                "const"
              ],
              "rows_examined_per_scan": 1,
              "rows_produced_per_join": 0,
              "filtered": "100.00",
              "cost_info": {
                "read_cost": "0.22",
                "eval_cost": "0.09",
                "prefix_cost": "16.12",
                "data_read_per_join": "1K"
              },
              "used_columns": [
                "feature_id",
                "description",
                "full_description",
                "prefix",
                "suffix",
                "lang_code",
                "internal_name"
              ]
            }
          }
        ]
      }
    }
  }
}

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 display_on_key_product_info
157 0 N 0 Y N N KLEEN Score Product Score en <p>The KLEEN score represents how kind the ingredient is to you and the planet on a scale of 1 to 10. We've verified the ingredient's hazard level, checked brand claims, and third-party certifications to ensure it's KLEEN.</p> A N 0 find_products text slider 1697712983 1704211053 51847 N
62 41 E 0 Y N Y Brand Brand en A N 1 organize_catalog brand checkbox 1638728784 1762779883 36368 N
67 13 N 0 Y N N Net Weight Net Weight en gm A N 1 group_catalog_item dropdown slider 1638728784 1756378040 12426 40.00 N
34 13 M 0 Y N N Skin Type Skin Type en A N 20 find_products multiple_checkbox checkbox 1638728784 1758628877 18255 N
65 13 M 0 Y N N Key Ingredients Key Ingredients en A N 30 find_products multiple_checkbox checkbox 1638728784 1762326108 36381 N
73 13 M 0 Y N N For Concerns Good For en A N 106 find_products multiple_checkbox checkbox 1638728784 1758628446 20849 N
60 13 M 0 Y N N kindcode kindcode en <p>Confused about what's kind on, in and around your body? We're here to decode some key terms and what it means when a brand declares them! If a brand doesn't have at least one of these codes, they won't be listed on kindlife! <a href="https://kindlife.in/kindcode/" target="_blank" rel="noreferrer noopener">Know more</a></p> A N 108 find_products multiple_checkbox checkbox 1638728784 1730182645 10192 N
76 13 S 66 Y N N Expiry or Best Before Month Expiry or Best Before Month en A N 6 find_products text checkbox 1638728784 1749040015 0 36377 N
37 13 S 66 Y N N Ingredients list Ingredients list en A N 40 group_catalog_item dropdown checkbox 1638728784 1762324657 0 36384 N
63 13 S 66 Y N N Country of Origin Country of Origin en A N 100 group_catalog_item dropdown checkbox 1638728784 1761901836 0 10348 N