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 = 'ar' 
  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 = 'ar' 
  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 (6276, 6260, 6274) 
  AND f.display_on_catalog = 'Y' 
  AND (
    f.categories_path = '' 
    OR FIND_IN_SET(521, f.categories_path) 
    OR FIND_IN_SET(522, f.categories_path) 
    OR FIND_IN_SET(535, 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 = 'ar' 
ORDER BY 
  fd.description, 
  fv.position

Query time 0.00237

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "65.73"
    },
    "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": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "rows_examined_per_scan": 107,
            "rows_produced_per_join": 34,
            "filtered": "32.51",
            "index_condition": "(`softwarepirmam_hewadelivard_cscart_4`.`v`.`product_id` in (6276,6260,6274))",
            "cost_info": {
              "read_cost": "45.43",
              "eval_cost": "3.48",
              "prefix_cost": "48.91",
              "data_read_per_join": "26K"
            },
            "used_columns": [
              "feature_id",
              "product_id",
              "variant_id",
              "value",
              "value_int",
              "lang_code"
            ],
            "attached_condition": "((`softwarepirmam_hewadelivard_cscart_4`.`v`.`lang_code` = 'ar') and (`softwarepirmam_hewadelivard_cscart_4`.`v`.`feature_id` is not null))"
          }
        },
        {
          "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": 3,
            "filtered": "9.53",
            "cost_info": {
              "read_cost": "8.70",
              "eval_cost": "0.33",
              "prefix_cost": "61.09",
              "data_read_per_join": "1K"
            },
            "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(521,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(522,`softwarepirmam_hewadelivard_cscart_4`.`f`.`categories_path`)) or (0 <> find_in_set(535,`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": 3,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.83",
              "eval_cost": "0.33",
              "prefix_cost": "62.25",
              "data_read_per_join": "7K"
            },
            "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": 3,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.83",
              "eval_cost": "0.33",
              "prefix_cost": "63.41",
              "data_read_per_join": "3K"
            },
            "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": 3,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.83",
              "eval_cost": "0.33",
              "prefix_cost": "64.57",
              "data_read_per_join": "10K"
            },
            "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": 3,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.83",
              "eval_cost": "0.33",
              "prefix_cost": "65.73",
              "data_read_per_join": "1K"
            },
            "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
6260 745 8021 S Camera Connectivity Wi-Fi IEEE 802.11 b/g/n (2.4 GHz) with WPA/WPA2 encryption; supports AP pairing via EZVIZ App. 0 0
6274 745 7807 S Camera Connectivity Wi-Fi (2.4 GHz) 0 0
6276 745 8059 S Camera Connectivity Power over Ethernet (PoE) for power and data via one cable 0 0
6260 744 8022 S Camera Type Indoor PTZ (Pan & Tilt) camera – compact dome-style design ideal for full-room smart home surveillance. 0 0
6274 744 8041 S Camera Type Fixed outdoor bullet camera 0 0
6276 744 8060 S Camera Type Bullet security camera / outdoor camera 0 0
6260 735 8023 S Field of View (FOV) 85° diagonal / 75° horizontal / 45° vertical. 0 0
6274 735 8042 S Field of View (FOV) Up to 104° diagonal (varies by lens) 0 0
6276 735 8061 S Field of View (FOV) 111° diagonal coverage. 0 0
6274 736 8043 S Focal Length 2.8 mm or 4 mm lens options 0 0
6276 736 8062 S Focal Length 2.8 mm fixed lens 0 0
6260 736 8024 S Focal Length 4 mm @ F2.4 fixed lens. 0 0
6276 737 8063 S Night Mode Infrared night vision up to 30 meters. 0 0
6274 737 8044 S Night Mode Color night vision with IR LEDs and spotlights 0 0
6260 737 8025 S Night Mode Infrared night vision up to 10 m (33 ft); automatically switches between day and night modes 0 0
6276 738 8055 S Operating Conditions –30°C to 60°C, humidity ≤ 95% (non-condensing) 0 0
6274 738 8045 S Operating Conditions −30 °C – 60 °C, up to 95% humidity, IP67 weatherproof 0 0
6260 738 8026 S Operating Conditions –10 °C to +45 °C (14 °F to 113 °F); humidity ≤ 95 % (non-condensing). 0 0
6274 645 0.00 8047 S Ports Power (DC 12 V) and microSD slot 0 110
6276 645 0.00 8064 S Ports RJ45 Ethernet port with PoE support. 0 110
6260 645 0.00 8028 S Ports MicroSD card slot (up to 512 GB) 0 110
6274 642 8046 S Resolution 3K (2880 × 1620 pixels) 0 50
6260 642 8027 S Resolution 2K+ (2304 × 1296 pixels) for sharp, detailed video quality 0 50
6276 642 8056 S Resolution 2K (2560 × 1440) high-definition video 0 50
6274 646 1.00 8048 S Sensor 1/2.7″ Progressive Scan CMOS — tracks humans and vehicles via AI detection 0 130
6276 646 8058 S Sensor 1/2.7" Progressive Scan CMOS sensor with AI that tracks humans and vehicles 0 130
6260 646 1.00 8029 S Sensor 1/2.7" Progressive Scan CMOS sensor with AI-based human motion detection and auto-track 0 130
6276 648 0.00 8065 S التخزين Supports microSD card up to 512 GB and EZVIZ CloudPlay. 0 170
6274 648 0.00 8049 S التخزين microSD (up to 512 GB) and optional cloud storage 0 170
6260 648 0.00 8030 S التخزين Supports local MicroSD card (up to 512 GB) and optional EZVIZ CloudPlay cloud storage 0 170
6260 656 1559 S لون White 0 160
6276 656 1559 S لون White 0 160
6274 656 1559 S لون White 0 160
6274 657 6402 E ماركة Ezviz 0 0
6276 657 6402 E ماركة Ezviz 0 0
6260 657 6402 E ماركة Ezviz 0 0