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 (
    3568, 3563, 3547, 3513, 3586, 3542, 3571, 
    3566, 3474, 3538, 3540, 3587
  ) 
  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.00592

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "304.17"
    },
    "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": 496,
            "rows_produced_per_join": 161,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (3568,3563,3547,3513,3586,3542,3571,3566,3474,3538,3540,3587)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "210.08",
              "eval_cost": "16.13",
              "prefix_cost": "226.21",
              "data_read_per_join": "124K"
            },
            "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": 15,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "40.32",
              "eval_cost": "1.54",
              "prefix_cost": "282.66",
              "data_read_per_join": "6K"
            },
            "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": 15,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.84",
              "eval_cost": "1.54",
              "prefix_cost": "288.04",
              "data_read_per_join": "34K"
            },
            "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": 15,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.84",
              "eval_cost": "1.54",
              "prefix_cost": "293.41",
              "data_read_per_join": "17K"
            },
            "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": 15,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.84",
              "eval_cost": "1.54",
              "prefix_cost": "298.79",
              "data_read_per_join": "46K"
            },
            "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": 15,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "3.84",
              "eval_cost": "1.54",
              "prefix_cost": "304.17",
              "data_read_per_join": "6K"
            },
            "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
3474 641 1647 S Aspect Ratio 16:9 0 30
3513 641 2070 S Aspect Ratio 16:10 0 30
3538 641 2070 S Aspect Ratio 16:10 0 30
3540 641 1647 S Aspect Ratio 16:9 0 30
3542 641 1647 S Aspect Ratio 16:9 0 30
3547 641 2070 S Aspect Ratio 16:10 0 30
3563 641 2070 S Aspect Ratio 16:10 0 30
3566 641 1647 S Aspect Ratio 16:9 0 30
3568 641 2070 S Aspect Ratio 16:10 0 30
3571 641 2070 S Aspect Ratio 16:10 0 30
3586 641 1647 S Aspect Ratio 16:9 0 30
3587 641 1647 S Aspect Ratio 16:9 0 30
3474 653 4053 S Battery 60Wh (4-cell) 0 100
3513 653 4182 S Battery Approx. 45 Wh 0 100
3538 653 4208 S Battery 47 Wh 0 100
3540 653 4220 S Battery 99 Wh 0 100
3542 653 4233 S Battery 47 Wh built-in Li‑ion battery 0 100
3547 653 4257 S Battery Approx. 50 Wh 0 100
3563 653 4247 S Battery 57 Wh 0 100
3566 653 4301 S Battery 47 Wh Li‑ion 0 100
3568 653 4316 S Battery Approx. 80 Wh Li-Polymer 0 100
3571 653 4247 S Battery 57 Wh 0 100
3586 653 4416 S Battery 38 Wh 0 100
3587 653 4182 S Battery Approx. 45 Wh 0 100
3474 657 2272 E Brand Lenovo 0 0
3513 657 2272 E Brand Lenovo 0 0
3538 657 2272 E Brand Lenovo 0 0
3540 657 2272 E Brand Lenovo 0 0
3542 657 2272 E Brand Lenovo 0 0
3547 657 2272 E Brand Lenovo 0 0
3563 657 2272 E Brand Lenovo 0 0
3566 657 2272 E Brand Lenovo 0 0
3568 657 2272 E Brand Lenovo 0 0
3571 657 2272 E Brand Lenovo 0 0
3586 657 2272 E Brand Lenovo 0 0
3587 657 2272 E Brand Lenovo 0 0
3474 656 2077 S Color Grey 0 160
3513 656 2077 S Color Grey 0 160
3538 656 1560 S Color Black 0 160
3540 656 2077 S Color Grey 0 160
3542 656 2273 S Color Arctic Grey 0 160
3547 656 1560 S Color Black 0 160
3563 656 2077 S Color Grey 0 160
3566 656 2273 S Color Arctic Grey 0 160
3568 656 2077 S Color Grey 0 160
3571 656 2077 S Color Grey 0 160
3586 656 1560 S Color Black 0 160
3587 656 1560 S Color Black 0 160
3474 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3513 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
3538 659 4153 S Connectivity Wi-Fi 6E, Bluetooth 5.3 0 152
3540 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3542 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3547 659 4047 S Connectivity Wi-Fi 6E, Bluetooth 5.2 0 152
3563 659 4250 S Connectivity Wi-Fi 6E, Bluetooth 5..2 0 152
3566 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3568 659 4318 S Connectivity Wi-Fi 6E, Bluetooth 5.2, Gigabit Ethernet 0 152
3571 659 4071 S Connectivity Wi-Fi 6, Bluetooth 5.2 0 152
3586 659 4418 S Connectivity Wi-Fi 5, Bluetooth 5.0 0 152
3587 659 2288 S Connectivity Wi-Fi 6, Bluetooth 5.1 0 152
3474 649 2250 S Display 15.6" 0 20
3540 649 2250 S Display 15.6" 0 20
3542 649 2250 S Display 15.6" 0 20
3566 649 2250 S Display 15.6" 0 20
3586 649 2250 S Display 15.6" 0 20
3587 649 2250 S Display 15.6" 0 20
3513 649 2136 S Display 14" 0 20
3538 649 2136 S Display 14" 0 20
3547 649 2136 S Display 14" 0 20
3563 649 2136 S Display 14" 0 20
3571 649 2136 S Display 14" 0 20
3568 649 2137 S Display 16" 0 20
3474 647 2254 S Front Camera 720p HD webcam 0 150
3513 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
3538 647 4210 S Front Camera 1080p (Full HD) + IR hybrid webcam with privacy shutte 0 150
3540 647 4222 S Front Camera 720p webcam with privacy shutter 0 150
3542 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3547 647 2254 S Front Camera 720p HD webcam 0 150
3563 647 4283 S Front Camera FHD 1080p IR hybrid webcam with privacy shutter (Supports Windows Hello facial recognition) 0 150
3566 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3568 647 4184 S Front Camera 1080p FHD webcam with privacy shutter 0 150
3571 647 4336 S Front Camera 5MP IR webcam with privacy shutter 0 150
3586 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3587 647 2287 S Front Camera 720p HD webcam with privacy shutter 0 150
3474 652 4052 S GPU NVIDIA GeForce RTX 3050, 6GB GDDR6 0 80
3513 652 4181 S GPU Intel Arc 140T integrated GPU (available thanks to dual‑channel memory and H‑series CPU; otherwise falls back to Intel Graphics) 0 80
3538 652 4207 S GPU Integrated Intel Graphics (shared system memory) 0 80
3540 652 4219 S GPU NVIDIA GeForce RTX 4060, 8GB GDDR6 0 80
3542 652 4232 S GPU Integrated Intel UHD Graphics (shared system memory) 0 80
3547 652 4226 S GPU Integrated Intel UHD Graphics (shared) 0 80
3563 652 4282 S GPU Integrated Intel® Arc™ Graphics (shared) 0 80
3566 652 4300 S GPU Integrated Intel UHD Graphics (shared GPU, no discrete card) 0 80
3568 652 4315 S GPU NVIDIA GeForce RTX 4070 Laptop GPU, 8 GB GDDR6, up to ~2175 MHz boost, TGP ~140 W; supports DLSS, ray tracing, AI workloads, VR Ready 0 80
3571 652 4330 S GPU Integrated Intel Iris Xe Graphics (shared) 0 80
3586 652 4288 S GPU Integrated Intel UHD Graphics (shared memory) 0 80
3587 652 4422 S GPU Integrated Intel Iris Xe Graphics (shared memory) 0 80
3474 640 4049 S Operating System Windows 11 Pro K 0 10
3513 640 4049 S Operating System Windows 11 Pro K 0 10
3538 640 4049 S Operating System Windows 11 Pro K 0 10
3540 640 4040 S Operating System Windows 10 Pro K 0 10
3542 640 4040 S Operating System Windows 10 Pro K 0 10
3547 640 4040 S Operating System Windows 10 Pro K 0 10
3563 640 4040 S Operating System Windows 10 Pro K 0 10
3566 640 4297 S Operating System Windows 10 Pro K (upgradeable to Windows 11 Pro) 0 10
3568 640 4040 S Operating System Windows 10 Pro K 0 10
3571 640 4040 S Operating System Windows 10 Pro K 0 10
3586 640 4040 S Operating System Windows 10 Pro K 0 10
3587 640 4040 S Operating System Windows 10 Pro K 0 10
3474 645 4056 S Ports 1× USB-A 3.2 Gen 1 (5Gbps), 1× USB-C 3.2 Gen 2 (10Gbps) with DisplayPort 1.4 and 140W Power Delivery, 1× Headphone / microphone combo jack (3.5mm), 1× E-shutter button, 2× USB-A 3.2 Gen 1 (5Gbps), 1× HDMI 2.1 (supports up to 8K/60Hz), 1× RJ-45 Ethern 0 110
3513 645 4183 S Ports 1 × USB‑C with Thunderbolt 4, Power Delivery and DisplayPort support, 1 × USB‑C Gen 2 (DP + PD), 2 × USB‑A 3.2 Gen 1 (or Gen 2 depending on region), 1 × HDMI output, 1 x SD card reader, 1 x 3,5mm audio combo jack 0 110
3538 645 4209 S Ports 1 × USB-A 3.2 Gen 1 (5 Gbps), 1 × USB-A 3.2 Gen 2 (10 Gbps, Always-On), 1 × USB-C 3.2 Gen 2×2 (20 Gbps, with PD & DisplayPort 1.4), 1 × Thunderbolt 4 / USB4 (40 Gbps, with PD & DisplayPort 2.1), 1 × HDMI 2.1 (up to 4K @ 60 Hz), 1 × 3.5 mm headphone/m 0 110
3540 645 4221 S Ports 1 × USB-C 3.2 Gen 2 (DisplayPort 1.4 & Power Delivery), 2 × USB-A 3.2 Gen 1, 1 × USB-A 3.2 Gen 2, 1 × HDMI 2.1 (supports 8K @ 60Hz), 1 × RJ-45 Ethernet (2.5 Gbps), 1 × 3.5 mm combo audio jack 0 110
3542 645 4234 S Ports 2 × USB‑A 3.2 Gen 1, 1 × USB‑C 3.2 Gen 1 (data, Power Delivery, DisplayPort 1.2), 1 × HDMI 1.4, 1 × headphone/mic combo jack (3.5 mm), 1 × SD card reader, 1 × power input 0 110
3547 645 4258 S Ports 2 × USB-C 3.2 Gen 2 (one supports Power Delivery and DisplayPort), 2 × USB-A 3.2 Gen 1, 1 × HDMI 2.0, 1 × RJ-45 Ethernet, 1 × 3.5mm Headphone/mic combo, 1 × SD Card Reader 0 110
3563 645 4285 S Ports 2 × USB-C 3.2 Gen 2 (DisplayPort 1.4 & Power Delivery), 1 × USB-A 3.2 Gen 1, 1 × USB-A 3.2 Gen 1 (always-on), 1 × HDMI 1.4b, 1 × 3.5mm headphone/mic combo jack, 1 × microSD card reader 0 110
3566 645 4302 S Ports 1 × USB‑C 3.2 Gen 1 (supports DisplayPort 1.2 & Power Delivery), 2 × USB‑A 3.2 Gen 1, 1 × HDMI 1.4 (up to 4K @ 30 Hz), 1 × 3.5 mm combo headphone/mic jack, 1 × SD card reader, 1 × Power connector 0 110
3568 645 4317 S Ports 1 × USB‑C (USB 3.2 Gen 2, 10 Gbps) with PD 140 W & DisplayPort 1.4, 1 × second USB‑C (USB 3.2 Gen 2, 10 Gbps) with DisplayPort 1.4, 4 × USB‑A (USB 3.2 Gen 1, 5 Gbps; including Always‑On port), 1 × HDMI 2.1 (up to 8K @ 60 Hz), 1 × 3.5 mm combo audio ja 0 110
3571 645 4331 S Ports 2 × USB-C 3.2 Gen 2 (with DisplayPort 1.4 & Power Delivery), 2 × USB-A 3.2 Gen 1, 1 × HDMI 1.4b, 1 × 3.5 mm combo audio jack, 1 × microSD card reader 0 110
3586 645 4417 S Ports 1 × USB 3.2 Gen 1 Type-C (data only), 1 × USB 3.2 Gen 1 Type-A, 1 × USB 2.0 Type-A, 1 × HDMI 1.4b, 1 × 3.5 mm combo audio jack, 1 × RJ‑45 Ethernet port, 1 × SD card reader 0 110
3587 645 4423 S Ports 2 × USB 3.2 Gen 1 (Type-A), 1 × USB-C 3.2 Gen 1, 1 × HDMI 1.4b, 1 × RJ-45 Ethernet, 1 × 3.5 mm combo audio jack, 1 x MicroSD card reader 0 110
3586 651 4414 S Processor Intel Celeron N4500 (up to 2.8GHz, dual-core) 0 60
3474 651 2251 S Processor Intel® Core™ i5 0 60
3542 651 2251 S Processor Intel® Core™ i5 0 60
3540 651 2854 S Processor Intel® Core™ i7 0 60
3566 651 2854 S Processor Intel® Core™ i7 0 60
3568 651 2854 S Processor Intel® Core™ i7 0 60
3571 651 2854 S Processor Intel® Core™ i7 0 60
3587 651 2854 S Processor Intel® Core™ i7 0 60
3538 651 5911 S Processor Intel® Core™ Ultra 5 0 60
3547 651 5911 S Processor Intel® Core™ Ultra 5 0 60
3513 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3563 651 2276 S Processor Intel® Core™ Ultra 7 0 60
3474 643 1684 S Ram 4GB 0 70
3586 643 1684 S Ram 4GB 0 70
3538 643 1526 S Ram 8GB 0 70
3542 643 1526 S Ram 8GB 0 70
3547 643 1526 S Ram 8GB 0 70
3587 643 1526 S Ram 8GB 0 70
3513 643 1592 S Ram 16GB 0 70
3540 643 1592 S Ram 16GB 0 70
3563 643 1592 S Ram 16GB 0 70
3566 643 1592 S Ram 16GB 0 70
3571 643 1592 S Ram 16GB 0 70
3568 643 2117 S Ram 32GB 0 70
3474 650 1541 S Refresh Rate 144Hz 0 40
3513 650 1539 S Refresh Rate 60Hz 0 40
3538 650 1539 S Refresh Rate 60Hz 0 40
3540 650 1541 S Refresh Rate 144Hz 0 40
3542 650 1539 S Refresh Rate 60Hz 0 40
3547 650 1539 S Refresh Rate 60Hz 0 40
3563 650 1539 S Refresh Rate 60Hz 0 40
3566 650 1539 S Refresh Rate 60Hz 0 40
3568 650 1544 S Refresh Rate 240Hz 0 40
3571 650 1539 S Refresh Rate 60Hz 0 40
3586 650 1539 S Refresh Rate 60Hz 0 40
3587 650 1539 S Refresh Rate 60Hz 0 40
3474 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3513 642 2275 S Resolution 1920 x 1200 0 50
3538 642 2275 S Resolution 1920 x 1200 0 50
3540 642 4211 S Resolution 1920 x 1080 0 50
3542 642 4698 S Resolution (1920x1080) IPS 300nits Anti-glare 0 50
3547 642 2275 S Resolution 1920 x 1200 0 50
3563 642 2275 S Resolution 1920 x 1200 0 50
3566 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3568 642 2987 S Resolution 2560 x 1600 0 50
3571 642 2275 S Resolution 1920 x 1200 0 50
3586 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3587 642 1588 S Resolution 1920 x 1080 (full HD) 0 50
3586 648 1562 S Storage 256GB 0 170
3474 648 1563 S Storage 512GB 0 170
3513 648 1563 S Storage 512GB 0 170
3538 648 1563 S Storage 512GB 0 170
3540 648 1563 S Storage 512GB 0 170
3542 648 1563 S Storage 512GB 0 170
3547 648 1563 S Storage 512GB 0 170
3563 648 1563 S Storage 512GB 0 170
3566 648 1563 S Storage 512GB 0 170
3571 648 1563 S Storage 512GB 0 170
3587 648 1563 S Storage 512GB 0 170
3568 648 1564 S Storage 1TB 0 170