SELECT 
  product_id, 
  feature_id, 
  variant_id 
FROM 
  cscart_product_features_values 
WHERE 
  product_id IN (
    1408, 35970, 35969, 35971, 35972, 35973
  ) 
  AND feature_id IN (23648, 23649) 
  AND lang_code = 'vi'

Query time 0.00975

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "cscart_product_features_values",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY",
            "fl",
            "lang_code",
            "product_id",
            "fpl",
            "idx_product_feature_variant_id"
          ],
          "key": "idx_product_feature_variant_id",
          "key_length": "12",
          "used_key_parts": ["product_id", "feature_id", "lang_code"],
          "rows": 12,
          "filtered": 100,
          "attached_condition": "cscart_product_features_values.product_id in (1408,35970,35969,35971,35972,35973) and cscart_product_features_values.feature_id in (23648,23649) and cscart_product_features_values.lang_code = 'vi'",
          "using_index": true
        }
      }
    ]
  }
}

Result

product_id feature_id variant_id
1408 23648 81996
1408 23649 81998
35969 23648 81996
35969 23649 81999
35970 23648 81996
35970 23649 82000
35971 23648 81997
35971 23649 81998
35972 23648 81997
35972 23649 81999
35973 23648 81997
35973 23649 82000