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 (3580, 3473, 3479, 3572) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(167, f.categories_path) 
    OR FIND_IN_SET(354, 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.00250

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "101.19"
    },
    "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": 165,
            "rows_produced_per_join": 53,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (3580,3473,3479,3572)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "69.89",
              "eval_cost": "5.37",
              "prefix_cost": "75.26",
              "data_read_per_join": "41K"
            },
            "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": "13.41",
              "eval_cost": "0.51",
              "prefix_cost": "94.04",
              "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(167,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(354,`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.28",
              "eval_cost": "0.51",
              "prefix_cost": "95.83",
              "data_read_per_join": "11K"
            },
            "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.28",
              "eval_cost": "0.51",
              "prefix_cost": "97.62",
              "data_read_per_join": "5K"
            },
            "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.28",
              "eval_cost": "0.51",
              "prefix_cost": "99.40",
              "data_read_per_join": "15K"
            },
            "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.28",
              "eval_cost": "0.51",
              "prefix_cost": "101.19",
              "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
3473 641 2070 S Aspect Ratio 16:10 0 30
3479 641 2070 S Aspect Ratio 16:10 0 30
3572 641 2070 S Aspect Ratio 16:10 0 30
3580 641 1647 S Aspect Ratio 16:9 0 30
3479 653 4080 S Battery Around 99Wh (typical for high-end gaming laptops) 0 100
3473 653 4044 S Battery 80Wh 0 100
3572 653 4220 S Battery 99 Wh 0 100
3580 653 4357 S Battery 60 Wh 0 100
3572 657 2272 E Brand Lenovo 0 0
3473 657 2272 E Brand Lenovo 0 0
3479 657 2272 E Brand Lenovo 0 0
3580 657 2272 E Brand Lenovo 0 0
3572 656 2077 S Color Grey 0 160
3580 656 2077 S Color Grey 0 160
3473 656 2077 S Color Grey 0 160
3479 656 3037 S Color Dark Grey 0 160
3572 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3479 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
3580 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3473 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3580 649 2250 S Display 15.6" 0 20
3479 649 2137 S Display 16" 0 20
3473 649 2137 S Display 16" 0 20
3572 649 2137 S Display 16" 0 20
3479 647 4082 S Front Camera 1080p FHD IR Camera (with Windows Hello support) 0 150
3580 647 4386 S Front Camera 720p HD webcam with E-shutter 0 150
3473 647 4046 S Front Camera 1080p Full HD webcam with privacy shutter 0 150
3572 647 4063 S Front Camera 5MP QHD webcam with privacy shutter 0 150
3580 652 4384 S GPU NVIDIA GeForce RTX 3050 Laptop GPU, 6 GB GDDR6, up to 95 W TGP, DLSS, Ray Tracing, DirectX 12 0 80
3479 652 4079 S GPU NVIDIA GeForce RTX 5080 0 80
3572 652 4340 S GPU NVIDIA GeForce RTX 4050 Laptop GPU, 6 GB GDDR6 0 80
3473 652 4043 S GPU NVIDIA® GeForce RTX™ 4070 Laptop GPU, 8GB GDDR6 0 80
3473 640 4040 S Operating System Windows 10 Pro K 0 10
3580 640 4049 S Operating System Windows 11 Pro K 0 10
3572 640 4040 S Operating System Windows 10 Pro K 0 10
3479 640 4049 S Operating System Windows 11 Pro K 0 10
3572 645 4341 S Ports 1 × Thunderbolt 4 / USB-C (with DisplayPort 2.1 & Power Delivery), 1 × USB-C Gen 2 (DP 2.1 + PD), 3 × USB-A (USB 3.2 Gen 2 & Gen 1), 1 × HDMI 2.1 (supports 8K @ 60 Hz), 1 × 3.5 mm combo audio jack, 1 × RJ-45 Ethernet port (typically 2.5 GbE) 0 110
3479 645 4081 S Ports 4 × USB-C Thunderbolt 4 (USB-C), 1 × HDMI 2.1, 1 × SD Card Reader (UHS-III), 3.5mm Headphone/Microphone Combo Jack 0 110
3473 645 4045 S Ports 1 × USB-C (supports Power Delivery & DisplayPort), 3 × USB-A 3.2 , 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × 3.5mm Headphone/Microphone combo jack 0 110
3580 645 4385 S Ports 1 × USB-C 3.2 Gen 2 (DisplayPort 1.4 + Power Delivery), 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ-45 Ethernet port, 1 × 3.5 mm combo audio jack, 1 × DC-in 0 110
3572 651 2854 S Processor Intel® Core™ i7 0 60
3473 651 2854 S Processor Intel® Core™ i7 0 60
3580 651 2854 S Processor Intel® Core™ i7 0 60
3479 651 5378 S Processor Intel® Core™ Ultra 9 0 60
3572 643 1592 S Ram 16GB 0 70
3473 643 1592 S Ram 16GB 0 70
3580 643 2116 S Ram 24GB 0 70
3479 643 3038 S Ram 64GB 0 70
3479 650 1542 S Refresh Rate 165Hz 0 40
3580 650 1541 S Refresh Rate 144Hz 0 40
3473 650 1544 S Refresh Rate 240Hz 0 40
3572 650 1542 S Refresh Rate 165Hz 0 40
3580 642 4211 S Resolution 1920 x 1080 0 50
3479 642 4076 S Resolution 2560 × 1600 (WQXGA) 0 50
3572 642 2987 S Resolution 2560 x 1600 0 50
3473 642 2987 S Resolution 2560 x 1600 0 50
3580 648 1563 S Storage 512GB 0 170
3473 648 1564 S Storage 1TB 0 170
3572 648 1564 S Storage 1TB 0 170
3479 648 1565 S Storage 2TB 0 170