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 (
    3564, 3482, 3581, 3574, 3583, 3579, 3476, 
    3569, 3562, 3543, 3585, 3503, 3488, 
    2119, 3577, 3544, 3502, 3575, 3539
  ) 
  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.00805

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "478.96"
    },
    "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": 781,
            "rows_produced_per_join": 253,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (3564,3482,3581,3574,3583,3579,3476,3569,3562,3543,3585,3503,3488,2119,3577,3544,3502,3575,3539)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "330.82",
              "eval_cost": "25.39",
              "prefix_cost": "356.21",
              "data_read_per_join": "196K"
            },
            "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": 24,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "63.49",
              "eval_cost": "2.42",
              "prefix_cost": "445.09",
              "data_read_per_join": "10K"
            },
            "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": 24,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.05",
              "eval_cost": "2.42",
              "prefix_cost": "453.56",
              "data_read_per_join": "55K"
            },
            "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": 24,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.05",
              "eval_cost": "2.42",
              "prefix_cost": "462.03",
              "data_read_per_join": "27K"
            },
            "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": 24,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.05",
              "eval_cost": "2.42",
              "prefix_cost": "470.50",
              "data_read_per_join": "73K"
            },
            "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": 24,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "6.05",
              "eval_cost": "2.42",
              "prefix_cost": "478.96",
              "data_read_per_join": "10K"
            },
            "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
