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 (
    2603, 3136, 2587, 2761, 2694, 3096, 2723, 
    2742, 3556, 2593, 3104, 2618, 2828, 
    2613, 2619, 2872, 2704, 3593, 4888, 
    3423, 5168, 2739, 3291, 2841, 5155, 
    3876, 2561, 3812, 5124, 2865, 2734, 
    3369, 3139, 5157, 2700, 5121, 5929, 
    2701, 2797, 5938, 4886, 4885, 5933
  ) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(166, f.categories_path) 
    OR FIND_IN_SET(329, f.categories_path) 
    OR FIND_IN_SET(457, 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.01128

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "406.64"
    },
    "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": 652,
            "rows_produced_per_join": 212,
            "filtered": "32.52",
            "index_condition": "(((`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (2603,3136,2587,2761,2694,3096,2723,2742,3556,2593,3104,2618,2828,2613,2619,2872,2704,3593,4888,3423,5168,2739,3291,2841,5155,3876,2561,3812,5124,2865,2734,3369,3139,5157,2700,5121,5929,2701,2797,5938,4886,4885,5933)) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'en')) and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))",
            "cost_info": {
              "read_cost": "282.96",
              "eval_cost": "21.20",
              "prefix_cost": "304.16",
              "data_read_per_join": "163K"
            },
            "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": 20,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "53.00",
              "eval_cost": "2.02",
              "prefix_cost": "378.36",
              "data_read_per_join": "8K"
            },
            "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(329,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(457,`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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.05",
              "eval_cost": "2.02",
              "prefix_cost": "385.43",
              "data_read_per_join": "45K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.05",
              "eval_cost": "2.02",
              "prefix_cost": "392.50",
              "data_read_per_join": "23K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.05",
              "eval_cost": "2.02",
              "prefix_cost": "399.57",
              "data_read_per_join": "61K"
            },
            "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": 20,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "5.05",
              "eval_cost": "2.02",
              "prefix_cost": "406.64",
              "data_read_per_join": "8K"
            },
            "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
