SELECT 
  pfv.variant_id, 
  pfv.position, 
  pfvd.variant 
FROM 
  cscart_product_feature_variants AS pfv 
  INNER JOIN cscart_product_feature_variant_descriptions AS pfvd ON pfv.variant_id = pfvd.variant_id 
  AND pfvd.lang_code = 'en' 
WHERE 
  pfv.variant_id IN (
    71553, 71552, 71557, 71556, 74981, 74980, 
    74979, 74978, 74982, 74992, 74991, 
    74990, 74989, 74988, 74993
  )

Query time 0.00409

JSON explain

{
  "query_block": {
    "select_id": 1,
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "3",
          "used_key_parts": ["variant_id"],
          "rows": 15,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (71553,71552,71557,71556,74981,74980,74979,74978,74982,74992,74991,74990,74989,74988,74993)"
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["variant_id", "lang_code"],
          "ref": ["dev_db.pfv.variant_id", "const"],
          "rows": 1,
          "filtered": 100,
          "index_condition": "pfvd.lang_code = 'en'"
        }
      }
    ]
  }
}

Result

variant_id position variant
71552 0 Size 37
71553 0 Size 38
71556 0 Size 37
71557 0 Size 38
74978 0 Lemon yellow mix green
74979 0 Light brown mix mallard green
74980 0 Brown mix purple
74981 0 Mallard green mix red
74982 0 Orange mix mallard green
74988 0 Monkey
74989 0 Dented
74990 0 Baby giraffe
74991 0 Rabbit
74992 0 Elephant
74993 0 Goat