SELECT 
  v.product_id, 
  v.feature_id, 
  v.value, 
  v.value_int, 
  v.variant_id, 
  f.feature_type, 
  fd.description, 
  fd.prefix, 
  fd.suffix, 
  vd.variant, 
  f.parent_id, 
  f.position, 
  gf.position as gposition 
FROM 
  cscart_product_features as f 
  LEFT JOIN cscart_product_features_values as v ON v.feature_id = f.feature_id 
  LEFT JOIN cscart_product_features_descriptions as fd ON fd.feature_id = v.feature_id 
  AND fd.lang_code = 'en' 
  LEFT JOIN cscart_product_feature_variants fv ON fv.variant_id = v.variant_id 
  LEFT JOIN cscart_product_feature_variant_descriptions as vd ON vd.variant_id = fv.variant_id 
  AND vd.lang_code = 'en' 
  LEFT JOIN cscart_product_features as gf ON gf.feature_id = f.parent_id 
  AND gf.feature_type = 'G' 
WHERE 
  f.status IN ('A') 
  AND v.product_id in (
    3226, 3218, 3346, 3342, 3345, 3341, 3344, 
    3340, 3339, 3347, 3338, 5194, 3343, 
    5195
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(250, f.categories_path) 
    OR FIND_IN_SET(328, f.categories_path) 
    OR FIND_IN_SET(543, f.categories_path) 
    OR FIND_IN_SET(343, f.categories_path) 
    OR FIND_IN_SET(402, f.categories_path) 
    OR FIND_IN_SET(406, f.categories_path) 
    OR FIND_IN_SET(521, f.categories_path) 
    OR FIND_IN_SET(545, f.categories_path) 
    OR FIND_IN_SET(546, f.categories_path) 
    OR FIND_IN_SET(568, f.categories_path)
  ) 
  AND IF(
    f.parent_id, 
    (
      SELECT 
        status 
      FROM 
        cscart_product_features as df 
      WHERE 
        df.feature_id = f.parent_id
    ), 
    'A'
  ) IN ('A') 
  AND (
    v.variant_id != 0 
    OR (
      f.feature_type != 'C' 
      AND v.value != ''
    ) 
    OR (f.feature_type = 'C') 
    OR v.value_int != ''
  ) 
  AND v.lang_code = 'en' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00583

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "113.41"
    },
    "ordering_operation": {
      "using_temporary_table": true,
      "using_filesort": true,
      "nested_loop": [
        {
          "table": {
            "table_name": "v",
            "access_type": "range",
            "possible_keys": [
              "PRIMARY",
              "fl",
              "variant_id",
              "lang_code",
              "product_id",
              "fpl",
              "idx_product_feature_variant_id"
            ],
            "key": "idx_product_feature_variant_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 181,
            "rows_produced_per_join": 58,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (3226,3218,3346,3342,3345,3341,3344,3340,3339,3347,3338,5194,3343,5195)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "79.07",
              "eval_cost": "5.89",
              "prefix_cost": "84.96",
              "data_read_per_join": "45K"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "f",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "status"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "14.71",
              "eval_cost": "0.56",
              "prefix_cost": "105.56",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "categories_path",
              "parent_id",
              "display_on_catalog",
              "status",
              "position"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`f`.`status` = 'A') and (`softwarepirmam_hewadelivard_cscart_4`.`f`.`display_on_catalog` = 'Y') and ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path` = '') or (0 <> find_in_set(166,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(250,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(328,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(543,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(343,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(402,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(406,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(521,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(545,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(546,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(568,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`))) and (if(`softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`,(/* select#2 */ select `softwarepirmam_hewadelivard_cscart_4`.`df`.`status` from `softwarepirmam_hewadelivard_cscart_4`.`cscart_product_features` `df` where (`softwarepirmam_hewadelivard_cscart_4`.`df`.`feature_id` = `softwarepirmam_hewadelivard_cscart_4`.`f`.`parent_id`)),'A') = 'A') and ((`softwarepirmam_hewadelivard_cscart_4`.`v`.`variant_id` <> 0) or ((`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` <> 'C') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value` <> '')) or (`softwarepirmam_hewadelivard_cscart_4`.`f`.`feature_type` = 'C') or (`softwarepirmam_hewadelivard_cscart_4`.`v`.`value_int` <> 0)))",
            "attached_subqueries": [
              {
                "dependent": true,
                "cacheable": false,
                "query_block": {
                  "select_id": 2,
                  "cost_info": {
                    "query_cost": "0.35"
                  },
                  "table": {
                    "table_name": "df",
                    "access_type": "eq_ref",
                    "possible_keys": [
                      "PRIMARY"
                    ],
                    "key": "PRIMARY",
                    "used_key_parts": [
                      "feature_id"
                    ],
                    "key_length": "3",
                    "ref": [
                      "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
                    ],
                    "rows_examined_per_scan": 1,
                    "rows_produced_per_join": 1,
                    "filtered": "100.00",
                    "cost_info": {
                      "read_cost": "0.25",
                      "eval_cost": "0.10",
                      "prefix_cost": "0.35",
                      "data_read_per_join": "440"
                    },
                    "used_columns": [
                      "feature_id",
                      "status"
                    ]
                  }
                }
              }
            ]
          }
        },
        {
          "table": {
            "table_name": "fd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.feature_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.56",
              "prefix_cost": "107.52",
              "data_read_per_join": "12K"
            },
            "used_columns": [
              "feature_id",
              "description",
              "prefix",
              "suffix",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "fv",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.v.variant_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.56",
              "prefix_cost": "109.48",
              "data_read_per_join": "6K"
            },
            "used_columns": [
              "variant_id",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "vd",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "variant_id",
              "lang_code"
            ],
            "key_length": "9",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.fv.variant_id",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.56",
              "prefix_cost": "111.45",
              "data_read_per_join": "16K"
            },
            "used_columns": [
              "variant_id",
              "variant",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "gf",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "feature_id"
            ],
            "key_length": "3",
            "ref": [
              "softwarepirmam_hewadelivard_cscart_4.f.parent_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 5,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "1.40",
              "eval_cost": "0.56",
              "prefix_cost": "113.41",
              "data_read_per_join": "2K"
            },
            "used_columns": [
              "feature_id",
              "feature_type",
              "position"
            ],
            "attached_condition": "<if>(is_not_null_compl(gf), (`softwarepirmam_hewadelivard_cscart_4`.`gf`.`feature_type` = 'G'), true)"
          }
        }
      ]
    }
  }
}

Result

product_id feature_id value value_int variant_id feature_type description prefix suffix variant parent_id position gposition
3218 657 3933 E Brand Belkin 0 0
3342 657 3781 E Brand BlueStorm 0 0
3340 657 3781 E Brand BlueStorm 0 0
3343 657 3781 E Brand BlueStorm 0 0
3344 657 3781 E Brand BlueStorm 0 0
3339 657 3781 E Brand BlueStorm 0 0
3345 657 3781 E Brand BlueStorm 0 0
3346 657 3781 E Brand BlueStorm 0 0
3338 657 3781 E Brand BlueStorm 0 0
3347 657 3781 E Brand BlueStorm 0 0
5194 657 4743 E Brand Ubiquiti 0 0
3226 657 3933 E Brand Belkin 0 0
5195 657 4743 E Brand Ubiquiti 0 0
3346 708 3786 S Cable Length 305m 0 0
3347 708 3786 S Cable Length 305m 0 0
3345 708 3786 S Cable Length 305m 0 0
3344 708 3786 S Cable Length 305m 0 0
5194 708 6698 S Cable Length 305 meters (1,000 feet) 0 0
5195 708 6701 S Cable Length 1000 feet (304.8 meters) 0 0
3342 708 3786 S Cable Length 305m 0 0
3343 708 3786 S Cable Length 305m 0 0
3341 708 3786 S Cable Length 305m 0 0
3338 708 3786 S Cable Length 305m 0 0
3340 708 3786 S Cable Length 305m 0 0
3339 708 3786 S Cable Length 305m 0 0
3340 710 3792 S Cable Shielding Type SFTP 0 0
5195 710 6702 S Cable Shielding Type Level 2 Shielding Protection (foil + braid + ESD drain + anti-crosstalk divider) 0 0
5194 710 6699 S Cable Shielding Type Foil Shielded Twisted Pair (FTP) 0 0
3347 710 3819 S Cable Shielding Type S/FTP 0 0
3346 710 3818 S Cable Shielding Type U/FTP 0 0
3345 710 3792 S Cable Shielding Type SFTP 0 0
3338 710 3791 S Cable Shielding Type UTP 0 0
3344 710 3792 S Cable Shielding Type SFTP 0 0
3343 710 3791 S Cable Shielding Type UTP 0 0
3341 710 3792 S Cable Shielding Type SFTP 0 0
3339 710 3791 S Cable Shielding Type UTP 0 0
3342 710 3792 S Cable Shielding Type SFTP 0 0
3342 709 3787 S Cable Type Cat-6 0 0
3347 709 3789 S Cable Type Cat-6A 0 0
3226 709 3787 S Cable Type Cat-6 0 0
3343 709 3788 S Cable Type Cat-5E 0 0
3346 709 3789 S Cable Type Cat-6A 0 0
3340 709 3790 S Cable Type Cat-7 0 0
3338 709 3787 S Cable Type Cat-6 0 0
5194 709 6700 S Cable Type Category 5e (Cat5e) 0 0
3345 709 3788 S Cable Type Cat-5E 0 0
3341 709 3787 S Cable Type Cat-6 0 0
3218 709 3787 S Cable Type Cat-6 0 0
3344 709 3788 S Cable Type Cat-5E 0 0
3339 709 3789 S Cable Type Cat-6A 0 0
5195 709 6703 S Cable Type Category 5e (Cat5e), supports up to 1 Gbps 0 0
3342 656 1560 S Color Black 0 160
5195 656 2077 S Color Grey 0 160
3226 656 1560 S Color Black 0 160
5194 656 1560 S Color Black 0 160
3341 656 1559 S Color white 0 160
3338 656 2315 S Color Red 0 160
3347 656 1560 S Color Black 0 160
3346 656 1559 S Color white 0 160
3339 656 1600 S Color Blue 0 160
3345 656 1560 S Color Black 0 160
3343 656 1559 S Color white 0 160
3344 656 1559 S Color white 0 160
3218 656 1560 S Color Black 0 160
3226 659 3626 S Connectivity Ethernet/network connection 0 152
3218 659 0.00 4566 S Connectivity Ethernet/network connection (RJ45) 0 152