2561 653 2977 S Battery Up to 24 hours; a quick 5 minute USB-C provides 2 hours of playback 0 100
2613 653 4450 S Battery Wired (no battery) 0 100
2618 653 3014 S Battery 120mAh, Up to 16 hours of continuous use on a full charge, Approximately 2 hours for a full charge, 10–15 minute charge gives you around 60 minutes of playback 0 100
2619 653 3023 S Battery Up to 40 hours of listening time with ANC on (up to 60 hours without ANC) 0 100
2694 653 3056 S Battery 450mAh battery, providing up to 57 hours of playtime. 0 100
2700 653 3058 S Battery 120mAh. Up to 6 hours of continuous playback on a full charge. 0 100
2701 653 4463 S Battery 85mAh 0 100
2704 653 3063 S Battery 400mAh battery providing up to 30 hours of playtime. 0 100
2723 653 3078 S Battery 500mAh, lasts up to 76 hours 0 100
2734 653 3090 S Battery 22 hours of play on full charge, a quick 10 minute charge provides 3 hours of play 0 100
2739 653 3102 S Battery 500 mAh, charges fully in under 2 hours for up to 50 hours playback 0 100
2742 653 3104 S Battery 690 mAh, with a playback time of 70 hours. 0 100
2761 653 3123 S Battery 800mAh , offering up to 27 hours of playback on a full charge. 0 100
2797 653 3156 S Battery 920mAh, up to 50h playback. 0 100
2828 653 3240 S Battery 40 hours of playback with ANC on, upto 60 hours without ANC; a 5 minute USB-C charge provides 4 hours of playback 0 100
2841 653 3264 S Battery Up to 50 hours of active listening with ANC (up to 65 hours with ANC off), fast 5 minute charge provides 4 hours playback 0 100
2865 653 3290 S Battery 750 mAh, up to 50 hours of playtime (40 hours with ANC on) 0 100
2872 653 3304 S Battery 610 mAh, up to 50 hours of playback 0 100
3096 653 3496 S Battery 70 hours of playback on a single charge, 5 minutes of quick charge provides 4 hours of playback 0 100
3104 653 3508 S Battery 40 hours of listening with ANC, 55 hours without ANC, 5 minutes of fast charge provides 4 hours of playback 0 100
3136 653 3550 S Battery 600mAh, 40 hours of playback with ANC, 60 hours of playback without ANC 0 100
3139 653 3555 S Battery 680mAh Li-po battery, 60 hours of playback with full charge 0 100
3369 653 3856 S Battery 700mAh. 0 100
3423 653 4456 S Battery 120mAh battery, up to 16 hours playback, about 2 hours full charge, 10 minute charge for 1 hour use. 0 100
3556 653 4531 S Battery 700mAh 0 100
3593 653 4431 S Battery ~1000 mAh 0 100
4885 653 6200 S Battery Playtime with ANC: Up to 30 hours of wireless playback with Active Noise Cancellation on, Playtime without ANC: Up to 45 hours with Active Noise Cancellation turned off, Quick charge: 15 minutes of charging provides up to 5 hours of playtime, Full charge 0 100
4888 653 6208 S Battery Playtime: 100+ hours Quick charge: 15 minutes of charging gives 15 hours of playtime Full charge time: Approximately 3 hours 0 100
5155 713 7107 S Battery Life Up to 30 hours 0 0
5157 713 7107 S Battery Life Up to 30 hours 0 0
5168 713 0.00 7106 S Battery Life Up to 29 hours 0 0
2561 657 2082 E Brand Anker 0 0
2587 657 3006 E Brand JBL 0 0
2593 657 3006 E Brand JBL 0 0
2603 657 3006 E Brand JBL 0 0
2613 657 3006 E Brand JBL 0 0
2618 657 3006 E Brand JBL 0 0
2619 657 2082 E Brand Anker 0 0
2694 657 3006 E Brand JBL 0 0
2700 657 3006 E Brand JBL 0 0
2701 657 3006 E Brand JBL 0 0
2704 657 3006 E Brand JBL 0 0
2723 657 3006 E Brand JBL 0 0
2734 657 2082 E Brand Anker 0 0
2739 657 3006 E Brand JBL 0 0
2742 657 3006 E Brand JBL 0 0
2761 657 3006 E Brand JBL 0 0
2797 657 3006 E Brand JBL 0 0
2828 657 2082 E Brand Anker 0 0
2841 657 2082 E Brand Anker 0 0
2865 657 3006 E Brand JBL 0 0
2872 657 3006 E Brand JBL 0 0
3096 657 2082 E Brand Anker 0 0
3104 657 2082 E Brand Anker 0 0
3136 657 2082 E Brand Anker 0 0
3139 657 2082 E Brand Anker 0 0
3291 657 3933 E Brand Belkin 0 0
3369 657 3933 E Brand Belkin 0 0
3423 657 3006 E Brand JBL 0 0
3556 657 3933 E Brand Belkin 0 0
3593 657 3933 E Brand Belkin 0 0
3812 657 3933 E Brand Belkin 0 0
3876 657 3933 E Brand Belkin 0 0
4885 657 6198 E Brand Marshall 0 0
4886 657 6198 E Brand Marshall 0 0
4888 657 6198 E Brand Marshall 0 0
5121 657 6600 E Brand Philips 0 0
5124 657 6600 E Brand Philips 0 0
5155 657 6600 E Brand Philips 0 0
5157 657 6600 E Brand Philips 0 0
5168 657 6600 E Brand Philips 0 0
5929 657 1665 E Brand Apple 0 0
5933 657 1665 E Brand Apple 0 0
5938 657 1665 E Brand Apple 0 0
2561 654 2978 S Charging Type USB-C (5W-0.5A) 0 120
2613 654 4451 S Charging Type Wired, does not require charging. 0 120
2618 654 3636 S Charging Type USB-C fast charging. 0 120
2619 654 3024 S Charging Type USB-C fast charging, 5 minutes of charge provides 8 hours of playback 0 120
2694 654 3057 S Charging Type USB-C, supports quick charging. 5 minutes of charge gives about 3 hours of playback. 0 120
2700 654 3059 S Charging Type Micro USB 0 120
2701 654 3062 S Charging Type Micro USB cable ,approximately 2 hours for full charge 0 120
2704 654 3064 S Charging Type USB-C fast charging (5 min charge = 2 hrs playback, full charge in 2 hrs) 0 120
2723 654 3079 S Charging Type USB-C. A full charge takes approximately 2 hours, and a quick 5-minute charge provides an additional 3 hours of playback. 0 120
2739 654 1771 S Charging Type USB-C 0 120
2742 654 3105 S Charging Type USB-C in about 2 hours, with a 5-minute quick charge providing up to 3 hours of playback. 0 120
2761 654 3124 S Charging Type USB-C, taking about 2 hours for a full charge that provides up to 27 hours of playback. 0 120
2797 654 3157 S Charging Type USB-C, full charge in about 2 hours, 10 minute quick charge gives 5 hours playback. 0 120
2828 654 3241 S Charging Type USB-C (fast charging supported) 0 120
2841 654 3265 S Charging Type USB-C charging; fully charges in approximately 2 hours, supports fast charge 0 120
2865 654 3291 S Charging Type USB-C, quick charge, 10 minutes gives about 4 hours of playback 0 120
2872 654 3305 S Charging Type USB-C fast charging , 5 min charge has a 3 hour playback 0 120
3096 654 3497 S Charging Type Charges via USB-C, fully charges in 2 hours, supports fast charging from any USB-C source 0 120
3104 654 1771 S Charging Type USB-C 0 120
3136 654 3551 S Charging Type Charges via USB-C, fully charges in 2 hours, a 5 minute fast charge provides 4 hours of playback 0 120
3139 654 3556 S Charging Type USB-C fast charging, fully charges in 0 120
3369 654 3857 S Charging Type USB-C fast charging. Playback of 60 hours on a full charge. 0 120
3423 654 3636 S Charging Type USB-C fast charging. 0 120
3556 654 3857 S Charging Type USB-C fast charging. Playback of 60 hours on a full charge. 0 120
3593 654 4429 S Charging Type USB‑C fast charging, 10 minute charge yields 4–6 hours playtime 0 120
4886 654 3512 S Charging Type Charges via USB-C 0 120
4888 654 3512 S Charging Type Charges via USB-C 0 120
5155 654 5083 S Charging Type USB-C charging 0 120
5157 654 5083 S Charging Type USB-C charging 0 120
5168 654 5083 S Charging Type USB-C charging 0 120
2561 656 1560 S Color Black 0 160
2587 656 1560 S Color Black 0 160
2593 656 2315 S Color Red 0 160
2603 656 1600 S Color Blue 0 160
2613 656 1600 S Color Blue 0 160
2618 656 1560 S Color Black 0 160
2619 656 1560 S Color Black 0 160
2694 656 1560 S Color Black 0 160
2700 656 1560 S Color Black 0 160
2701 656 1559 S Color white 0 160
2704 656 2315 S Color Red 0 160
2723 656 1560 S Color Black 0 160
2734 656 1560 S Color Black 0 160
2739 656 1600 S Color Blue 0 160
2742 656 1560 S Color Black 0 160
2797 656 1560 S Color Black 0 160
2828 656 1560 S Color Black 0 160
2841 656 1559 S Color white 0 160
2865 656 1560 S Color Black 0 160
2872 656 1560 S Color Black 0 160
3096 656 1560 S Color Black 0 160
3104 656 1560 S Color Black 0 160
3136 656 1560 S Color Black 0 160
3139 656 1560 S Color Black 0 160
3291 656 1748 S Color Awesome Pink 0 160
3369 656 1783 S Color Dark blue 0 160
3423 656 1559 S Color white 0 160
3556 656 1560 S Color Black 0 160
3593 656 1560 S Color Black 0 160
3812 656 1560 S Color Black 0 160
3876 656 1559 S Color white 0 160
4885 656 1560 S Color Black 0 160
4886 656 1560 S Color Black 0 160
4888 656 1790 S Color Creamy 0 160
5121 656 1560 S Color Black 0 160
5124 656 1560 S Color Black 0 160
5155 656 1560 S Color Black 0 160
5157 656 1560 S Color Black 0 160
5168 656 1560 S Color Black 0 160
5929 656 1559 S Color white 0 160
5933 656 1559 S Color white 0 160
5938 656 1559 S Color white 0 160
2761 656 1558 S Color Pink 0 160
2561 659 2979 S Connectivity Bluetooth 5.0 with a range of 10 meters 0 152
2593 659 4579 S Connectivity USB-C wired connection. 0 152
2603 659 4578 S Connectivity Wired USB-C connection. 0 152
2613 659 4452 S Connectivity Wired with 3.5mm audio jack 0 152
2618 659 3015 S Connectivity Bluetooth 0 152
2619 659 3025 S Connectivity Bluetooth 5.3, can connect two devices at the same time 0 152
2694 659 1702 S Connectivity Bluetooth 5.3 0 152
2700 659 3060 S Connectivity Bluetooth 4.1 0 152
2701 659 3015 S Connectivity Bluetooth 0 152
2704 659 3069 S Connectivity Bluetooth 5.0 with a range of up to 15 meters 0 152
2723 659 3080 S Connectivity Bluetooth 5.3 and 3.5mm audio jack (wired). 0 152
2734 659 3091 S Connectivity Bluetoot 5.0 ( sometimes listed as 5.2) 0 152
2739 659 3103 S Connectivity Bluetooth 5.3, plus a 3.5 mm wired option 0 152
2742 659 3106 S Connectivity Bluetooth 5.3, also includes a 3.5 mm wired audio option. 0 152
2761 659 3125 S Connectivity Bluetooth 5.0, up to 10 meters wireless range. 0 152
2797 659 1702 S Connectivity Bluetooth 5.3 0 152
2828 659 3242 S Connectivity Bluetooth 5.0, multipoint connection (2 devices) 0 152
2841 659 3266 S Connectivity Bluetooth 5.3 with multipoint pairing, supports SBC, AAC, and LDAC, a range of up to 15 meters 0 152
2865 659 3292 S Connectivity Bluetooth 5.0, multipoint connection 0 152
2872 659 3306 S Connectivity Bluetooth 5.0, 3.5mm Audio Jack 0 152
3096 659 3499 S Connectivity Bluetooth 5.3 with multipoint pairing, a range of 10 meters, supports SBC and AAC codecs 0 152
3104 659 3510 S Connectivity Bluetooth 5.3, can connect two devices at the same time, 3.5mm AUX 0 152
3136 659 3552 S Connectivity Bluetooth 5.0, 3.5mm AUX, multipoint pairing 0 152
3139 659 3557 S Connectivity Bluetooth 5.0, 3.5mm AUX input, multipoint pairing 0 152
3291 659 3741 S Connectivity USB-C wired 0 152
3369 659 3858 S Connectivity Bluetooth 5.4 with multipoint pairing for two devices. 0 152
3423 659 1703 S Connectivity Bluetooth 5.0 0 152
3556 659 4532 S Connectivity Bluetooth 5.4 with multipoint pairing for two devices 0 152
3593 659 4430 S Connectivity Bluetooth 5.4 wireless, multipoint connection to two devices simultaneously. Also includes 3.5 mm cable option 0 152
3812 659 4197 S Connectivity USB-C to USB-C. 0 152
3876 659 4826 S Connectivity Lightning connector for Apple devices. 0 152
4886 659 0.00 6201 S Connectivity Wireless: Bluetooth 5.3 Wired: USB-C to 3.5mm audio input (cable included) Multipoint: Yes Codecs: Supports SBC, AAC, and LC3 0 152
4888 659 0.00 6209 S Connectivity Wireless: Bluetooth 5.3, Wired: 3.5mm audio input/output (cable included), Multipoint: Can be connected to two Bluetooth devices at the same time 0 152
5121 659 4578 S Connectivity Wired USB-C connection. 0 152
5124 659 4578 S Connectivity Wired USB-C connection. 0 152
5155 659 7098 S Connectivity Wireless (Bluetooth) 0 152
5157 659 7098 S Connectivity Wireless (Bluetooth) 0 152
5168 659 7098 S Connectivity Wireless (Bluetooth) 0 152
2561 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2587 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2593 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2603 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2613 671 2113 S Headphone Ear Cup Types On-Ear 0 0
2618 671 2113 S Headphone Ear Cup Types On-Ear 0 0
2619 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2694 671 2113 S Headphone Ear Cup Types On-Ear 0 0
2700 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2701 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2704 671 2113 S Headphone Ear Cup Types On-Ear 0 0
2723 671 2113 S Headphone Ear Cup Types On-Ear 0 0
2734 671 2112 S Headphone Ear Cup Types In-Ear 0 0
2739 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2742 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2761 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2797 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2828 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2841 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2865 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
2872 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3096 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3104 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3136 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3139 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3291 671 2112 S Headphone Ear Cup Types In-Ear 0 0
3369 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3423 671 2112 S Headphone Ear Cup Types In-Ear 0 0
3556 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3593 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
3812 671 2112 S Headphone Ear Cup Types In-Ear 0 0
3876 671 2112 S Headphone Ear Cup Types In-Ear 0 0
4885 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
4886 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
4888 671 2113 S Headphone Ear Cup Types On-Ear 0 0
5121 671 2112 S Headphone Ear Cup Types In-Ear 0 0
5124 671 2112 S Headphone Ear Cup Types In-Ear 0 0
5155 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
5157 671 2111 S Headphone Ear Cup Types Over-Ear 0 0
5168 671 2113 S Headphone Ear Cup Types On-Ear 0 0
3136 683 3553 S Input USB-C (charging) 0 310
3139 683 3534 S Input USB-C (charging), 3.5mm AUX input (audio in) 0 310
3136 684 3554 S Output Audio output via Bluetooth or 3.5 mm AUX 0 320
2561 651 2976 S Processor Bluetooth 5.0 chipset (no proprietary chip) 0 60
2619 651 3022 S Processor Adaptive ANC processor 0 60
2734 651 3089 S Processor Standard Bluetooth 5.0/5.2 chipset 0 60
2828 651 3239 S Processor Bluetooth 5.0 chipset (SBC/AAC), includes hybrid ANC controller 0 60
2841 651 3263 S Processor Bluetooth 5.3 chipset with LDAC support and adaptive ANC 0 60
3096 646 3498 S Sensor Physical on ear buttons for power, playback, volume, and a BassUp toggle 0 130
3104 646 3509 S Sensor Wear detection, touch/button controls 0 130