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 (
    1200, 1213, 1193, 1194, 1195, 1197, 1196, 
    1209, 1210, 1211, 1212, 1201
  )

Query time 0.00041

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "43.21"
    },
    "nested_loop": [
      {
        "table": {
          "table_name": "pfv",
          "access_type": "range",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id"
          ],
          "key_length": "3",
          "rows_examined_per_scan": 12,
          "rows_produced_per_join": 12,
          "filtered": "100.00",
          "index_condition": "(`atulecarter_atul_demo2`.`pfv`.`variant_id` in (1200,1213,1193,1194,1195,1197,1196,1209,1210,1211,1212,1201))",
          "cost_info": {
            "read_cost": "26.41",
            "eval_cost": "2.40",
            "prefix_cost": "28.81",
            "data_read_per_join": "13K"
          },
          "used_columns": [
            "variant_id",
            "position"
          ]
        }
      },
      {
        "table": {
          "table_name": "pfvd",
          "access_type": "eq_ref",
          "possible_keys": [
            "PRIMARY"
          ],
          "key": "PRIMARY",
          "used_key_parts": [
            "variant_id",
            "lang_code"
          ],
          "key_length": "9",
          "ref": [
            "atulecarter_atul_demo2.pfv.variant_id",
            "const"
          ],
          "rows_examined_per_scan": 1,
          "rows_produced_per_join": 12,
          "filtered": "100.00",
          "cost_info": {
            "read_cost": "12.00",
            "eval_cost": "2.40",
            "prefix_cost": "43.21",
            "data_read_per_join": "36K"
          },
          "used_columns": [
            "variant_id",
            "variant",
            "lang_code"
          ]
        }
      }
    ]
  }
}

Result

variant_id position variant
1193 1 Small
1194 2 Large
1195 3 Medium
1196 6 XX Large
1197 5 X Large
1200 3 Black
1201 4 White
1209 1 Brand 1
1210 2 Brand 2
1211 3 Brand 3
1212 4 Brand 4
1213 0 Brand 5