2119 641 1647 S Aspect Ratio 16:9 0 30
3476 641 1647 S Aspect Ratio 16:9 0 30
3482 641 2070 S Aspect Ratio 16:10 0 30
3488 641 2070 S Aspect Ratio 16:10 0 30
3502 641 1647 S Aspect Ratio 16:9 0 30
3503 641 2070 S Aspect Ratio 16:10 0 30
3539 641 1647 S Aspect Ratio 16:9 0 30
3543 641 2070 S Aspect Ratio 16:10 0 30
3544 641 2070 S Aspect Ratio 16:10 0 30
3562 641 2070 S Aspect Ratio 16:10 0 30
3564 641 1647 S Aspect Ratio 16:9 0 30
3569 641 1647 S Aspect Ratio 16:9 0 30
3574 641 2070 S Aspect Ratio 16:10 0 30
3575 641 1647 S Aspect Ratio 16:9 0 30
3577 641 1647 S Aspect Ratio 16:9 0 30
3579 641 2070 S Aspect Ratio 16:10 0 30
3581 641 1647 S Aspect Ratio 16:9 0 30
3583 641 1647 S Aspect Ratio 16:9 0 30
3585 641 2070 S Aspect Ratio 16:10 0 30
3476 653 4068 S Battery Approx. 60 Wh (Li‑Po, supports Rapid Charge up to 100 W PD) 0 100
3482 653 4089 S Battery Approx. 99Wh 0 100
3488 653 4106 S Battery 99 Wh (typical for high-end 16″ gaming models) 0 100
3502 653 4143 S Battery 42Wh 0 100
3503 653 4150 S Battery Integrated 47Wh or 57Wh (depending on configuration) 0 100
3539 653 4215 S Battery 38 Wh integrated Li‑ion battery 0 100
3543 653 4240 S Battery 90Wh 0 100
3544 653 4247 S Battery 57 Wh 0 100
3562 653 4278 S Battery Intergrated 56.6 Wh 0 100
3564 653 4289 S Battery Approx. 38 Wh 0 100
3569 653 4323 S Battery 60 Wh Li‑Po 0 100
3574 653 4345 S Battery 80 Wh 0 100
3575 653 4357 S Battery 60 Wh 0 100
3577 653 4289 S Battery Approx. 38 Wh 0 100
3579 653 4378 S Battery Configurable: 47 Wh / 57 Wh / 76 Wh Li‑ion 0 100
3581 653 4390 S Battery Approx. 60 Wh 0 100
3583 653 4208 S Battery 47 Wh 0 100
3585 653 4411 S Battery Approx. 57 Wh 0 100
2119 657 2272 E Brand Lenovo 0 0
3476 657 2272 E Brand Lenovo 0 0
3482 657 2272 E Brand Lenovo 0 0
3488 657 2272 E Brand Lenovo 0 0
3502 657 2272 E Brand Lenovo 0 0
3503 657 2272 E Brand Lenovo 0 0
3539 657 2272 E Brand Lenovo 0 0
3543 657 2272 E Brand Lenovo 0 0
3544 657 2272 E Brand Lenovo 0 0
3562 657 2272 E Brand Lenovo 0 0
3564 657 2272 E Brand Lenovo 0 0
3569 657 2272 E Brand Lenovo 0 0
3574 657 2272 E Brand Lenovo 0 0
3575 657 2272 E Brand Lenovo 0 0
3577 657 2272 E Brand Lenovo 0 0
3579 657 2272 E Brand Lenovo 0 0
3581 657 2272 E Brand Lenovo 0 0
3583 657 2272 E Brand Lenovo 0 0
3585 657 2272 E Brand Lenovo 0 0
2119 656 2273 S Color Arctic Grey 0 160
3476 656 2077 S Color Grey 0 160
3482 656 1560 S Color Black 0 160
3488 656 1560 S Color Black 0 160
3502 656 2273 S Color Arctic Grey 0 160
3503 656 2077 S Color Grey 0 160
3539 656 1560 S Color Black 0 160
3543 656 1560 S Color Black 0 160
3544 656 1560 S Color Black 0 160
3562 656 2077 S Color Grey 0 160
3564 656 1560 S Color Black 0 160
3569 656 2077 S Color Grey 0 160
3574 656 2077 S Color Grey 0 160
3575 656 2077 S Color Grey 0 160
3577 656 1560 S Color Black 0 160
3579 656 2077 S Color Grey 0 160
3581 656 2077 S Color Grey 0 160
3583 656 2273 S Color Arctic Grey 0 160
3585 656 2077 S Color Grey 0 160
2119 659 2281 S Connectivity Wi-Fi 6E, Bluetooth 5.1 0 152
3476 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3482 659 4091 S Connectivity Wi-Fi 6, Wi-Fi 7, Bluetooth 5.2, 5.3, 5.4 0 152
3488 659 4084 S Connectivity Wi-Fi 7, Bluetooth 5.4 0 152
3502 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3503 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
3539 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3543 659 4242 S Connectivity Wi-Fi 6E, Bluetooth 5.1 or 5.3 0 152
3544 659 4250 S Connectivity Wi-Fi 6E, Bluetooth 5..2 0 152
3562 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3564 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3569 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3574 659 2281 S Connectivity Wi-Fi 6E, Bluetooth 5.1 0 152
3575 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3577 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3579 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
3581 659 4393 S Connectivity Wii-Fi 6,Bluetooth 5.2 0 152
3583 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3585 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3476 649 2250 S Display 15.6" 0 20
3502 649 2250 S Display 15.6" 0 20
3539 649 2250 S Display 15.6" 0 20
3564 649 2250 S Display 15.6" 0 20
3569 649 2250 S Display 15.6" 0 20
3575 649 2250 S Display 15.6" 0 20
3577 649 2250 S Display 15.6" 0 20
3581 649 2250 S Display 15.6" 0 20
3583 649 2250 S Display 15.6" 0 20
3544 649 2136 S Display 14" 0 20
3562 649 2136 S Display 14" 0 20
2119 649 2137 S Display 16" 0 20
3482 649 2137 S Display 16" 0 20
3488 649 2137 S Display 16" 0 20
3503 649 2137 S Display 16" 0 20
3543 649 2137 S Display 16" 0 20
3574 649 2137 S Display 16" 0 20
3579 649 2137 S Display 16" 0 20
3585 649 2137 S Display 16" 0 20
2119 647 2280 S Front Camera FHD 1080p with privacy shutter 0 150
3476 647 4070 S Front Camera 5 MP QHD webcam with electronic privacy shutter 0 150
3482 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3488 647 4063 S Front Camera 5MP QHD webcam with privacy shutter 0 150
3502 647 4145 S Front Camera 720p HD with privacy shutter 0 150
3503 647 4152 S Front Camera 1080p FHD with privacy shutter 0 150
3539 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3543 647 4152 S Front Camera 1080p FHD with privacy shutter 0 150
3544 647 4249 S Front Camera 1080p IR + RGB webcam with privacy shutter 0 150
3562 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
3564 647 2254 S Front Camera 720p HD webcam 0 150
3569 647 4325 S Front Camera 1080p FHD webcam with electronic shutter 0 150
3574 647 4353 S Front Camera 1080p FHD webcam with electronic privacy shutter 0 150
3575 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3577 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3579 647 4380 S Front Camera 1080p FHD webcam with privacy shutter, IR sensor (Windows Hello support) 0 150
3581 647 4392 S Front Camera 720p HD Webcam with electronic privacy shutter 0 150
3583 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
3585 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
2119 652 2278 S GPU Integrated Intel® Arc™ Graphics 0 80
3476 652 4067 S GPU NVIDIA GeForce RTX 5060 Laptop GPU, 8 GB GDDR7, DLSS 4 & Ray‑Tracing support 0 80
3482 652 4088 S GPU NVIDIA GeForce RTX 5060 8GB 0 80
3488 652 4105 S GPU VIDIA GeForce RTX 5070 Ti Laptop GPU, 12 GB GDDR7, 140 W TGP, DLSS 4, Reflex 2, DirectX 12 Ultimate 0 80
3502 652 4142 S GPU Intel UHD Graphics (Shared) 0 80
3503 652 4149 S GPU Integrated Intel Graphics (Shared) 0 80
3539 652 4214 S GPU Integrated Intel UHD Graphics (Xe G4, shared) 0 80
3543 652 4239 S GPU NVIDIA RTX 3000 Ada 8 GB 0 80
3544 652 4246 S GPU Integrated Intel Graphics 0 80
3562 652 4226 S GPU Integrated Intel UHD Graphics (shared) 0 80
3564 652 4288 S GPU Integrated Intel UHD Graphics (shared memory) 0 80
3569 652 4322 S GPU NVIDIA GeForce RTX 4060 Laptop GPU, 8 GB GDDR6 (approx. 115 W TGP, boost ~2370 MHz), supports Advanced Optimus, G‑SYNC, DLSS 3.5 0 80
3574 652 4351 S GPU NVIDIA GeForce RTX 4060 Laptop GPU, 8 GB GDDR6, up to 140 W TGP, DLSS 3, Ray Tracing, DirectX 12 Ultimate 0 80
3575 652 4356 S GPU NVIDIA GeForce RTX 4050 Laptop GPU, 6 GB GDDR6, up to 105 W TGP, DLSS 3, Ray Tracing, DirectX 12 0 80
3577 652 4366 S GPU Integrated Intel Iris Xe Graphics 0 80
3579 652 4377 S GPU Integrated Intel Arc Graphics (shared, on-chip GPU) 0 80
3581 652 4340 S GPU NVIDIA GeForce RTX 4050 Laptop GPU, 6 GB GDDR6 0 80
3583 652 4400 S GPU Integrated Intel UHD Graphics (shared memory, suitable for everyday multimedia, light tasks) 0 80
3585 652 4410 S GPU Integrated Intel Arc Graphics 0 80
2119 640 2274 S Operating System Windows 11 Pro 0 10
3476 640 4049 S Operating System Windows 11 Pro K 0 10
3482 640 4049 S Operating System Windows 11 Pro K 0 10
3488 640 4049 S Operating System Windows 11 Pro K 0 10
3502 640 4049 S Operating System Windows 11 Pro K 0 10
3503 640 4049 S Operating System Windows 11 Pro K 0 10
3539 640 4040 S Operating System Windows 10 Pro K 0 10
3543 640 2274 S Operating System Windows 11 Pro 0 10
3544 640 2274 S Operating System Windows 11 Pro 0 10
3562 640 2257 S Operating System Windows 11 0 10
3564 640 4040 S Operating System Windows 10 Pro K 0 10
3569 640 4040 S Operating System Windows 10 Pro K 0 10
3574 640 4040 S Operating System Windows 10 Pro K 0 10
3575 640 4040 S Operating System Windows 10 Pro K 0 10
3577 640 4040 S Operating System Windows 10 Pro K 0 10
3579 640 4049 S Operating System Windows 11 Pro K 0 10
3581 640 4040 S Operating System Windows 10 Pro K 0 10
3583 640 4397 S Operating System Windows 11 Pro K (optionally Win 10 Pro K) 0 10
3585 640 4040 S Operating System Windows 10 Pro K 0 10
2119 645 2279 S Ports 1 x USB-C (USB 3.2 Gen 2) with Power Delivery 3.1 and DisplayPort 1.4, 1 x USB-C (Thunderbolt 4 / USB4) with Power Delivery 3.1 and DisplayPort 2.1, 2 x USB-A (USB 3.2 Gen 1), one with Always On, 1 x USB-A (USB 2.0), 1 x HDMI 2.1 (up to 4K@60Hz), 1 x RJ-4 0 110
3476 645 4069 S Ports 3 × USB‑A 3.2 Gen 1 (5 Gbps), 1 × USB‑C 3.2 Gen 2 (10 Gbps) with DisplayPort 1.4 and 65–100 W Power Delivery, 1 × HDMI 2.1 (up to 8K @ 60 Hz), 1 × RJ‑45 Gigabit Ethernet, 1 × 3.5 mm headphone/mic combo jack, 1 × Proprietary power connector 0 110
3482 645 4090 S Ports 3 × USB-C Thunderbolt 4 (USB-C) with DisplayPort and Power Delivery, 1 × HDMI 2.1, 1 × SD Card Reader (UHS-III), 3.5mm headphone/microphone combo jack 0 110
3488 645 4107 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
3502 645 4144 S Ports 1 × USB-C 3.2 Gen 1 (data & power delivery), 2 × USB-A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × SD card reader, 1 × Headphone/microphone combo jack (3.5 mm) 0 110
3503 645 4151 S Ports 2 × USB-A 3.2 Gen 1, 1 × USB-A 3.2 Gen 2, 1 × USB-C 3.2 Gen 2, 1 × USB-C (Power Delivery & DisplayPort), 1 × HDMI 2.1, 1 × RJ-45 Ethernet, 1 × Headphone / mic combo (3.5mm), 1 × SD Card Reader 0 110
3539 645 4216 S Ports 1 × USB‑C 3.2 Gen 1 (supports data, Power Delivery 3.0, and DisplayPort 1.2), 1 × USB‑A 3.2 Gen 1, 1 × USB‑A 2.0 , 1 × HDMI 1.4b, 1 × RJ‑45 Ethernet (Gigabit), 1 × Headphone/mic combo jack (3.5 mm), 1 × Power connector 0 110
3543 645 4241 S Ports 1 × USB‑C 3.2 Gen 2 (Power Delivery, DisplayPort 1.4), 2 × USB‑A 3.2 Gen 1, 1 × HDMI 2.1, 1 × RJ‑45 Ethernet, 1 × SD card reader, 1 × headphone/mic combo jack 0 110
3544 645 4248 S Ports 2 × USB-C 3.2 Gen 2 (with Thunderbolt 4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × MicroSD card reader, 1 × 3.5 mm headphone jack 0 110
3562 645 4279 S Ports 1 × USB-C 3.2 Gen 2 (supports PD & DisplayPort 1.4), 2 × USB-A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × 3.5 mm combo audio jack, 1 × MicroSD card reader, Power button with fingerprint reader 0 110
3564 645 4290 S Ports 1 × USB-C 3.2 Gen 1, 2 × USB-A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × 3.5 mm combo audio jack, 1 × RJ-45 Ethernet port (1 GbE) 0 110
3569 645 4324 S Ports 1 × USB‑C 3.2 Gen 2 (10 Gbps) with 140 W Power Delivery & DisplayPort 1.4, 3 × USB‑A 3.2 Gen 1 (5 Gbps) (including one Always‑On), 1 × HDMI 2.1 (supports 8K @ 60 Hz), 1 × headphone/mic combo 3.5 mm jack, 1 × Ethernet RJ‑45 (Gigabit), 1 × Power-in (23 0 110
3574 645 4352 S Ports 1 × USB-C 3.2 Gen 2 (supports DP 1.4 & PD), 1 × USB-C 3.2 Gen 2 (rear, supports DP 1.4 & 140W charging), 3 × USB-A 3.2 Gen 1, 1 × HDMI 2.1 (supports 8K @ 60Hz), 1 × RJ-45 Ethernet (2.5 GbE), 1 × 3.5 mm headphone/mic combo jack, 1 × Power connector 0 110
3575 645 4358 S Ports 1 × USB‑C (with DisplayPort & Power Delivery), 2 × USB‑A (USB 3.2 Gen 1), 1 × USB‑A (USB 2.0), 1 × HDMI 2.1, 1 × 3.5 mm combo audio jack, 1 × RJ‑45 Ethernet port 0 110
3577 645 4367 S Ports 1 × USB-C 3.2 Gen 1 (Data only), 2 × USB-A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × Ethernet (RJ-45), 1 × 3.5mm headphone/mic combo 0 110
3579 645 4379 S Ports 2 × USB‑C 3.2 Gen 1 (5 Gbps) with Power Delivery & DisplayPort 1.4, 2 × USB‑A 3.2 Gen 1 (5 Gbps; one Always‑On), 1 × HDMI 1.4b, 1 × microSD card reader, 1 × 3.5 mm headphone/mic combo jack 0 110
3581 645 4391 S Ports 1 × USB-C (with DisplayPort & Power Delivery), 3 × USB-A (USB 3.2 Gen 1 or Gen 2), 1 × HDMI 2.1, 1 × 3.5mm combo audio jack , 1 × RJ-45 Ethernet port 0 110
3583 645 4401 S Ports 2 × USB‑A 3.2 Gen 1, 1 × USB‑C 3.2 Gen 1 (supports DisplayPort 1.2 & Power Delivery), 1 × HDMI 1.4, 1 × 3.5 mm headphone/mic combo jack, 1 × microSD card reader, 1 × power connector 0 110
3585 645 4412 S Ports 1 × USB‑C (with Power Delivery & DisplayPort), 2 × USB‑A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × 3.5 mm combo audio jack, 1 × SD card reader 0 110
3502 651 4140 S Processor Intel® Core™ i3 0 60
3564 651 4140 S Processor Intel® Core™ i3 0 60
3539 651 2251 S Processor Intel® Core™ i5 0 60
3562 651 2251 S Processor Intel® Core™ i5 0 60
3476 651 2854 S Processor Intel® Core™ i7 0 60
3569 651 2854 S Processor Intel® Core™ i7 0 60
3574 651 2854 S Processor Intel® Core™ i7 0 60
3577 651 2854 S Processor Intel® Core™ i7 0 60
3581 651 2854 S Processor Intel® Core™ i7 0 60
3583 651 2854 S Processor Intel® Core™ i7 0 60
3579 651 5911 S Processor Intel® Core™ Ultra 5 0 60
2119 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3482 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3503 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3544 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3585 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3488 651 5378 S Processor Intel® Core™ Ultra 9 0 60
3543 651 5378 S Processor Intel® Core™ Ultra 9 0 60
3575 651 4354 S Processor AMD Ryzen 5 0 60
3502 643 1526 S Ram 8GB 0 70
3539 643 1526 S Ram 8GB 0 70
3564 643 1526 S Ram 8GB 0 70
3577 643 1526 S Ram 8GB 0 70
2119 643 1592 S Ram 16GB 0 70
3503 643 1592 S Ram 16GB 0 70
3562 643 1592 S Ram 16GB 0 70
3574 643 1592 S Ram 16GB 0 70
3575 643 1592 S Ram 16GB 0 70
3579 643 1592 S Ram 16GB 0 70
3583 643 1592 S Ram 16GB 0 70
3585 643 1592 S Ram 16GB 0 70
3476 643 2116 S Ram 24GB 0 70
3569 643 2116 S Ram 24GB 0 70
3581 643 2116 S Ram 24GB 0 70
3482 643 2117 S Ram 32GB 0 70
3488 643 2117 S Ram 32GB 0 70
3543 643 2117 S Ram 32GB 0 70
3544 643 3038 S Ram 64GB 0 70
2119 650 1539 S Refresh Rate 60Hz 0 40
3476 650 1541 S Refresh Rate 144Hz 0 40
3482 650 1542 S Refresh Rate 165Hz 0 40
3488 650 1544 S Refresh Rate 240Hz 0 40
3502 650 1539 S Refresh Rate 60Hz 0 40
3503 650 1539 S Refresh Rate 60Hz 0 40
3539 650 1539 S Refresh Rate 60Hz 0 40
3543 650 1540 S Refresh Rate 120Hz 0 40
3544 650 1539 S Refresh Rate 60Hz 0 40
3562 650 1539 S Refresh Rate 60Hz 0 40
3564 650 1539 S Refresh Rate 60Hz 0 40
3569 650 1541 S Refresh Rate 144Hz 0 40
3574 650 1544 S Refresh Rate 240Hz 0 40
3575 650 1541 S Refresh Rate 144Hz 0 40
3577 650 1539 S Refresh Rate 60Hz 0 40
3579 650 1540 S Refresh Rate 120Hz 0 40
3581 650 1541 S Refresh Rate 144Hz 0 40
3583 650 1539 S Refresh Rate 60Hz 0 40
3585 650 1539 S Refresh Rate 60Hz 0 40
2119 642 2275 S Resolution 1920 x 1200 0 50
3476 642 4057 S Resolution 1920 x 1080 (full HD), IPS, Anti-glare 0 50
3482 642 4076 S Resolution 2560 × 1600 (WQXGA) 0 50
3488 642 2987 S Resolution 2560 x 1600 0 50
3502 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3503 642 2275 S Resolution 1920 x 1200 0 50
3539 642 4211 S Resolution 1920 x 1080 0 50
3543 642 4237 S Resolution 3840 x 2400 0 50
3544 642 2275 S Resolution 1920 x 1200 0 50
3562 642 2275 S Resolution 1920 x 1200 0 50
3564 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3569 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3574 642 2987 S Resolution 2560 x 1600 0 50
3575 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3577 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3579 642 1589 S Resolution 2048 x 1080 (2k) 0 50
3581 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3583 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3585 642 2987 S Resolution 2560 x 1600 0 50
3502 648 1562 S Storage 256GB 0 170
3564 648 1562 S Storage 256GB 0 170
2119 648 1563 S Storage 512GB 0 170
3476 648 1563 S Storage 512GB 0 170
3503 648 1563 S Storage 512GB 0 170
3539 648 1563 S Storage 512GB 0 170
3569 648 1563 S Storage 512GB 0 170
3575 648 1563 S Storage 512GB 0 170
3577 648 1563 S Storage 512GB 0 170
3579 648 1563 S Storage 512GB 0 170
3581 648 1563 S Storage 512GB 0 170
3583 648 1563 S Storage 512GB 0 170
3585 648 1563 S Storage 512GB 0 170
3482 648 1564 S Storage 1TB 0 170
3543 648 1564 S Storage 1TB 0 170
3544 648 1564 S Storage 1TB 0 170
3562 648 1564 S Storage 1TB 0 170
3574 648 1564 S Storage 1TB 0 170
3488 648 1565 S Storage 2TB 0 170