SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (224, 225, 226, 240, 241) 
  AND feature_id IN (37) 
  AND lang_code = 'en'

Query time 0.00046

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.002966085,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_features_values",
          "access_type": "ref",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "lang_code",
          "key_length": "9",
          "used_key_parts": ["lang_code", "feature_id"],
          "ref": ["const", "const"],
          "loops": 1,
          "rows": 9,
          "cost": 0.002966085,
          "filtered": 55.55555725,
          "attached_condition": "cscart_product_features_values.product_id in (224,225,226,240,241) and cscart_product_features_values.lang_code = 'en'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
224 37 5699
225 37 5700
226 37 5701
240 37 5707
241 37 5708