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 (
    70118, 70119, 70122, 70123, 70124, 70125, 
    70126, 70127, 72974, 72975, 82560, 
    82562, 82559, 82561
  )

Query time 0.00660

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": 14,
          "filtered": 100,
          "index_condition": "pfv.variant_id in (70118,70119,70122,70123,70124,70125,70126,70127,72974,72975,82560,82562,82559,82561)"
        }
      },
      {
        "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
70118 0 Deep color
70119 0 Light color
70122 0 Deep color
70123 0 Light color
70124 0 Deep color
70125 0 Light color
70126 0 Deep color
70127 0 Light color
72974 0 3 flowers
72975 0 1 flower
82559 1 Deep color
82560 2 Light color
82561 1 Yellow daisies
82562 2 Blue flowers